The Arcive of vBulletin Modifications Site. |
|
|
#1
|
||||
|
||||
|
How do I change the font color in the WGO box as shown on the attached pic? I'm sure that I used to know bvut have forgotten and cannot find it anywhere.... thanks in advance
|
|
#2
|
||||
|
||||
|
actually thats not very clear, this should be better
|
|
#3
|
||||
|
||||
|
You want to change the color of the font only where it says "There are currently xxx users online. yyy members and zzz guests"? Or you want to change the font color within that whole box or what? And what of the bold headings - those font colors too?
|
|
#4
|
||||
|
||||
|
this part Lynne
|
|
#5
|
||||
|
||||
|
You would need to edit the FORUMHOME template and put a <span> around that text and either give it a class and then define the class in your css template, or just add the style directly to the <span> tag.
|
|
#6
|
||||
|
||||
|
Quote:
|
|
#7
|
||||
|
||||
|
Find this in the FORUMHOME template:
Code:
<p>{vb:rawphrase there_are_x_y_online_link, {vb:raw totalonline}, {vb:raw session.sessionurl_q}} <span class="shade">{vb:rawphrase x_members_and_y_guests, {vb:raw numberregistered}, {vb:raw numberguest}}</span></p>
Code:
<p><span style="color:red;">{vb:rawphrase there_are_x_y_online_link, {vb:raw totalonline}</span>, {vb:raw session.sessionurl_q}} <span class="shade" style="color:red;">{vb:rawphrase x_members_and_y_guests, {vb:raw numberregistered}, {vb:raw numberguest}}</span></p>
|
| 2 благодарности(ей) от: | ||
| tbworld, yamahapaul | ||
|
#9
|
||||
|
||||
|
Excellent, glad to hear.
|
|
#10
|
||||
|
||||
|
|
![]() |
|
|