Jump to content

Ips layout header


craigf136

Recommended Posts

I've been trying to remove the layout header throughout the betas and RC's and I'm able to do it no problem, everytime. The issue I experience and I want to check if I'm doing something incorrectly is the following.

I copy this

#ipsLayout_header header {
	padding: 10px 0 125px 0;
	margin-bottom: -115px;
	background-color: {theme="header"};
}

To custom.css and I comment out the background-color

#ipsLayout_header header {
	padding: 10px 0 125px 0;
	margin-bottom: -115px;
	/**background-color: {theme="header"};**/
}

It doesn't work, so I have kept it within the custom css but commented out the css for it. I then go to the global css and comment out

/**background-color: {theme="header"};**/

The background color is gone, should this be read from custom.css? It appears to only read if I comment it out in the global css file. If not is it something I'm missing? I don't want to raise a bug if it's not a bug.

Link to comment
Share on other sites

You can only override CSS... what you trying to do is not possible.

If you want to remove the background color, this should be enough:

#ipsLayout_header header {
	background-color: transparent;
}

If the change doesn't stick, append the !important declaration. 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...