Hey all, first time asking for help, hope you can!
allysonlongshore.com/blog is the page I'm working on. I've been able to replace the header pic, and create a rollover and link it back to the blog by making changes to header.php and functions.php in my child theme, but I can't seem to make changes to the menu.
I want to: eliminate the hover effect (gray box), and create one menu item with no effects to link back to the main site, allysonlongshore.com
I've tried changing style.css in the child theme:
#access {
background: #ffffff;
display:inline;
font-weight:bold;
float: left;
margin: 0 auto;
width: 940px;
}#access a {
color: #000;
display: block;
line-height: 38px;
padding: 0 10px;
text-decoration: none;
}#access ul li.current_page_item > a,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
color:#000;
}#access ul ul :hover > a {
background:none;
color: #000;
}* html #access ul li.current_page_item a,
* html #access ul li.current-menu-ancestor a,
* html #access ul li.current-menu-item a,
* html #access ul li.current-menu-parent a,
* html #access ul li a:hover {
color: #000;
background:none;
}But these aren't working. Where can I make changes to make the menu look and link to where I want it?
btw, no working knowledge of php but I learn fast.
Thanks!