Styling Questions

Peggy

Well-known member
I have at least 3 areas on my forum where I cannot find where to change the colors.

Please see the screenies below, and find it in your kind heart to help me out. (wow that sounds like a suck-up).

TIA!

Forum list inside a category:
forumlist.webp

Quote background:
quote.webp

Quote "header" strip (don't know the name for this):
quote_head.webp

Thanks again!
 
Before opening a new Thread.... Is there any option in ACP - Style Properties for .navTabs .navLink:hover
I wanted to change the Hover Tab BG Color (darkerblue) as it is in ACP.
Or do i have to add it in EXTRA.css?
 
EXTRA.css as there's no Style Property for it.

Code:
/* Change navigation tab hover colour */
.navTabs .navTab.PopupClosed:hover {
background-color: @secondaryDark;
}
 
I think my question can fit in this thread, so here it goes:

I am trying to figure out how to stop the text from changing the ribbon's width:
18-10-2011 20-12-37.webp

In other words, how do I set a fixed width to the ribbon?

Content of my EXTRA.CSS:
Code:
.userManagement,
.userCustomer,
.userMember,
.userValidating,
.userGuest,
.userStaff,
.userBeta{
    color: #fff;
    /*font-weight: bold;*/
    background: #65a830;
    padding: 3px 8px;
    font-size: 11px;
    /*text-transform: uppercase;*/
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    text-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
    display: inline-block;
}

.userManagement{ background: #881418; }
.userMember{ background: #7f7f7f; }
.userValidating, .userGuest{ background: #efefef; color: #333; text-shadow: #fff 0px 1px 0px; }
.userStaff{ background: #d59944; }
.userBeta{ background: #307fa8; }
 
1. Style Properties -> Building Blocks -> Sub-Heading

2. Style Properties -> BB Code Elements -> BB Code Quote Message

3. Style Properties -> BB Code Elements -> Quote Attribution Block


I went to Style Properties -> BB Code Elements -> Quote Attribution Block and changed "Background color" ... it didn't change the color. Nor can I change the text color...why would that be? Yet I can edit the BB Code Quote Message text color, but can't edit the background color on the message either?
 
I went to Style Properties -> BB Code Elements -> Quote Attribution Block and changed "Background color" ... it didn't change the color. Nor can I change the text color...why would that be? Yet I can edit the BB Code Quote Message text color, but can't edit the background color on the message either?
Default style or custom style. If custom style be sure that !important is not being set for those areas in one of the style CSS templates.
 
Top Bottom