Hi...
So I've been editing the CSS of a blog I'm working on designing (www.healthyandhappyhour.com/) and have run into a problem. I'm working with the Pilcrow theme, and I didn't like how the nav bar/menu items were aligned to the left, I wanted them centered. So, I adjusted them so that they were "padding-left:100px". I also adjusted the drop-down menu box for the "H&H Picks" tab so that it lined up (left:-100px). However, the drop shadow on that drop down box is still way too far to the left, and I can't figure out how to adjust that in the CSS coding.
Here's what it looks like now:
...
#nav li {
float:left;
position:relative;
}
#nav a {
color:#765d58;
display:block;
line-height:42px;
letter-spacing:.3em;
text-decoration:none;
text-transform:uppercase;
padding:0 16px;
}
#nav ul ul {
box-shadow:0 3px 3px rgba(0,0,0,0.2);
-moz-box-shadow:0 3px 3px rgba(0,0,0,0.2);
-webkit-box-shadow:0 3px 3px rgba(0,0,0,0.2);
display:none;
float:left;
position:absolute;
top:42px;
padding-left:-100px;
width:180px;
z-index:99999;
}
...
Any ideas?
Thanks!
The blog I need help with is holleymaher.wordpress.com.