I would like to learn how to remove the text link "home" from the top navigation. Because of the size of my logo it sits on top of the logo and I just want to retain the logo as the main page link.
I would like to learn how to remove the text link "home" from the top navigation. Because of the size of my logo it sits on top of the logo and I just want to retain the logo as the main page link.
Hey!
You could add this to the bottom of your style.css for the easiest fix.
.nav li:first-child { display: none; }
I'm sure there is another way, though I couldn't find it immediately so perhaps another support member will know.
Regards,
Noah
when I pasted the code at the bottom of the page it messed up the entire layout, however it worked perfectly when I pasted it in:
#top .nav li:first-child a{
border:none;
display: none
Thank you for the help
You must log in to post.