Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #713519

    The settings in General Styling no longer affect my socket (I think this is due to some of my meddling with the footer).
    Is there a way I can use Quick CSS and the !important thingy to style the socket menu so it’s more legible (#FFFFFF)?

    #713604

    Hey sabrinarubli!

    Can you post the link to your site? so we can inspect and probably give you the code that’s causing the issue. You can put the details in the “private content” section when you reply so only moderators can see.

    Best regards,
    Nikko

    #713885

    Sorry, I thought I included those details. See attached.

    #713906

    Hi,

    Please try the following in Quick CSS under Enfold->General Styling:

    .sub_menu_socket .avia-menu-text {
      color:#fff !important;
    }

    Best regards,
    Rikard

    #713911

    That’s great, Rikard. I suppose I can also add attributes for hover effects as well using this?

    What code could I use to address the same issue with the socket social icons?

    #714246

    Hi,

    Yes you should be able to target the hover using the code I gave you. Please try the following for the social icons:

    #socket .social_bookmarks li a {
      color:#fff !important;
    }

    Best regards,
    Rikard

    #714705

    Can I get a little help with the syntax for the a:hover?

    #714711

    Hey!

    Here is the css code for the menu links in the footer (hover):

    .sub_menu_socket .menu li a:hover .avia-menu-text {
        color: #000 !important;
    }

    This one is for the social icons in the footer (hover):

    #socket .social_bookmarks li a:hover {
        color: #000 !important;
    }

    Hope this helps :)

    Cheers!
    Nikko

    #714717

    Brilliant. Thank you.

    Last item on this ticket: The social_bookmarks fade on hover, whereas the sub_menu_socket links change color immediately. Can I achieve the same fade effect on the sub_menu_socket?

    #714728

    Hi!

    Try to add this inside Rikard’s code:

    
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    

    It should look like this:

    #socket .social_bookmarks li a {
      color:#fff !important;
      -webkit-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #714732

    Perfect. The Kriesi Support Team comes through once again! Thanks.

    #714738

    Hey!

    Glad we could help :)

    Best regards,
    Nikko

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Socket styling’ is closed to new replies.