CSS Problem

classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

CSS Problem

Zinnia-Aster
Hello, I'm pretty good with css, and have got most of my forum formatted the way I like, except for these two things.



Can someone tell me what the css tags are for these two elements? I can't seem to find it in editing the css, I know how to change the colors and background images; I just need to know the name of these areas. Any help would be greatly appreciated.

My Css
.nabble { background-color:f0eee3; } .nabble .no-bg-color { background-color: #ffffff; } body { margin-right: auto; margin-left: auto; background-color: #604f45; background-image: url("http://img217.imageshack.us/img217/1281/backgroundevennewer.jpg"); background-position:center; background-repeat: repeat-y; width: 1000px; } blockquote table.bordercolor, td.windowbg table tr td table.bordercolor, td.windowbg2 table tr td table.bordercolor { width: 500px !important; } } .nabble h1, .nabble h2, .nabble .light-black { color: #b1bc47; } .nabble .message-text, .small, .nabble .editor-table td, p, form, small, ul, table td, .breadcrumbs { color:#b1bc47; } .nabble .light-bg-color { background-image:url("http://i130.photobucket.com/albums/p252/TheForsakenPrayer/Graphics/stripes1000.jpg"); } tr.dropdown-hover,.nabble .shaded-bg-color { background-color: #C9DBE8; background-image: url("http://i130.photobucket.com/albums/p252/TheForsakenPrayer/Graphics/stripes1000.jpg"); background-repeat: repeat-x; } .nabble th, .nabble .dark-bg-color { background-image:url ("http://i130.photobucket.com/albums/p252/TheForsakenPrayer/Graphics/stripes1000.jpg"); } .nabble .error-message, .nabble .info-message, .nabble .light-highlight { background-image: url("http://i130.photobucket.com/albums/p252/TheForsakenPrayer/Graphics/stripes1000.jpg"); background-repeat: repeat-x; } .nabble .highlight { background-image:url("http://i130.photobucket.com/albums/p252/TheForsakenPrayer/Graphics/stripes1000.jpg") ; } .nabble .info-message th, .nabble .dark-highlight { background-image:("http://i130.photobucket.com/albums/p252/TheForsakenPrayer/Graphics/stripes1000.jpg") ; } .nabble table, .nabble li, .nabble div, .nabble .medium-border-color { border-color: #f0eee3; } .nabble td, .nabble .light-border-color { border-color: #f0eee3; } .nabble .dark-border-color { border-color: #f0eee3; } .nabble .error-message { border-color: #f0eee3; } .nabble .info-message { border-color: #f0eee3; } span.dropdown table, span.dropdown ul { background-image:url("http://i130.photobucket.com/albums/p252/TheForsakenPrayer/Graphics/stripes1000.jpg"); border-color:#f0eee3; } .post-border, td.post-border { border-color: #f0eee3; } span.post-date { color: #b1bc47; } span.post-author { color:#b1bc47; } span.post-snippet { color: #f0eee3; } span.post-subject { color: #f0eee3; } .post-hover { background-color:#f0eee3; } select, input, textarea, button { border:1px solid #b1bc47; } input[type=radio] { border:none; } span.connect-line, span.connect-end { background-image:url("http://i130.photobucket.com/albums/p252/TheForsakenPrayer/Graphics/stripes1000.jpg"); } td.connect-end { background-image:url("http://i130.photobucket.com/albums/p252/TheForsakenPrayer/Graphics/stripes1000.jpg"); } td.connect-node { background-image:url("http://i130.photobucket.com/albums/p252/TheForsakenPrayer/Graphics/stripes1000.jpg"); } .nabble a:link { color: #b1bc47; } .nabble a:visited { color: #b1bc47; }
You are always in my thoughts. . .

I tuck myself in,
Cover myself up;
So no one may see me.
They only see this face.


About Me
Reply | Threaded
Open this post in threaded view
|

Re: CSS Problem

Hugo <Nabble>
The first area is "#post-title".
The second area you can try "td.column-left" or "td.shaded-bg-color".
Reply | Threaded
Open this post in threaded view
|

Re: CSS Problem

Zinnia-Aster
Hello, thank you for your help. I was able to change the first object, but the second is still a blue background.

I put this css in:

#post-title{
    color: #b1bc47;
}
td.column-left{
    color: #b1bc47;
}
#td.shaded-bg-color{
    color: #ffffff;
}

The last two are only changing the color of the text that says how many posts the user has, I want to change the blue background behind the avatar. How can I do this? Any help is really appreciated. :)
You are always in my thoughts. . .

I tuck myself in,
Cover myself up;
So no one may see me.
They only see this face.


About Me
Reply | Threaded
Open this post in threaded view
|

Re: CSS Problem

Hugo <Nabble>
You should set the "background-color" property then:
td.column-left{
    background-color: #b1bc47;
} 
Reply | Threaded
Open this post in threaded view
|

Re: CSS Problem

Zinnia-Aster
I copied that and put it in the css, but it didn't change anything. I'm not sure why. The background behind the post is still blue. Here is another screenshot: . See how it is blue? I want it to be the same color as the post background, white.
You are always in my thoughts. . .

I tuck myself in,
Cover myself up;
So no one may see me.
They only see this face.


About Me
Reply | Threaded
Open this post in threaded view
|

Re: CSS Problem

Hugo <Nabble>
I just realized that you should use ".nabble table.classic-table td.column-left" instead. I already changed it for you, so you can take a look:
http://rasen-kemahj.914992.n3.nabble.com/Test-td915022.html#a915022