Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
UBBDev.com
UBBWiki.com
Who's Online
1 registered (capnbob), 44 Guests and 15 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 06/08/06
Posts: 1465
Top Posters (30 Days)
Ruben 50
DennyP 24
Gizmo 24
Dunny 17
SteveS 14
AllenAyres 12
dbremer 10
drkknght00 9
SD 9
driv 8
Latest Photos
OK Corral Shoot Out
Testing
Basildon Train Station
Basildon Town Centre looking from the rounderbout
Basildon Town Square
Topic Options
#165806 - 10/11/06 06:00 PM Special Link Properties
jgeoff Offline
Pooh-Bah
Registered: 08/08/06
Posts: 1922
Loc: NJ
I'm no CSS expert by any means, so could someone please tell me how I could ADD the "Special Link Properties" options to those properties that don't have them?

In particular, I want to add link options to Misc Properties > .small

Is this what the "Extra Properties" box is for?

Thanks!

JG

_________________________
GangsterBB.NET (Ver. 7.5.6)
2007 Content Rulez Contest - Hon Mention
UBB.classic 6.7.2 - RIP
Browsers: Chrome, Firefox, & Safari (Win7 and iPhone); No IE, ever!
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."
#165808 - 10/11/06 06:07 PM Re: Special Link Properties [Re: jgeoff]
Zarzal Offline
old hand
Registered: 06/05/06
Posts: 1142
Loc: Berlin, Germany
yes. I use the extra properties to highlight the time on some places. Example:

Code:
.subjecttable .date {
color: #ffffff;
}
.subjecttable .time {
color: #ffffff;
font-weight: bold;
}

.tdheader .time {
color: #ffffff;
font-weight: bold;
}
.tdheader .date {
color: #ffffff;
}

.topictime .time {
color: #ff4500;
}
.posttime .time {
color: #ff4500;
}


This exaple may help you a little bit.
_________________________
my board: http://www.dragon-clan.de
my hobby: http://www.biker-reise.de
Ich kann bei Fragen zu UBBthreads in Deutsch weiterhelfen oder es zumindest versuchen
Top
#165810 - 10/11/06 06:09 PM Re: Special Link Properties [Re: Zarzal]
jgeoff Offline
Pooh-Bah
Registered: 08/08/06
Posts: 1922
Loc: NJ
That helps a lot - thanks, Zarzal!
_________________________
GangsterBB.NET (Ver. 7.5.6)
2007 Content Rulez Contest - Hon Mention
UBB.classic 6.7.2 - RIP
Browsers: Chrome, Firefox, & Safari (Win7 and iPhone); No IE, ever!
Top
#165814 - 10/11/06 06:33 PM Re: Special Link Properties [Re: jgeoff]
jgeoff Offline
Pooh-Bah
Registered: 08/08/06
Posts: 1922
Loc: NJ
Okay, well, it helped me to understand it better, but I still don't know the proper syntax to do this:

Code:
.topicsubject .small {
A:link {color: #222222; text-decoration: underline; }
A:visited {text-decoration: underline; color: #222222;}
A:active {text-decoration: underline; color: #222222;}
A:hover {text-decoration: underline; color: red;}
}


I know that's wrong, but can't think how to do it properly
_________________________
GangsterBB.NET (Ver. 7.5.6)
2007 Content Rulez Contest - Hon Mention
UBB.classic 6.7.2 - RIP
Browsers: Chrome, Firefox, & Safari (Win7 and iPhone); No IE, ever!
Top
#165842 - 10/12/06 01:27 AM Re: Special Link Properties [Re: jgeoff]
Gizmo Offline

Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
Jacked directly from the ubb stylesheet here:
body a:link {
color: #135060;
background: none;
}
body a:visited {
color: #135060;
background: none;
}
body a:active {
color: #135060;
background: none;
}
_________________________
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
#165879 - 10/12/06 12:55 PM Re: Special Link Properties [Re: Gizmo]
jgeoff Offline
Pooh-Bah
Registered: 08/08/06
Posts: 1922
Loc: NJ
Thanks, but is there a way to assign all 4 link types within the same function? Or can't that be done?
_________________________
GangsterBB.NET (Ver. 7.5.6)
2007 Content Rulez Contest - Hon Mention
UBB.classic 6.7.2 - RIP
Browsers: Chrome, Firefox, & Safari (Win7 and iPhone); No IE, ever!
Top
#165943 - 10/12/06 07:34 PM Re: Special Link Properties [Re: jgeoff]
Gizmo Offline

Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
You're trying to set a link for .topicsubject, just take what i threw above and replace "body" for ".topicsubject" and set your colors and throw it into the misc section of the css editor...
_________________________
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
#165951 - 10/12/06 08:34 PM Re: Special Link Properties [Re: Gizmo]
jgeoff Offline
Pooh-Bah
Registered: 08/08/06
Posts: 1922
Loc: NJ

I guess I should've just tried what you said the first time.

Thanks!! This is what I needed:

Code:
.small a:link {
color: #222222;
background: none;
}
.small a:visited {
color: #222222;
background: none;
}
.small a:active {
color: #ff0000;
background: none;
}
.small a:hover {
color: #ff0000;
background: none;
}
_________________________
GangsterBB.NET (Ver. 7.5.6)
2007 Content Rulez Contest - Hon Mention
UBB.classic 6.7.2 - RIP
Browsers: Chrome, Firefox, & Safari (Win7 and iPhone); No IE, ever!
Top
#165959 - 10/12/06 09:13 PM Re: Special Link Properties [Re: jgeoff]
Gizmo Offline

Registered: 06/05/06
Posts: 14994
Loc: Portland, OR; USA
hehe not a problem, was figureing you'd figure it out
_________________________
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



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

Today's Birthdays
No Birthdays
Recent Topics
Ability to "like" individual posts (not Facebook "likes)
by doug
09:03 AM
Island Permissions
by ThreadsUser
05/22/12 03:03 PM
streaming video
by prkrgrp
05/20/12 07:02 PM
New Posts Corrupted? Can someone help?
by PianoWorld
05/19/12 09:41 AM
Custom forum permissions
by ntdoc
05/18/12 02:07 PM
Forum Stats
10489 Members
36 Forums
33840 Topics
181693 Posts

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