Log in

View Full Version : Breadcrumbs Color


Denethor
07-21-2014, 04:57 AM
After doing a bit of digging and searching, I have unsuccessfully been able to change the color of my breadcrumbs on my forum. I am running VB 4.2.2 and using a converted style from VB 3. This is the only thing that I have not been able to manipulate. The current color of my breadcrumbs is white, but they do not show up on a white background, obviously. The attached pictures should clear up any confusion.

Thanks

149813

149814

WEBDosser
07-21-2014, 05:34 AM
Under global use body text color in style variables

Denethor
07-21-2014, 06:25 AM
That allowed me to change the color of the body text, but not the color of the welcome message. Changing the color also changed the color of the rest of the body text, but I do not want to change it. Is there another setting, or a CSS work around?

Dave
07-21-2014, 07:18 AM
The following should work if you add it to additional.css template.

.breadcrumb .navbit>a, .breadcrumb .lastnavbit>span{
color: #fff !important;
}

WEBDosser
07-21-2014, 07:28 AM
you could edit the phrase for the welcome message and wrap it with

<font color="red">----</font>

Denethor
07-21-2014, 08:23 AM
Dave, thank you for the CSS code, it worked like a charm.

Dosser, the welcome message looks like I want it. However, I still have an issue: There is still text in the field that does not change colors and I do not know where the code for this text is held. This includes the results for posts on a page next to the "Page x of x" buttons within threads. See attachments for clarification.

Thanks

149815

149816

Denethor
07-21-2014, 11:44 AM
After poking around, I found it in the page title vars.

Thanks for all the help, everyone!