postbit space

Balegar

New Member
qppkle.png


How i can make empty space betwen vbexperience and flag etc in postbit_legacy

thanks
 
I recommended adding this to your CSS

Code:
.spacer {
padding:5px 0px 5px 0px;
}

Then just add
HTML:
<div class="spacer"></div>
in between your icons.

Will add a 5pixel gap, and you can obviously adjust it with how much you want (Just change both the 5's to a 1 for 1 pixel, etc).
 
Thanks everybody for help. This combination is working.

Code:
.spacer {
padding:5px 0;
}

HTML:
<div class="spacer"></div>
 
Back
Top