Tagged: ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1005081

    Hi,

    how can I add the word “Quick links: ” in front of the footer menu (in the same line as the footer menu items) please?

    Thanks.

    #1005102

    Hey Gitte,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #1005104

    Hey Gitte,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    /* CSS - Menu Title */
    
    .sub_menu_socket:before {
        position:absolute;
        content:'Quick Links ';
        width : 70px;
        transform:translateX(-100%);
    }
    
    
    

    Best regards,
    Vinay

    #1005107

    Thanks a lot, Vinay, it works, but “Quick Links” is not quite inline with the menu items, how can I change this please?
    “Quick Links” is a little bit below the menu items.

    #1005124

    Hi Gitte,

    Try the code like this:

    
    .sub_menu_socket:before {
        position: absolute;
        content: 'Quick Links: ';
        width: 70px;
        transform: translateX(-100%);
        color: #ff0000;
        margin-top: -2px;
    }
    

    Best regards,
    Victoria

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.