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
Is there a way to control the look & feel of the breadcrumbs? Font style, weight, rollover color, etc....
Offline
other than the controls in the Content Area of the page template, you'll have to use custom 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
As a starting point, the breadcrumb appearing in the album set here:https://pideja.ca/tnm/galleries/ is much smaller than in the albums and galleries here: https://pideja.ca/tnm/galleries/saison- … 1-carnage/.
I already have some simple CSS :
.breadcrumbs a {
font-weight: bold;
font-size: 1.5em;
color: FF2115;
}
.breadcrumbs li a:hover {
color: red;
}
But it does not seem to apply to the album set page.
Offline
How about
ul.breadcrumbs li {
font-size: 1.75rem;
}
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
a forum search came up with this: http://community.theturninggate.net/vie … hp?id=7930
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Thank you, Daniel,
I set the ul.breadcrumbs at 1.20rem and the .breadcrumbs at 1.15rem with a hover color of white. Looks good.
Offline
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
For some reason, I can't change the breadcrumb colour with my CSS. Previously I had set the colour to red and the hover to white and it worked.
But now, I want to change the hover colour but nothing happens.
The CSS is written like this:
ul.breadcrumbs li {
font-size: 1.20rem;
padding: 60px 16px;
}
.breadcrumbs a {
font-weight: bold;
font-size: 1.15rem;
color: FFFF00;
}
.breadcrumbs li a:hover {
color: FFF6D0;
The only change is the hover colour. I've tried clearing the cache to no avail.
Last edited by pideja (2019-09-22 01:35:03)
Offline
If .breadcrumbs a works for changing the color, then why not try .breadcrumbs a:hover for the hover color?
Also, you need the hashmark # before the hex code
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
I tried .breadcrumbs a as well as .breadcrumbs li a to no avail.
Offline
I've added a text-decoration and...it shows up, but not the colour which is still white!
/* Display list items side by side */
ul.breadcrumb li {
display: inline-block;
font-size: 1.20rem;
padding: 60px 16px;
}
/* Add a color to all links inside the list */
.breadcrumb li a {
font-weight: bold;
font-size: 1.15rem;
color: FFFF00;
}
/* Add a color on mouse-over */
.breadcrumb li a:hover {
color: FFF6D0;
text-decoration: underline;
}
Offline
It is breadcrumbs and not breadcrumb!
This works for me:
ul.breadcrumbs li {
color: blue;
}
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
Put back the "s" in breadcrumbs. Then, slightly changed the hover colour to FFF5D0 I tried changing the hover colour to black and...it worked! Is the colour I'm trying to use wrong somehow? Tried RGB(255,246,208) and it worked! Should I write the colour in RGB code rather than HEX?
Now to control the lead breadcrumb colour, still white.
Offline
The hex codes need a hashtag in front of them:
color: #FFF6D0;
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Think you for the # hint. It works fine now.
Last edited by pideja (2019-09-22 23:58:44)
Offline
I still have an issue with these breadcrumbs. I played around with different colours and even tried the underline font decoration. However, I returned to a simple font colour (red) and hover colour (beige)
I wrote the CSS accordingly:
/* Display list items side by side */
ul.breadcrumbs li {
display: inline-block;
font-size: 1.20rem;
padding: 60px 16px;
}
/* Add a color to all links inside the list */
.breadcrumbs li a {
font-weight: light;
font-size: 1.20rem;
color: #FF0001;
font-weight: light;
}
/* Add a color on mouse-over */
.breadcrumbs li a:hover {
color:#FF5D0 ;
font-weight: light;
}
and yet, I still have that red/red underline combination. I cleared the Backlight cache and the browser cache, but no change. What else could I change?
Offline
Your beige color has only five digits. Try fixing that first
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Oops! forgot a digit! Fixed but still, the hover should be #FFF5D0 and it's still red-underlined.
Looking all over Backlight and checked the CSS and nothing seems to indicate red-underlined breadcrumbs hover.
Offline
Which gallery are you talking about now?
Daniel Leu | Photography
DanielLeu.com
My digital playground (eg, Backlight tips&tricks): lab.DanielLeu.com
Offline
I'm still here: pideja.ca and looking thru out the breadcrumbs in the Galeries section.
But wait!
The hover seems to be correct, except for the underline, but let's not quibble.
Last edited by pideja (2019-09-25 00:05:46)
Offline
in the page template go to Typography > Base Font Properties > text-decoration:hover
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
I guess I forgot about that. Thinking that all settings where CSS driven. Issue solved, thank you.
Offline
Pages: 1