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: Remove rounded corner?

Home Forums Older releases 0.9.x Remove rounded corner? Re: Remove rounded corner?

#1555
admin
Keymaster

Hi,

If you are using the “sm-blue” theme, you will need to edit the following rules:

	.sm-blue {
		...
		-moz-border-radius:8px;
		-webkit-border-radius:8px;
		border-radius:8px;
		...
	}

	...

	/* round the left corners of the first item for horizontal main menu */
	.sm-blue > li:first-child > a {
		-moz-border-radius:8px 0 0 8px;
		-webkit-border-radius:8px 0 0 8px;
		border-radius:8px 0 0 8px;
	}

like this:

	.sm-blue {
		...
		-moz-border-radius:0 0 8px 8px;
		-webkit-border-radius:0 0 8px 8px;
		border-radius:0 0 8px 8px;
		...
	}

	...

	/* round the left corners of the first item for horizontal main menu */
	.sm-blue > li:first-child > a {
		-moz-border-radius:0 0 0 8px;
		-webkit-border-radius:0 0 0 8px;
		border-radius:0 0 0 8px;
	}

Let me know if you still have any troubles.

Cheers!