Home Forums Pro Themes Travel Eye Pro How do I change color in page title?

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #52881
    Ashley Moss
    Participant

    How can I change the color in the page title to make it all one color? I want to make it all white letters. I figured how to do it in SiteOrigin page builder on the homepage, but all of the other pages have a different color first character. (http://staging.orlandotravelcompany.com/category/blog/)

    #53017
    wensolutions
    Keymaster

    Hello @lynaeash,

    To make all the letter of the title appear in same color for all the page paste below given CSS in Additional CSS .

    .page #custom-header .page-title:first-letter {
        color: #fff;
    }

    Hope this helps .

    Best Regards!!

    #53157
    Ashley Moss
    Participant

    Thank you! This works for all pages except the products & product categories. How can I change the page title for products as well?

    #53159
    Ashley Moss
    Participant

    NM figured it out. Here is the code for others!

    .woocommerce-page #custom-header .page-title:first-letter {
    color: #ffffff;
    }

    #53160
    Ashley Moss
    Participant

    Can you also explain how to change color of first letter on posts? I cannot figure this one out! Thanks. (http://staging.orlandotravelcompany.com/category/blog/)

    #53167
    wensolutions
    Keymaster

    Hello @lynaeash,

    Nice to hear that you figured out one of the issue by yourself.

    Now to change the color of first letter of the category page use below given CSS.

    .category h1.page-title:first-letter {
        color: #fff !important;
    }

    Hope this helps .

    Best Regards!!

    #53260
    Ashley Moss
    Participant

    Thank you for the very fast reply! I noticed this only works on post category. How can I also change the color of first letter on individual posts? (http://staging.orlandotravelcompany.com/new-weekly-cruise-deals-insider-news-aug-28-2017/)

    #53269
    wensolutions
    Keymaster

    Hello @lynaeash,

    To change the color of first letter on individual posts use below given CSS.

    .single h1.page-title:first-letter {
        color: #fff !important;
    }

    Hope this helps .

    Let us know if you have any confusion further .

    Best Regards!!

    #53474
    Ashley Moss
    Participant

    Excellent this did the trick! Thanks for the fast reply!

    #53763
    Ashley Moss
    Participant

    Hello! I also noticed the first letter of the title on the search page is a different color. How can I make this white to match the title?

    #53782
    wensolutions
    Keymaster

    Hello @lynaeash,

    To change the color of the first letter of the title of search page use below given CSS.

    .search h1.page-title:first-letter {
        color: #fff !important;
    }

    Hope this helps .

    Best Regards!!

    #53843
    Ashley Moss
    Participant

    Fantastic! Very much appreciate that you are so quick to respond and so helpful.

    #53914
    wensolutions
    Keymaster

    Hello @lynaeash ,

    Glad we could help. If you have any queries further, please write back to us and we will happily help you further.

    We would also really appreciate it if you could take some extra steps to review our theme free version at the WordPress repo here :

    https://wordpress.org/support/theme/travel-eye/reviews/#new-post

    Best Regards !!

    #53921
    Ashley Moss
    Participant

    Certainly! Happy to do that.

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.