Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
UBBDev.com
UBBWiki.com
Who's Online
7 registered (smallufo, SteveS, sampsonzurich, Bjab, FordDoctor, Stan, Pilgrim), 27 Guests and 13 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 05/17/12
Posts: 3
Top Posters (30 Days)
Ruben 51
Gizmo 24
DennyP 24
Dunny 15
SteveS 14
AllenAyres 12
SD 10
dbremer 10
drkknght00 9
doug 8
Latest Photos
OK Corral Shoot Out
Testing
Basildon Train Station
Basildon Town Centre looking from the rounderbout
Basildon Town Square
Page 1 of 2 1 2 >
Topic Options
#211644 - 05/09/08 10:38 PM .inline_selected
willing Offline
old hand
Registered: 02/12/07
Posts: 701
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.

This one small thing is driving me nuts.

Thank you.
Top
Express Hosting
Express Hosting "We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
#211646 - 05/09/08 11:04 PM Re: .inline_selected [Re: willing]
SD Offline
Registered: 04/19/07
Posts: 4056
Loc: SoCal, USA
no.. that class is used for 2 places:

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 smile
_________________________

Threads tutorials . Threads & Wordpress experts . UBB resume

If I you, click this link as to why
Top
#211651 - 05/10/08 12:29 AM Re: .inline_selected [Re: SD]
willing Offline
old hand
Registered: 02/12/07
Posts: 701
No, what I want is what Ian has on his forums.


http://www.fansfocus.com/

http://www.fansfocus.com/forums/ubbthreads.php/forums/1/1/Site_News.html

When I put my mouse over a thread title, the whole "cell" that that thread title is in turns a different shade.

That's all, but no-one seems able to tell me how to do it.

Thanks
Top
#211652 - 05/10/08 12:31 AM Re: .inline_selected [Re: willing]
Gizmo Offline

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)
_________________________
Forums: UGN Security & VNC Web Design & Development
UBB.Threads: UBB.Wiki, My UBBSkins, UBB.Sitemaps
Longtime UBB Supporter, UBB Beta Tester & Resident Post-A-Holic.
UBB Modifications, Styling, Coding Services, Disaster Recovery, and more!
Top
#211655 - 05/10/08 01:31 AM Re: .inline_selected [Re: Gizmo]
SD Offline
Registered: 04/19/07
Posts: 4056
Loc: SoCal, USA
you'd just have to add the extra styling to the Extra Css section and *poof* done..

your original post wasn't that clear wink

try this as a start, then i think you'll get the idea

Code:
.forumtitle:hover {
background:#F4F7F4 none repeat scroll 0%;
}
.posttime:hover {
background:#F4F7F4 none repeat scroll 0%;
}
.topictime:hover {
background:#F4F7F4 none repeat scroll 0%;
}
.alt-topictime:hover {
background:#F4F7F4 none repeat scroll 0%;
}
.new-topictime:hover {
background:#F4F7F4 none repeat scroll 0%;
}
.new-alt-topictime:hover {
background:#F4F7F4 none repeat scroll 0%;
}
.topicsubject:hover {
background:#F4F7F4 none repeat scroll 0%;
}
.new-topicsubject:hover {
background:#F4F7F4 none repeat scroll 0%;
}
.alt-topicsubject:hover {
background:#F4F7F4 none repeat scroll 0%;
}
.new-alt-topicsubject:hover {
background:#F4F7F4 none repeat scroll 0%;
}


keep in mind that if you have a hover tooltip enabled, it's gonna give you a siezure :hihi:

but you can see how it works, but just trying to add those to your extra css..

note, i chose a light color and you might like a different one.. sooo just play with #F4F7F4 to see what you would settle with smile
_________________________

Threads tutorials . Threads & Wordpress experts . UBB resume

If I you, click this link as to why
Top
#211658 - 05/10/08 02:09 AM Re: .inline_selected [Re: SD]
willing Offline
old hand
Registered: 02/12/07
Posts: 701
OK thank you.

I'll try that on Monday when I'm back "working".

"keep in mind that if you have a hover tooltip enabled, it's gonna give you a siezure :hihi:"

Does that mean they can't be used together?

Thanks
Top
#211659 - 05/10/08 02:15 AM Re: .inline_selected [Re: willing]
SD Offline
Registered: 04/19/07
Posts: 4056
Loc: SoCal, USA
no, you can, but you might not want to..

that's why i added the individual user ability (extra_field_1) to decide if they want it or not..

try it and then you decide for yourself :3c:
_________________________

Threads tutorials . Threads & Wordpress experts . UBB resume

If I you, click this link as to why
Top
#211669 - 05/10/08 02:43 AM Re: .inline_selected [Re: SD]
willing Offline
old hand
Registered: 02/12/07
Posts: 701
Thanks, sorry can you explain this a bit more

"that's why i added the individual user ability (extra_field_1) to decide if they want it or not.."

I just put that code in actually and it seemed to work... any way to get it on the main Forums page as well (ie. the list of the forums)

Thanks
Top
#211950 - 05/12/08 11:50 PM Re: .inline_selected [Re: willing]
willing Offline
old hand
Registered: 02/12/07
Posts: 701
OK I have got this working ok now.

1 more related perhaps question.

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?

Thanks
Top
#211957 - 05/13/08 12:51 AM Re: .inline_selected [Re: willing]
SD Offline
Registered: 04/19/07
Posts: 4056
Loc: SoCal, USA
yah, you would have to modify two things:

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;}

*poof* done smile
_________________________

Threads tutorials . Threads & Wordpress experts . UBB resume

If I you, click this link as to why
Top
Page 1 of 2 1 2 >



Moderator:  AllenAyres, Harold, Ian, Ron M 
Shout Box

Today's Birthdays
No Birthdays
Recent Topics
Due Date Calculator-Calculate When Your Baby is Due
by StewartMyduedate
12:54 AM
Temporary Password email not being received
by
05/24/12 10:02 PM
Ability to "like" individual posts (not Facebook "likes)
by doug
05/23/12 09:03 AM
Island Permissions
by ThreadsUser
05/22/12 03:03 PM
streaming video
by prkrgrp
05/20/12 07:02 PM
Forum Stats
10492 Members
36 Forums
33842 Topics
181709 Posts

Max Online: 978 @ 06/24/07 11:19 PM
Random Image