EASY READ: How do I move a spry menubar over about 20px to the left or the right (doesn't matter) with the code I'm using here (yes margins have to be like this).
COMPLICATED READ: So what I'm trying to do is put a horizontal spry menu bar on top of the header, add the header as a background so that it blends in, and make it so that it stands out when you mouse over it. Can't seem to make the menu bar get on TOP of the image though... Ideas?
I KIND of have the idea with this:
ul.MenuBarHorizontal {
width: 768px;
margin: auto;
position:relative;
top:-50px;
margin-right: auto;
margin-left: auto
}
But I can't move it left or right without messing up margin-xxxx tags which keep it centered. Is there any way to move it off center without changing the margin tags?