
Announcement
Collapse
No announcement yet.
Just Thinking ( ... about LINKING )
Collapse
X
-
Just Thinking ( ... about LINKING )
Would it be possible to change thelink display color for links that appear in signatures of posts on a board without changing the the link colors for all links boardwide?
:p -=Xube ®
...it's just technologyTags: None
-
<!-- sig -->
<div>
change to
<!-- sig -->
<div class="sig">
AdminCP > Styles & Templates > Style manager > Click on go for the style you want this to effect > Scroll down to the extra CSS area >
add
.sig a:link
{
color: #ffffff;
text-decoration: none;
}
.sig a:visited
{
color: #ffffff;
text-decoration: none;
}
.sig a:hover, .tcat a:active
{
color: #FFFF66;
text-decoration: underline;
}
Change each of the hex codes to somthing that suits your forums.
-
Originally posted by Zachery<!-- sig -->
<div>
change to
<!-- sig -->
<div class="sig">
AdminCP > Styles & Templates > Style manager > Click on go for the style you want this to effect > Scroll down to the extra CSS area >
add
.sig a:link
{
color: #ffffff;
text-decoration: none;
}
.sig a:visited
{
color: #ffffff;
text-decoration: none;
}
.sig a:hover, .tcat a:active
{
color: #FFFF66;
text-decoration: underline;
}
Change each of the hex codes to somthing that suits your forums.I just noticed that my post question is in the vB3 area. Can something similar to this be done for sigs in vB2?
:p -=Xube ®
...it's just technology
Comment
-
It should be possible, let me check vB2's templates
Find
HTML Code:<p>$post[signature]</p>
replace with
HTML Code:<p class="sig"><p>$post[signature]</p>
find
HTML Code:} </style>
and change too
HTML Code:} .sig a:link { color: #ffffff; text-decoration: none; } .sig a:visited { color: #ffffff; text-decoration: none; } .sig a:hover, .sig a:active { color: #FFFF66; text-decoration: underline; } </style>
Last edited by Zachery; Wed 7th Apr '04, 2:24pm.
Comment
-
Originally posted by ZacheryIt should be possible, let me check vB2's templates
Find
HTML Code:<p>$post[signature]</p>
HTML Code:<p class="sig"><p>$post[signature]</p>
find
HTML Code:} </style>
and change too
HTML Code:} .sig a:link { color: #ffffff; text-decoration: none; } .sig a:visited { color: #ffffff; text-decoration: none; } .sig a:hover, .sig a:active { color: #FFFF66; text-decoration: underline; } </style>
Nah... couldn't get it to work. I have been tinkering with it though... such as
- after trying the code above I then tried...
<p class="sig">$post[signature]</p>
- instead of...
<p class="sig"><p>$post[signature]</p>
Just making a guess that maybe the additional p was already part of that first p=... class bracket thingy, but alas that still didn't work.:p -=Xube ®
...it's just technology
Comment
- after trying the code above I then tried...
-
Sorry about that, i was doing alot fo copying and pasting.
change the <p class="sig"></p> to <div class="sig"> </div>
Comment
-
Originally posted by ZacherySorry about that, i was doing alot fo copying and pasting.
change the <p class="sig"></p> to <div class="sig"> </div>
Thanks much. I've learned so much from you guys @vB on this board!:p -=Xube ®
...it's just technology
Comment

Comment