Andrea,
Can you post a link to your site? 🙂
Gwen
(@collegecheese)
Got to your stylesheet. Use command->f (or ctrl->f if you are on PC) and search for “/” or ‘/’ and just erase the slash in the parenthesis. Or you could replace it w/ something like | if you wanted.
Pretty sure that’s how I did it!
Gwen
(@collegecheese)
#main-navigation .sf-menu > ul > li:after {
width: 6px;
float: left;
margin-top: 16px;
content: "";
display: block;
color: #ffffff;
font-size: 1.8em;
font-family: Arial, Helvetica, sans-serif;
}
See where it says content^^ that’s where it is! 🙂
Yeah! It worked, thank you so much!
Hi
What Gwen advised will perfectly work, but here I would like to add/suggest you to do the changes using child theme, so that this change along with any other changes made will remain preserved even after theme updates.
You can just add the below code to make this work, you dont need the rest.
main-navigation .sf-menu > ul > li:after {
content: "";
}
Hope it helps!
Thanks