H2 Tags get white

Solved/Closed
yourbills.pk - Updated on Apr 15, 2024 at 05:40 PM
 yourbills.pk - 16 Apr 2024 à 15:43

Hello,

H2 font get white on my website https://yourbills.pk. Looking for a solution. 


Windows / Chrome 107.0.5621.0

Related:

1 response

HelpiOS Posts 15568 Registration date Friday 30 October 2015 Status Moderator Last seen 30 June 2026 1,880
15 Apr 2024 à 17:40

Hi,

Titles appear in white because the color regarding the element "h2 a" in your css code is specified to inherit. You should change it to initial !important; to fix the issue.
Here's the corrected version:

h2 a {
color: initial !important;
}

Let me know if this works for you.


yourbills.pk
16 Apr 2024 à 15:43

Thank you so much!