• Resolved [email protected]

    (@martinardenpartnershipcom)


    Hovering over the page titles results in two sets of curly brackets (like these { } ) appearing around the title.

    I’d prefer it if the title word simply changed colour to indicate a hyperlink. How can I remove the curly brackets?

    Thanks

    Martin

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Martin, assuming you are using a child theme you can add this to your child style.css:

    #header-menu a:hover {
    color:black;
    }

    The code above will make the hover black.

    #header-menu li:hover > a:after,
    #header-menu li.current_page_item:after {
    	display: none;
    
    }
    
    #header-menu li:hover > a:before,
    #header-menu li.current_page_item:before {
    	display:none;
    }

    And the code above will remove the curly brackets.

    compute4christ

    (@compute4christ)

    #header-menu li:hover > a:after,
    #header-menu li.current_page_item:after {
    display: none;

    }

    #header-menu li:hover > a:before,
    #header-menu li.current_page_item:before {
    display:none;
    }
    And the code above will remove the curly brackets.

    I’m not using a child theme and I used the above code and it did not work.

    How do I remove the curlies if I’m not using a child theme?

    Version 2.2 has a new design option in the customizer to remove the curly brackets.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove curly brackets’ is closed to new replies.