
05-02-2011, 04:56 PM
|
|
Administrator
|
|
Join Date: Aug 2010
Posts: 85
Thanks: 7
Thanked 21 Times in 20 Posts
|
|
Add CSS Style to Vbulletin CMS Image
To add any type of style to an image you need to:
* After uploading
1. Hover over the image, click on the pencil.
2. In the "Style" box, enter your inline style code.
Example for a border:
Code:
border: 1px solid; color: #000;
This will put a 1px solid black border around the image.
For padding it would be the same:
Code:
padding-top: 10px;p padding-bottom: #10px;
|