Simon Active member Jun 6, 2013 #1 Where can I edit the text colour of the text in the Navbar. (Home, forums, members etc) I have changed it on hover and selected tab but cant find how to change the normal text colour. Thanks in advance
Where can I edit the text colour of the text in the Navbar. (Home, forums, members etc) I have changed it on hover and selected tab but cant find how to change the normal text colour. Thanks in advance
Shelley Well-known member Jun 6, 2013 #2 Simon said: Where can I edit the text colour of the text in the Navbar. (Home, forums, members etc) I have changed it on hover and selected tab but cant find how to change the normal text colour. Thanks in advance Click to expand... you can do this via Style properties > Header & navigation or go into EXTRA.CSS template and change the color by adding and changing the colour value to your preference. Code: .navTabs .navTab.PopupClosed .navLink { color: #A5CAE4; } Upvote 0 Downvote
Simon said: Where can I edit the text colour of the text in the Navbar. (Home, forums, members etc) I have changed it on hover and selected tab but cant find how to change the normal text colour. Thanks in advance Click to expand... you can do this via Style properties > Header & navigation or go into EXTRA.CSS template and change the color by adding and changing the colour value to your preference. Code: .navTabs .navTab.PopupClosed .navLink { color: #A5CAE4; }
Simon Active member Jun 6, 2013 #3 Thanks Shelley, That done it! I added to the Extra.css. Upvote 0 Downvote
Shelley Well-known member Jun 6, 2013 #4 Simon said: Thanks Shelley, That done it! I added to the Extra.css. Click to expand... you're welcome. If by offchance you want to alter the text on the navbar when the menu is open you would add the following Code: .navTabs .navTab.PopupOpen .navLink { color: #yourcolor; } for the selected tab would be Code: .navTabs .navTab.selected .navLink { color: #yourcolor;} Posting on the offchance you may require the code. Upvote 0 Downvote
Simon said: Thanks Shelley, That done it! I added to the Extra.css. Click to expand... you're welcome. If by offchance you want to alter the text on the navbar when the menu is open you would add the following Code: .navTabs .navTab.PopupOpen .navLink { color: #yourcolor; } for the selected tab would be Code: .navTabs .navTab.selected .navLink { color: #yourcolor;} Posting on the offchance you may require the code.