Hi Jeff,
I’m just a WordPress user like you but I wanted to see if I could help. Do you have the source code for the website?
if you’ve used Appearance >> Customise >> Additional CSS
then you may want to start there
remove the code you’ve added
look in inspector to see what the elements are
make changes in inspector
if okay, add to Additional CSS
if this is not the case, perhaps your CSS code could help
Many thanks for replying!
Deereviewer, I’m a bit thick – so have to ask ‘what do you mean by /where do I find the “source code” for the website?
Sorry for the delay but did you use a WordPress theme? But to check the source code, usé hooflr chrome and go view, the click on source code. It’s literally the matrix so we can see if something is wrong.
Moderator
Jan Dembowski
(@jdembowski)
Forum Moderator and Brute Squad
Don’t post more than 10 lines, it does not work here.
If you want to show the source code just share a link to the page. Is it the one above in your initial post?
Does anything come to light via the above link? Thanks.
Jeff, I clicked on the link, I’m using my phone but the background looks green and I can see the menu bar. Are you still seeing something different?
Thanks for posting Deereviewer.
On the iPad and phone the menu bar was intended to be within the White rectangle at the top of the page. (My phone is showing a menu totally separate from the White rectangle and the iPad shows the White rectangle with what appears now to be White font – instead of black ).
Hi Jeff,
In your style.css, this is what’s making the menu links white:
#header .nav ul li a{
color:#FFF;
If you change “FFF” to “000” at line 1231 it should take care of that issue.
The other issue is because your header has a max-width that is smaller than the width of the container inside it. In the same style.css, comment out line 331 to correct this issue, like this:
/*max-width: 1130px;*/
Let me know if you have any trouble.