PDA

View Full Version : Stylevar Question


ozzy47
06-03-2011, 09:35 AM
Where is the Stylevar for the background here at, I can not seem to find it at all?

http://www.myfriendsspace.com/imagehosting/14de8c687c96b3.png

RobbieZ
06-04-2011, 09:20 AM
4.1.3

Search in member.css and find

.profile_editor_border, .profile_content .actionbuttons {
border-{vb:stylevar right}: {vb:stylevar tabslight_border};
border-{vb:stylevar left}: {vb:stylevar tabslight_border};
margin-top:0px;
}

Change to this

.profile_editor_border, .profile_content .actionbuttons {
border-{vb:stylevar right}: {vb:stylevar tabslight_border};
border-{vb:stylevar left}: {vb:stylevar tabslight_border};
margin-top:0px;
background: color of your choice;
}

https://vborg.vbsupport.ru/external/2011/06/78.jpg

4.1.4 utilizing CkEditor

That area is actually in 2 parts

The top bit can be found in member.css and search for:

#visitormessageseditor {
background:transparent;
}

Change your color from transparent to your choice.

https://vborg.vbsupport.ru/external/2011/06/79.jpg

the bottom bit has now changed , find

.profile_content .actionbuttons {
border-bottom: {vb:stylevar tabslight_border};
margin-bottom: {vb:stylevar padding};
padding-bottom: {vb:stylevar padding};

Add background color

https://vborg.vbsupport.ru/external/2011/06/80.jpg

They keep us on our toes you know by changing everything :D

setishock
06-04-2011, 03:49 PM
Well it's in 2 parts in 4.1.2. I'm working up a tut on doing styling of the profile. Lynne showed me the mini stats and visitor message title. Now I'll add this.

ozzy47
06-05-2011, 08:02 PM
Excellent RobbieZ that worked perfect, thankyou!