- This topic has 4 replies, 2 voices, and was last updated 5 years, 3 months ago by
Support Team.
- AuthorPosts
- February 21, 2018 at 2:34 am #5022
laurenc
ParticipantHello,
Is it possible to increase the font size for the trip names and dates when the trips are shown using the shortcode?February 21, 2018 at 2:49 am #5023laurenc
ParticipantAnd to also increase the font size of the trip titles & dates on the home page where they are displayed in the post filter section?
February 21, 2018 at 5:30 am #5031Support Team
KeymasterHello @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!!
February 21, 2018 at 1:02 pm #5105laurenc
Participantawesome!! 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’?
February 22, 2018 at 5:10 am #5132Support Team
KeymasterHello @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 🙂 .
- AuthorPosts
- The forum ‘WP Travel’ is closed to new topics and replies.