Hey,
I’m really new to this, but I’ll share my thoughts:
The underline is most likely caused by your active style. First you should search for a solution under APPEREANCE. Different themes offer different subcategories, and it’s quite likely you can find the solution there.
If not, you’ll have to edit css. I’m struggling with it too, but here’s what I would do:
>In your WP dashboard, go to Appereance -> editor. The style.css file should open by default
>Open your site in a second tab and start the developer’s tool (CTRL+SHIFT+I in chrome)
>Pick the magnifying glass (top left corner in chrome) and focus and click your menu. You will jump directly to the part where the menu is encoded. The highlighted line should look like this:
<div id=”SOMETHING” …
>Now go to the other tab with style.css editor open and ctrl+f search for your SOMETHING.
>Find a class that looks like:
#SOMETHING {
somecsscode;
}
It can also start with different symbols than #, but most likely will not
>Just find the line inside the brackets that causes the underline (you will be able to tell from the text, most likely “text-decoration: underline;”) and delete it. Then save the css and check if your problem is solved.
>Also keep in mind that there might be other segments looking like
#SOMETHING-somethingelse {
somecsscode;
}
If editing the main one doesn’t work, you will eventually have to try them all, but you should be able to solve your issue quite fast.
IF YOU DONT FIND YOUR #SOMETHING, it has to be in a different css page. Scroll down the list of files on the right from your wordpress editor window and try another css file.
Hope this helps ??
MALEJ P?TROS