Shift it where? What do you want it to look like?
Thread Starter
okso
(@okso)
I would like to move it to the right (about 15pix) so it lines up with the strap line in the header graphic and the left margin of the posts. I just can’t find the attributes in the style css to do it! Thanks if you can help. David
Try adding some left padding here
.pages {
display: inline;
position: absolute;
left: 20;
bottom: 0;
text-align: left;
padding: .6em 0;
width: 100%;
Thread Starter
okso
(@okso)
i’ve been here…
display: inline;
position: absolute;
left: 0;
bottom: 0;
text-align: <?php echo $mandigo_options[‘header_navigation_position’]; ?>;
padding: .6em 5;
width: 100%;
}
as soon as I put any value in padding (in this example 5) it jumps an indiscriminate amount over to the right (as I’ve left it on http://www.mechange.com). I just don’t seem to be able to control it on a pixel by pixel basis.
You are not applying left padding. If you only specify 2 values, the first one is applied top and bottom, and the second one is applied right and left. The sequence is top, right, bottom, left. Use this instead.
padding: .6em 0 .6em 5px;
Thread Starter
okso
(@okso)
thank-you chrisber, much appreciated. David