Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #942716

    Hi, I would like to change the icon box title from all-caps to “normal.” Should I change one of the headline fonts in advanced styling, or is there some Quick CSS I can use.

    Thanks!

    #942742

    this rule comes from shortcodes.css – but if you want only influence f.e. iconboxes with top icon we have to be more specific:

    .iconbox .iconbox_content .iconbox_content_title {
        text-transform: none !important;
    }

    otherwise f.e. if you like only to have that for icon on top:

    .iconbox.iconbox_top .iconbox_content .iconbox_content_title {
        text-transform: none !important;
    }

    try first without important ( this should always be an exception) – but sometimes it is necessary

    Postscriptum: are you chemistry ? is it a buckminsterfullerene?

    #942790

    Thanks, that worked perfectly.

    Another question: The icon box title and the icon link to a certain page. How can I make them change on hover, so the view knows they are links. I suspect this is in general styling, but I can’t find it. If there isn’t such a preference, can I use some quick CSS to somehow indicate these are links?

    Thanks

    #942979

    Hi,

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

    a.iconbox_icon:hover {
      background-color:red !important;
    }
    .iconbox_content_title a:hover {
      color:red !important;
    }

    Best regards,
    Rikard

    • This reply was modified 6 years, 5 months ago by Rikard.
    #943164

    Fabulous! Thank you.

    #943214

    Hi,

    I’m glad you were able to get this solved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Change icon box title’ is closed to new replies.