Quote:
Originally Posted by HC.
last thing thanks for your help
Anyone know where to change the items in RED
this is on the main forum page
|
The background is stylevar > doc_background *found under
Common
For the Welcome text edit the css template > vbulletin-chrome.css *now find:
Code:
.toplinks ul.isuser li.welcomelink {
display: block;
float: {vb:stylevar right};
clear: {vb:stylevar left};
padding-top: 3px;
padding-bottom: 3px;
padding-{vb:stylevar left}: 4px;
padding-{vb:stylevar right}: 4px;
}
Add in the color for example if white add this to the code as shown in
blue:
Code:
.toplinks ul.isuser li.welcomelink {
color: #FFFFFF;
display: block;
float: {vb:stylevar right};
clear: {vb:stylevar left};
padding-top: 3px;
padding-bottom: 3px;
padding-{vb:stylevar left}: 4px;
padding-{vb:stylevar right}: 4px;
}
Save, refresh the forum page to view the color change and your welcome to use RGB instead i.e.
Code:
color: rgb(255, 255, 255);