Tagged: breadcrumbs, change colour, footer, hover
Hello there,
1. I have accidentally made my footer font near invisible. I think it might be a colour setting but I can’t seem to find the right one in “General Styling > Footer”. I want it in black as it was before please?
2. Also, can you tell me if there is a code on how to change the breadcrumbs font colour, hover colour and size?
Regards
Hi,
So long as you haven’t made too many changes to the theme options you can reset ALL options to default by clicking the bottom left button (it’ll be grayed out).
As for the beadcrumb…..
.title_container .main-title a {
color:#EEBBEE !important;
font-size:20px;
}
That code changes the title part of the breadcrumb
.breadcrumb-trail, .trail-begin{
font-size:20px;
color:#eebbee!important;
}
.trail-begin:hover{
color:yellow!important;
}
That code will change the size / color of the actual breadcrumb. .trail-begin is the class of the link and will change yellow in above example.
Depending on how big you make the font you may need to pad down the breadcrumb so it looks neater.
If that’s the case add this too…
.breadcrumb-trail{
padding-top:20px;
}
Hope that helps
TJ
Hello there,
Issue 1 sorted! It was under “Socket font colour”.
Thanks!