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.
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
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
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.
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