Home Forums Pro Themes Signify Pro Signify Pro – URL & page name issues

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #142587
    Stern Chic
    Participant

    Hello there,

    I would like help on the following two issues:

    1) Remove URL underline color entirely: I do not want a URL underline on any page.

    2) Remove the title of a page which is automatically displayed in the page body below the header.

    I tried this code, however nothing changed (even after purging the cache): .header-content h1.page-title { display: none; }

    Thank you for you help 🙂

    #142601
    Psink
    Keymaster

    Hello Stern Chic

    Can you please share your site URL. It would be easy to inspect and give you valid CSS

    Regards,
    Psink

    #142613
    Stern Chic
    Participant

    illuminated.cc

    The URL issue is not only that I cannot remove the orange underline, but that it also changes the active url text color to orange – which I would prefer it not to do.

    The page name in the body under the header is not needed.

    Thank you again for your help 🙂

    #142656
    Psink
    Keymaster

    Hello Stern Chic

    Here we have a few CSS to fix the issue that you are dealing with

    CSS To remove page name under the header

    
    .singular-content-wrap article header.entry-header {
        display: none;
    }
    

    CSS To remove underline for link

    
    .entry-content a:not(.more-link):not(.button), .entry-summary a:not(.more-link):not(.button), .ew-about a:not(.more-link):not(.button), .widget_text a:not(.more-link):not(.button) {
        text-decoration: none !important;
    }
    

    To Add in the theme
    Please Go to Admin Panel >> Appearance >> Customize >> Additional CSS, here paste above CSS then published

    Hope this helps

    Regards,
    Psink

    #142744
    Stern Chic
    Participant

    Dear Psink,

    Thank you that worked wonderfully! It’s looking good!

    I have one more issue, if you could help me.

    Now the URL underline in orange is gone, however the url link text is still orange. I would like my url text to be any color I choose. Is there a way to change this?

    Thanking you in advance!

    Best,
    SC

    #142749
    Psink
    Keymaster

    Hello Stern Chic

    Yes, you can change that color too. Just add this CSS as you have done before, and change the color code as per your requirement

    
    .singular-content-wrap .entry-content a:not(.more-link):not(.button):not(button):not(.wp-block-button__link), .singular-content-wrap .entry-summary a:not(.more-link):not(.button):not(button):not(.wp-block-button__link) {
        color: #9b51e0 !important;
    }
    

    Have a good day

    Regards,
    Psink

    #142866
    Stern Chic
    Participant

    Thank you Psink,

    This is much appreciated!

    Best,
    SC

    #142896
    Psink
    Keymaster

    you’re welcome

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