Ok. So, I used FireBug to identify (and change in 'Live Edit' mode)... the position attribute of the .toplinks CSS element (to absolute). That allowed me to move the toplinks over to the left.
Here's the CSS markup that FireBug led me to:
.toplinks {
background: none repeat scroll 0 0 transparent;
color: #FFFFFF;
font: 11px Arial,Tahoma,Calibri,Verdana,Geneva,sans-serif;
position: absolute;
right: 180px;
text-align: right;
top: 0;
}
(note that the 'position: absolute' and 'right: 180px' values are ones I changed)
But.... when I try to find this markup (or even a piece of it) that in any of the css templates (in admincp)... I'm coming up empty.
I'm using search templates.
Should I be able to find that markup verbatim in the css files in admincp ?
THANKS
|