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.
You are not logged in.
Pages: 1
Hello All
I have CRG is installed, and working with the one issue that there is no Response option, (the little envelope in the upper right corner, the one that puts the R in CRG ) I am guessing I have over looked something obvious, but....
It looks like this:
http://www.mainundmain.com/galleries/album/
Appreciate your thoughts.
Andy
Offline
A guess (I'm not on my PC so I can't probe the album with the browser's inspector), but the feedback button may be hidden behind the menu button.
Do you have any custom CSS applied that's placing that's placing the menu button to the right?
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Looks like you've got some weird custom code in there -- a lot of "big" tags for example; I don't know what that is. Anyway, looks like your submission button is being hidden by your menu button. Start debugging by disabling your customizations (PHPlugins, custom CSS, etc.).
Offline
I see the problem and am able to duplicate it on my test site.
in the page template, under UI Styling, it looks like you've got the "Float Page UI" option turned on. This is what's causing the problem. The Client Response UI is floating to the right but so is the menu icon and the menu icon has a higher z-index or some other priority.
For now, you can turn the Float Page UI option off until Matt has a chance to look into it.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
For now, you can turn the Float Page UI option off until Matt has a chance to look into it.
Matt will not be looking into it. Matt will instead be releasing Backlight 1.2, in which this will be a nonissue. In the meantime, don't use the Float Page UI option, as it falls squarely into the category of items that are sometimes appropriate, and sometimes not. In this case, it is not.
Offline
Also, do not use HTML "big" tags. I Googled them; they are depreciated, and not supported in HTML5.
If you want to make a thing bigger, you should instead target it by CSS selector (class, id, or element) and write CSS properties for the desired effect.
Offline
Thanks for your response. Defloating the UI did the trick. The <big> was the easiest way i found to enlarge fonts, as i found the crg helpbox text too small... guess I need to work on some CSS skills.
Cheers
Andy
Offline
you can either change the font size with inline css, or create a class in a custom css file and the apply the class.
for inline:
<p style="font-size: 1.2em;"><strong>In the image grid</strong>:</p>
(more on font-size options: https://css-tricks.com/almanac/properties/f/font-size/)
or perhaps use a heading instead:
<h2>In the image grid:</h2>
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Pages: 1