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
After publishing a CRG, the icon for the sending feedback is missing on the status bar. Please advise.
Offline
Update: I found the Submit button appears only when the heart icon at the top right is clicked. Is there a way to display the Submit button on status bar next to the heart icon so users can click it directly?
Offline
Update: I found the Submit button appears only when the heart icon at the top right is clicked. Is there a way to display the Submit button on status bar next to the heart icon so users can click it directly?
Not any easy way I’ve found (this has come up before)
The easiest solution is to include instructions in your albums! Are you using the Gallery Help pop up feature?
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
If you want, you can use custom css to replace that Heart icon in the button with some text.
#crg-widget::before {
content: "Submit";
font-family: inherit;
}
This will insert the text rather than the heart. And it will also use your main font.
you'll also need to add some styling to make the button wider to accommodate the word length:
li#crg-widget {
width: 60px;
}
adjust width as needed.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Hi Rod,
Thank you for your help. Yes, I am using the Gallery Help and do have instructions, however, your solution with changing the icon to text will make my instructions clearer. I still wish there was a more intuitive way to display all of the options in the open on the taskbar.
I can't seem to change the font color from red. Is there a way to override that color?
-RP
Offline
try Adding a color property to the same rule that content is in
color: black;
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
It didn't like the hex value in quotes ("#000000"), but accepted your suggestion. Thanks.
Offline
Don’t use quotes with hex code
color: #000000;
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Thanks!
Offline
I still don't understand why the "submit" button is hidden inside the "Filter" button. This just isn't user friendly.
Offline
Pages: 1