XF 1.2 Text color change and "Home" deletion

Andrew Banner

New member
Ive tried changing every text color available and still my page links persist to be this ugly yellow color.

Additionally how can I delete the original "home" page link from the navbar?

wardensofaether.com

Thanks in advance for any help.
 
You have the following defined in your CSS somewhere:
Code:
.navTabs .navTab.PopupClosed .navLink {
  color: #EFEDE1 !important;
}

.navTabs .navTab.PopupClosed .navLink:hover {
  color: white !important;
}

You need to remove the code entirely or get rid of !important so you can overwrite it. I would recommend removing it.
 
Top Bottom