Arranging text in header–Untitled Theme
-
I’m using Untitled theme. Blog URL is snackexchange.wordpress.com.
I’d like to split the two words of the site title on either side of the center graphic. I’d like to do the same with the four menus…two on either side of the center graphic.
Any thoughts?
The blog I need help with is: (visible only to logged in users)
-
This thread will be moved to the CSS Forum for you where you will get the help your need with your CSS editing. Please do not create a duplicate thread.
NOTE: I don’t help with CSS editing and it’s a long weekend. You will have to wait patiently until those who do help with CSS editing log in and work their way forward from the earliest dated threads requesting CSS help to your thread.
-
It’s not the most elegant solution, but you might consider using absolute positioning to move individual menu items. Here is an example you can use as a starting point:
#masthead { position: relative; } #menu-item-7 { position: absolute; left: -25px; } #menu-item-8 { postition: absolute; left: -550px; }Adjust the “left” values as needed.
- The topic ‘Arranging text in header–Untitled Theme’ is closed to new replies.