.sidebar .secondaryContent won't change

Matthew Hawley

Well-known member
So I put this in the EXTRA.css and nothing will change!

Code:
.sidebar .secondaryContent {
background: rgb(242, 250, 247) url('xxx') repeat-x top;
padding: 10px;
border-bottom-width: 1px;
border-bottom-style: solid;
border-radius: 4px;
border: solid 1px #C8C8C8;
}
 
Not sure why you've put all that border css in:-

Code:
.sidebar .secondaryContent {
background: rgb(242, 250, 247) url('xxx') repeat-x top !important;
padding: 10px;
border-bottom: 1px solid #C8C8C8 !important;
border-radius: 4px;
}
Try that. Without seeing what you're trying to do and where, it's hard to give a full answer to the issue :)
 
Not sure why you've put all that border css in:-

Code:
.sidebar .secondaryContent {
background: rgb(242, 250, 247) url('xxx') repeat-x top !important;
padding: 10px;
border-bottom: 1px solid #C8C8C8 !important;
border-radius: 4px;
}
Try that. Without seeing what you're trying to do and where, it's hard to give a full answer to the issue :)

Nope, still won't work.
 
I wan't it showing up like this. http://www.letspwn.com/forums

I added this but nothing changes.

Code:
.sidebar .secondaryContent {
padding: 10px;
border-bottom: 1px solid rgb(228, 240, 247);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
border-radius: 3px;
border: 1px solid #C8C8C8;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;
-webkit-border-radius: 4px;
}
 
Why on earth do you have all that?

All you need is:-

Code:
.sidebar .secondaryContent {
background: rgb(242, 250, 247) url('xxx') repeat-x top !important;
padding: 10px;
border-bottom: 1px solid #C8C8C8 !important;
border-radius: 4px;
}
 
Top Bottom