Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Website Menu doesn't look right here, but does on Chrome

  • 4 replies
  • 1 has this problem
  • 1 view
  • Last reply by cor-el

more options

Hi. If you go to www.belosoftware.com/home, you can see that the menu is on the image and not visible vs Chrome where it looks good. Can youy please advise why that is and how to fix it?

Thanks.

Hi. If you go to www.belosoftware.com/home, you can see that the menu is on the image and not visible vs Chrome where it looks good. Can youy please advise why that is and how to fix it? Thanks.

All Replies (4)

more options

I have tried the page in Chromium, and it looks the same as in Firefox (wrong, but the same). Could you attach a few screenshots?

more options

If I make the window smaller to switch to mobile view then the left part of the menu items are hidden because of a margin: -50px; rule (in this case margin-left)

This same margin:-50px; rule seems to be hiding the menu (in this case margin-top)

Modified by cor-el

more options

@Mesko-

You can see the Menu bar beginning with home on the Chrome version, but not the firefox desktop version. On the firefox version, it's hidden in the image at the bottom.

more options

I think it is mainly the margin setting in this rule in style.css (1355) that is causing this:

.main-navigation ul {
	background: #fff;
	list-style: none;
	margin: -50px;
	padding: 0 1.5em;
	text-align: left;
}

This looks better for me:

.main-navigation ul {
	background: #fff;
	list-style: none;
	margin: 0 auto;
	max-width: 700px;
	padding: 0 1.5em;
	text-align: left;
}

Modified by cor-el