OK I am pulling my hair out here trying to get this to work. Can someone please help me.
In styles, what does .inline_selected do? It seems to work in preview and do what I want it to do, ie. change color when mouse is over that thread name (right?), but online on my test forum that just isn't happening. Why? Do I have to "turn it on" somewhere, or can someone just tell me how I get this thing going.
Express Hosting
"We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
if you are admin or a mod of a specific forum, you can select threads to moderate.. when you do, that thread will have the .inline_selected class applied.. ie: it highlights it ..
same idea goes for when you are viewing your Private messages..
-- if you are looking to style the mouseover preview dealio -- that is in Misc properties.. tooltip header and content
Registered: 06/05/06
Posts: 14995
Loc: Portland, OR; USA
As I've said countless times, this isn't in the stock product; it's a tweak to the css files that I've applied for him when he contracted me for styling.
Several of my free themes that I've released have this in them, just look at their "Extra CSS" directive in the style editor when editing one of them (note that not all of them have it)
Is there any way to have it so that if a post is a "Global Announcement" (or perhaps even just sticky) then it also has a different cell background shade so that it sticks out more?
1) the postlist.tpl would have logic to add to the class based upon {if $postrow[topic].announce} kinda dealio. so you'd append an extra class to things like: class="{$postrow[topic].color}newintopic" and make it class="{$postrow[topic].color}newintopic announcey"
do that for each of the td's in the row basically
2) then add the class in your extra css like .announcey {background: hotpink;}