• Resolved panorka

    (@panorka)


    I have problem with hiding under-title line. I’ve tried everything from other sites, the one was:
    .page-header {
    border-top: none;
    border-bottom: none;
    margin-bottom: 5px
    }
    It didn’t work. This underline can be seen here: https://www.paked-pk.pl/dzialanie-firmy/ .

    Help me if you can, I really need to delete that line, It destroys my site concept.

    Thanks, PanOrka

Viewing 10 replies - 1 through 10 (of 10 total)
  • possible it’s not border? but link text-decoration: underline; ?

    .page-header {
    text-decoration: none;
    }

    ?

    lisa

    (@contentiskey)

    I am not sure which line you are referring to.
    The semi-transparent horizontal line?

    Thread Starter panorka

    (@panorka)

    Yes that semi-transparent horizontal line on my site

    Thread Starter panorka

    (@panorka)

    there where should be a title but i hide him and i cant hide that line.

    Thread Starter panorka

    (@panorka)

    @lukeratto It didnt work, this line is still visable ?? but thanks.

    Thread Starter panorka

    (@panorka)

    BTW im using customizer theme if its important.

    See if this works:

    .tc-header {border-bottom: none;}

    lisa

    (@contentiskey)

    it is a horizontal link <hr> not really a border or underline.

    if you want to remove all instances of display of the semi-transparent horizontal line-
    this can be added to your child theme CSS or in the customization area for CSS

    hr {
     display:none;
    }
    Thread Starter panorka

    (@panorka)

    @contentiskey thank you very much and others also ?? It worked:
    hr {
    display:none;
    }
    Now its fine thanks :D, its resolved.

    Ah, yes, I see that now. It’s so faint it doesn’t even show on some laptops. If you use

    hr {display: none;}

    all horizontal rules will be hidden on your site, which won’t be a problem if you’re not planning to use an <hr> anywhere else on your site.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘How to hide title underline ?’ is closed to new replies.