Remove price from homepage slider?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #4897
    laurenc
    Participant

    Hello,
    Is there a way to hide the price on the homepage slider?
    Also, is there a way to change the colour of:
    – the menu button on the top right corner
    – the text hover colour in the post filter section of the homepage
    Thanks!

    #4898
    fwilliams
    Participant

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    .places-box h5 {
    visibility: hidden;
    }

    #4905
    laurenc
    Participant

    Hmm unfortunately that didn’t seem to work

    #4912
    Support Team
    Keymaster

    Hello @laurenc,

    All of your queries have been answered below:

    Is there a way to hide the price on the homepage slider?

    Ans: To hide the price on the homepage slider add below-given CSS in Additional CSS.

    .featured-slider-contents i, .featured-slider-contents .wp-detail-review-wrap {
    display: none;
    }

    Ans: To change the color of the menu button at top right corner use below given CSS.

    .main-navigation ul li.menu-btn a {
        background: #5cc4ef;
    }

    Ans: To change the text hover color in the post filter section of the homepage use below given CSS.

    #filters li span:hover {
        color: #3ea5d0;
    }

    You can change the color code as per your requirement.

    Hope this helps.

    Best Regards!!

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