Quote:
Originally Posted by freebase69
I tried that and it didn't work. What I did do was manually match color by color as best as I could. All in all everything turned out just fine. I just wish there was a way to import a style but then again I see the differences in the over all code.
One thing I am curious though is importing a font and how to make the backround an image and not a color. I added the path to the image on the main CSS but it only covered half the page and didn't really look good. THe biggest thing I want to know is how I can use a different FONT other than the ones that default in.
Thanks again for the help.
|
you are asking for how to convert a phpBB style to vb.
For newbies it is no simple, and also it is hard to explain.
I can tell you how to make
HTML Code:
body {
background-color: #E5E5E5;
scrollbar-face-color: #DEE3E7;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #DEE3E7;
scrollbar-3dlight-color: #D1D7DC;
scrollbar-arrow-color: #006699;
scrollbar-track-color: #EFEFEF;
scrollbar-darkshadow-color: #98AAB1;
font-size: 11px;
}
for vb but then other things may look weird.
This is how:
Styles & Templates -> Style Manager -> Edit
Main CSS of the style you wish to.
Edit: Body
In
Standard CSS Attributes -> Background enter: #E5E5E5 , in
Font Size enter: 11px. In
Extra CSS Attributes add these value below the current value:
Code:
scrollbar-face-color: #DEE3E7;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #DEE3E7;
scrollbar-3dlight-color: #D1D7DC;
scrollbar-arrow-color: #006699;
scrollbar-track-color: #EFEFEF;
scrollbar-darkshadow-color: #98AAB1;
hope this helps.