Tagged: general styling, socket
-
AuthorPosts
-
November 17, 2016 at 11:39 am #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)?November 17, 2016 at 3:03 pm #713604Hey 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,
NikkoNovember 18, 2016 at 8:07 am #713885Sorry, I thought I included those details. See attached.
November 18, 2016 at 10:04 am #713906Hi,
Please try the following in Quick CSS under Enfold->General Styling:
.sub_menu_socket .avia-menu-text { color:#fff !important; }
Best regards,
RikardNovember 18, 2016 at 10:16 am #713911That’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?
November 19, 2016 at 5:45 am #714246Hi,
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,
RikardNovember 21, 2016 at 8:48 am #714705Can I get a little help with the syntax for the a:hover?
November 21, 2016 at 9:11 am #714711Hey!
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!
NikkoNovember 21, 2016 at 9:25 am #714717Brilliant. 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?
November 21, 2016 at 10:08 am #714728Hi!
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,
NikkoNovember 21, 2016 at 10:17 am #714732Perfect. The Kriesi Support Team comes through once again! Thanks.
November 21, 2016 at 10:48 am #714738Hey!
Glad we could help :)
Best regards,
Nikko -
AuthorPosts
- The topic ‘Socket styling’ is closed to new replies.