• Resolved KatrineDS

    (@katrineds)


    Hi,

    I want to display the label AFTER the SoMe icon in the social menu in the top header – so e.g.

    [X] INSTAGRAM [X] FACEBOOK

    [X] = icon btw

    It must be a CSS thing – that as default hides the label. How can I undo this?

    • This topic was modified 5 years, 8 months ago by KatrineDS.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey @katrineds

    Go to

    Appearance > Customize > Flash Theme Options > Top Header Settings

    Choose Social Menu from the dropdown and Under Top header text content, you can place your code to display both icon and label.

    Follow this link to learn more:
    https://docs.themegrill.com/flash/

    Do let us know for further queries.

    Best Regards,
    ThemeGrill

    Thread Starter KatrineDS

    (@katrineds)

    I know – but I use the text content for right content and social menu for the left content. I need the label from the menus to be visible after the icons.
    It’s just some CSS I think.

    I have the following (I use the social menu for phone and mail):

    .social-menu li a[href*="mydomain.com"]::before {
    content: "\f0e0 info@mydomain.com"!important;
    color:#000;
    font-size:15px;}

    It’s almost enough. Problem is that if I set font-family to Poppins (like the rest of the site) the icons don’t work. If I set it to Fontawesome, the text info@mydomain.com is some ugly serif font.

    Can you help me fix the CSS – perhaps give me a hint on making the text part with :after CSS?? Any help would be appreciated! 🙂

    Thread Starter KatrineDS

    (@katrineds)

    I found it myself.

    .social-menu li a[href*="mydomain.com"]:after {content: "info@mydomain.com"!important;color:#000;font-size:15px;font-family:Poppins;}
    
    .social-menu li a[href*="mydomain.com"]::before {
        content: "\f0e0  "!important;color:#000;font-size:15px;}

    If anyone needs the same fix.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Text after icon in social menu in top header’ is closed to new replies.