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 and a happy new year to everybody,
in the meantime I have already made some changes in my custom.css and also found most of it with the Inspector.
But now I want to resize the font from the submenu. But I didn't find the right element.
I tried it with this code:
/* ----- Font-Size Sub-Menü -----
================================= */
nav ul ul li a {
font-size: 18px;
}
https://backlight.der-canonier.de
When I change the Element area in the Inspector, it works
Element {
font-size: 12px;
}
Another question:
What could be the reason why the font of the photo search above the footer in Safari is grey, while the font in Firefox is red?
In custom.css I have set the color to red.
Many Greetings
Markus
https://www.mc-photografie.de - Backlight 3
https://bl3.mc-photografie.de - Backlight 3 Testsite
http://backup.der-canonier.de - Backlight 2
Offline
try something more specific:
nav ul.sub-menu li.menu-item a {
font-size: 18px;
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Exactly Rod, Thanks.
The only question is where and how do I find this element in the Inspector? If I comment out your line, I can't find this element, even though I clicked on the sub-menu with the Inspector (right-click doesn't work in this case)
https://www.mc-photografie.de - Backlight 3
https://bl3.mc-photografie.de - Backlight 3 Testsite
http://backup.der-canonier.de - Backlight 2
Offline
Another question:
What could be the reason why the font of the photo search above the footer in Safari is grey, while the font in Firefox is red?
In custom.css I have set the color to red.
And what could be the reason here? I've already cleared the cache in Backlight 2 and deleted the history in Safari and Firefox. Still the same different font colors
Greetings
Markus
https://www.mc-photografie.de - Backlight 3
https://bl3.mc-photografie.de - Backlight 3 Testsite
http://backup.der-canonier.de - Backlight 2
Offline
The only version of Safari I have is on my iPad and iPhone and the text above the footer is red in the iOS version of Safari.
Someone with a Mac will need too look.
One thought. Did you set the color to “red” or did you use a hex code like #FF0000 ?
Perhaps Safari only recognizes hex code in the css?
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Markus wrote:Another question:
What could be the reason why the font of the photo search above the footer in Safari is grey, while the font in Firefox is red?
In custom.css I have set the color to red.And what could be the reason here? I've already cleared the cache in Backlight 2 and deleted the history in Safari and Firefox. Still the same different font colors
Greetings
Markus
Chrome and Safari show the text in gray. Searching the internet, it looks like this is a bug in those browsers. Try to use -webkit-text-fill-color:
/* Schriftfarbe im Suchfeld
=========================== */
form input[type="color"],
form input[type="date"],
form input[type="datetime"],
form input[type="datetime-local"],
form input[type="email"],
form input[type="month"],
form input[type="number"],
form input[type="password"],
form input[type="search"],
form input[type="tel"],
form input[type="text"],
form input[type="time"],
form input[type="url"],
form input[type="week"],
form input:not([type]),
form select,
form textarea,
.form input[type="color"],
.form input[type="date"],
.form input[type="datetime"],
.form input[type="datetime-local"],
.form input[type="email"],
.form input[type="month"],
.form input[type="number"],
.form input[type="password"],
.form input[type="search"],
.form input[type="tel"],
.form input[type="text"],
.form input[type="time"],
.form input[type="url"],
.form input[type="week"],
.form input:not([type]),
.form select,
.form textarea {
color: #FF0000;
background-color: white;
-webkit-text-fill-color: #FF0000;
}
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
Thanks, both of you.
At least both solutions didn't help me. Fortunately, it's just a (not so important) little thing that I can live with.
I just wanted to understand why it is like this
https://www.mc-photografie.de - Backlight 3
https://bl3.mc-photografie.de - Backlight 3 Testsite
http://backup.der-canonier.de - Backlight 2
Offline
Pages: 1