Community @ The Turning Gate

Support community for TTG plugins and products.

NOTICE

The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.

This forum is now closed, and exists here as a read-only archive.

  • New user registrations are disabled.
  • Users cannot create new topics.
  • Users cannot reply to existing topics.

You are not logged in.

#1 2015-03-10 21:58:45

jehnichen
Member
From: Leipzig/Germany
Registered: 2013-03-21
Posts: 15
Website

fullflip gallery - getting rid of the boxes and borders?

is there a way to get rid or customize the weird borders and boxes around the Enter or Caption Field?
is there a way to get rid of the flipping thumbnail in the upper right corner?

thank you
martin

Offline

#2 2015-03-10 22:51:31

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: fullflip gallery - getting rid of the boxes and borders?

you'd need to use custom css

Use a tool like Firebug or your browser's inspector to identify the selectors you need to change.
If you need help with the css, just post back.


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

#3 2015-03-11 08:03:59

jehnichen
Member
From: Leipzig/Germany
Registered: 2013-03-21
Posts: 15
Website

Re: fullflip gallery - getting rid of the boxes and borders?

thank you Rod for the hints - it helped a little bit, like changing the border style of the flipping thumbnail or the "Link" button but I am not so much into css and php to get rid of the whole flipping thing on my own. I will ask someone experienced with that locally. I didnt even manage to verify that my custom.css is working properly.. no red background at all.
May be you still want to have a look: http://www.jehnichen.eu/mj150310test/galleries.php
and give me a simple way to eliminate the flipping thing completely...
thank you very much
martin

Offline

#4 2015-03-11 08:25:55

kmlucy
Member
From: Atlanta, GA
Registered: 2013-01-30
Posts: 123
Website

Re: fullflip gallery - getting rid of the boxes and borders?

For hiding the thumbnails, you can use

#ttg_thumbs {
display: none;
}

For the border on the enter link, use

.ttg_link {
border: 4px solid #FFFFFF;
}

And just change the size and color to what you need.


Kyle Lucy Photography
kylelucy.com

Offline

#5 2015-03-11 08:31:51

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: fullflip gallery - getting rid of the boxes and borders?

you could also give the borders a radius if you like a less abrupt look

.ttg_link {
    border: 4px solid #FFFFFF;
    border-radius: 20px;
}

Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

#6 2015-03-11 16:20:04

jehnichen
Member
From: Leipzig/Germany
Registered: 2013-03-21
Posts: 15
Website

Re: fullflip gallery - getting rid of the boxes and borders?

great-thank you-worked !
I changed it in "galleries.php" of my album but one last question:
where to change this if I want it to be applied on any gallery in the future without going into every single galleries "galleries.php"?

Offline

#7 2015-03-11 20:45:20

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: fullflip gallery - getting rid of the boxes and borders?

Galleries.php?
Do you mean that you went into the exported page that contains the flip gallery?

If so, your changes will get overwritten if you need to export Pages again.

You should make any custom css changes in the custom.css file.
http://ce4.theturninggate.net/docs/doku … custom_css
You'll need to first enable phplugins
http://ce4.theturninggate.net/docs/doku … _phplugins


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

#8 2015-03-11 22:13:25

jehnichen
Member
From: Leipzig/Germany
Registered: 2013-03-21
Posts: 15
Website

Re: fullflip gallery - getting rid of the boxes and borders?

yes i went into the exported page...  because i could not get the custom.css thing running.
I followed the instructions:- created a folder "ttg-phplugins" in the root of my website - copied the content of "phplugins-sample" into it - deleted the two lines to enable custom-stylesheet - created a Gallery out of CE4 - set the tick at "enable PGPlugins" and filled in the path to my ttg-phplugins Folder (/home/debian1/webserver/www/ttg-phplugins) - i left "custom.css" as it was.
Expected to get a red background in order to verify that it works properly - but it did not: the gallery was unaffected of it.
Then I deleted the content of custom.css and replaced it by
"#ttg_thumbs {
display: none;
}"
but it did not change anything.
Any Idea?

Dear Rod, if you feel that it doesnt make sense to keep on trying because i am too unexperienced with CSS/PHP you might be right - and i understand if you close the case.

Thank you
martin

Offline

#9 2015-03-11 22:45:41

jehnichen
Member
From: Leipzig/Germany
Registered: 2013-03-21
Posts: 15
Website

Re: fullflip gallery - getting rid of the boxes and borders?

meanwhile i got custom.css to work - do not know how. (maybe it is not allowed to rename the phplugins Folder..
but now it works - background is red (which i will change) and the flipping thing is turned off! - Thank you for your help!

martin

Offline

#10 2015-03-11 22:47:48

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: fullflip gallery - getting rid of the boxes and borders?

Hi Martin,

The problem is the name of the folder: ttg-phplugins. The documentation tells you to change it from phplugings-sample to phplugins

in the phplugins.php file, the url to the custom.css file assumes that the name of the phplugins folder is 'phplugins'. you'll notice that the url to custom.css is:

<link rel="stylesheet" href="/phplugins/css/custom.css" />

So instead of changing the server path in all your plug-ins you can just change the url to custom.css:

<link rel="stylesheet" href="/ttg-phplugins/css/custom.css" />

don't worry about asking questions!


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

Board footer

Powered by FluxBB