PDA

View Full Version : Spacers between Submit Link | Latest Links


pcklz
01-15-2006, 11:28 PM
It's such a little thing, but for the life of me, I can't figure out where I change this in the css and it's driving me ever so slightly bonkers....

anyone know the answer? *l*

mikedippel
01-16-2006, 12:15 AM
To create spaces, use the ascii code for a space which is


Generally, you would want it to look like this:
|

pcklz
01-16-2006, 12:37 AM
As I said, going bonkers *l*

But I need to know how to change the colors -- can find the colors for everything else in the neighborhood, but not for those....

cranachan
01-16-2006, 07:22 AM
They are not covered by existing css classes.

Create a new class in main.css, lets call it spacer...

What you need therefore is:

In main.css

.spacer {color:#000000;} - change #000000 to your desired color.

In top_bar.tpl

<span class="spacer"> l </span>

You could get finer control over the spacing by adding margin properties to the .spacer class rather than more entities.

.spacer {
color:#000000;
margin:0px 5px 0px 5px;
}