Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1402425
    hwolfe
    Participant

    Hi, all! I have an events widget on the home page of a site that is pulling the styling from my theme. I need to be able to change that font size on the event to something much smaller. (It is the Upcoming Events area)

    Can you help? Ideally, I would like to have Upcoming Events stay the size it is, and have the actual event font size be smaller.

    Thank you!

    #1402427
    hwolfe
    Participant
    This reply has been marked as private.
    #1402784
    Christopher
    Moderator

    Hi there,

    Please add following code in Customize -> Custom -> Global CSS :

    .x-widget-area .h-widget {
        font-size: 15px;
    }
    .x-widget-area #vsel {
        font-size: 8px;
    }
    
    .x-widget-area .vsel-widget-link {
        font-size: 10px;
    }

    Hope that helps.

    #1403359
    hwolfe
    Participant

    That worked perfectly! I need to change the case on the font so I added a text-transform command, but it only worked on “upcoming events”. What did I do wrong on the #vsel line of code?

    .x-widget-area .h-widget {
        font-size: 20px;
        text-transform: capitalize;
    }
    .x-widget-area #vsel {
        font-size: 10px;
        text-transform: capitalize;
    }
    
    .x-widget-area .vsel-widget-link {
        font-size: 10px;
    }

    Thank you!!

    #1403595
    Christopher
    Moderator

    Hi there,

    Please add this code :

    #vsel .vsel-meta-title {
        text-transform: capitalize;
    }

    Hope it helps.

  • <script> jQuery(function($){ $("#no-reply-1402425 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>