Font size for shortcode titles

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #5022
    laurenc
    Participant

    Hello,
    Is it possible to increase the font size for the trip names and dates when the trips are shown using the shortcode?

    #5023
    laurenc
    Participant

    And to also increase the font size of the trip titles & dates on the home page where they are displayed in the post filter section?

    #5031
    Support Team
    Keymaster

    Hello @laurenc,

    To increase the font size of the trip names and dates when displayed from the slider use below given CSS.

    .wp-travel-itinerary-items ul.wp-travel-itinerary-list .wp-travel-post-item-wrapper .post-title a {
        font-size: 16px;
    }
    .wp-travel-trip-time span {
        font-size: 14px;
    }

    Now to increase the font size of the trip titles & dates on the homepage use below given CSS.

    .post-item-wrapper .post-content h4 {
        font-size: 20px;
       }
    .wp-travel-trip-time span {
        font-size: 15px;
    }

    You can change the size as per your requirement.

    Hope this helps.

    Best Regards!!

    #5105
    laurenc
    Participant

    awesome!! Similarly, in the post filter section on the home page, is it possible to hide “All” (the trip types title) and increase the font size of the ‘Title’?

    #5132
    Support Team
    Keymaster

    Hello @laurenc,

    Yes, you can remove the All tab form the post filter section through the child theme.

    You can create the child theme manually or simply create the child theme using the plugin given below:

    https://wordpress.org/plugins/wp-child-theme-generator/

    After activating the child theme, in your child themes functions.php file paste below given code.

    https://gist.github.com/anonymous/4360121ec98d7214429d21c14f09ce70

    Now to increase the font size of the title use below given CSS in Additional CSS

    #filters li span {
        font-size: 18px;
    }

    Hope this helps.

    Best Regards!!

    Have a good day 🙂 .

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘WP Travel’ is closed to new topics and replies.