xForsa Posted April 6, 2015 Share Posted April 6, 2015 (edited) I got this little piece of code #index {background-image:url(../img/bg.jpg)} background: url(../img/bg.jpg); background-position:fixed; background-position:top; #index.header-container, .columns-container { background: none; } .header-container, .columns-container { background: #000; it's from theme5.css But the problem sits in .header-container, .columns-container { background: #000; i added this little piece because i only want the background to appear in the pages other than the index, does some kind of tag exist for this? i got 1 cms page and 1 category page i need to take care of Link:http://tinyurl.com/lyhzpee greets EDIT: Since no one is replying im guessing i didnt explain myself clear enough, Each page has it's own Id param , and i'm searching for a way to use the css style indicators like #category.12 or something Edited April 6, 2015 by xForsa (see edit history) Link to comment Share on other sites More sharing options...
dioniz Posted April 8, 2015 Share Posted April 8, 2015 Try to add .category-12, .cms-About-us{ your code here } 1 Link to comment Share on other sites More sharing options...
xForsa Posted April 10, 2015 Author Share Posted April 10, 2015 (edited) Try to add .category-12, .cms-About-us{ your code here } Worked for me! Thanks alot! this saves me a bunch! i used it like this: .category-3, .cms-About-us{ background: #000; } .category-12{ background: #000; } Edited April 10, 2015 by xForsa (see edit history) Link to comment Share on other sites More sharing options...
dioniz Posted April 11, 2015 Share Posted April 11, 2015 You can do it like this, to have a bit smaller file .category-3, .category-12, .cms-About-us{ background: #000; } Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now