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?
Yes that semi-transparent horizontal line on my site
there where should be a title but i hide him and i cant hide that line.
@lukeratto It didnt work, this line is still visable π but thanks.
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;
}
@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.