css - how to

Do you want to copy your vb style css?

A good and fast method is to look into your forum source from fierfox (ctrl-u) and look in header section.
 
Same ...

Just look for <!-- CSS Stylesheet -->

It should be after meta data ...

There you will find what you want ...

The format is like

.tborder
{
background: #E1E1E1;
color: #000000;
border: 1px solid #465786;
}
 
Either that, or, go to phpMyAdmin, go to your database, click 'styles', go to 'Browse', click the pencil next to the desired skin, and in the CSS box, the css from the skin you want to copy, copy all the code from
HTML:
<style type="text/css" id="vbulletin_css">
until
HTML:
<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_important.css?v=373" />
into that box, and save. :)
 
You dont understand me right...i know where and how to find css but i was wandering is there a way to import that css in my style without editing manualy?
Basicly,im talking about ripping style :)
 
betrocker said:
You dont understand me right...i know where and how to find css but i was wandering is there a way to import that css in my style without editing manualy?
Basicly,im talking about ripping style :)
-Hammad- said:
Either that, or, go to phpMyAdmin, go to your database, click 'styles', go to 'Browse', click the pencil next to the desired skin, and in the CSS box, the css from the skin you want to copy, copy all the code from
HTML:
<style type="text/css" id="vbulletin_css">
until
HTML:
<link rel="stylesheet" type="text/css" href="clientscript/vbulletin_important.css?v=373" />
into that box, and save. :)
It works, try it. :p
 
Back
Top