Topic: Styling Question

Is it possible to have different post indicators on viewforum? On the index it would look like this Div.icon {background-image: url(../../img/OpenWings/post.gif);background-repeat:no-repeat;}  but is there a different code to make the ones in viewforum different?

[img]http://img90.imageshack.us/img90/746/scripter8ko.png[/img]
http://openwings.co.cc

2

Re: Styling Question

If you view source you will see each page has its own id. For example viewtopic is #punviewtopic. By using that id you can construct a descendant selector which will all you to style each page differently.

3 (edited by Scripter 2008-04-29 16:49)

Re: Styling Question

alright thanks I'll try that out smile

So your telling me if I would to do;
#punviewforum {
Div.icon background-image: url(../../img/OpenWings/post1.gif);background-repeat:no-repeat;
}
it would work?

[img]http://img90.imageshack.us/img90/746/scripter8ko.png[/img]
http://openwings.co.cc

4

Re: Styling Question

No because thats not valid css. It would be #punviewforum div.icon {whatever}

Re: Styling Question

yeah that's what I meant tongue

[img]http://img90.imageshack.us/img90/746/scripter8ko.png[/img]
http://openwings.co.cc