Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Re: hover area in blue theme for top menu only covers half area

Home Forums Older releases 0.9.x hover area in blue theme for top menu only covers half area Re: hover area in blue theme for top menu only covers half area

#1821
admin
Keymaster

Hi, in the following file:

http://www.collinswebb.plus.com/therapy/style.css

find the following rule:

.jcw-layout-wrapper {
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
	position: relative;
	z-index: auto ! important;
}

and modify it like this:

.jcw-layout-wrapper {
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0;
	position: relative;
	z-index: auto ! important;
	clear: both;
}

This should fix the issue.

Cheers!