- Posts: 50
- Thank you received: 1
Backgroundcolor
-
ikkezelluf
Inactive member -
Topic Author
- Member
-
Less
More
11 years 8 months ago #31565
by ikkezelluf
Backgroundcolor was created by ikkezelluf
Maybe the answer is simple but I searched for hours and didn't find it: How do I change the backgroundcolor of a single page. e.g. I want one page with red background, the other black and so on.....
Thnx in advance
Thnx in advance
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 8 months ago #31569
by ivan.milic
Replied by ivan.milic on topic Backgroundcolor
Well in fact it's not so simple because body tag is from master layout. This would be some workaround:
any ware in content for particular page put HTML like this (you could use custom HTML module)
<span class="backgorund-mark" background="#0000FF" ></span>
#0000FF is example value, then in head section of index.php just before tag closing </head> add:
<script>
if(jQuery('.backgorund-mark')[0])
jQuery('BODY').css('background-color',jQuery('.backgorund-mark').attr('background'));
</script>
any ware in content for particular page put HTML like this (you could use custom HTML module)
<span class="backgorund-mark" background="#0000FF" ></span>
#0000FF is example value, then in head section of index.php just before tag closing </head> add:
<script>
if(jQuery('.backgorund-mark')[0])
jQuery('BODY').css('background-color',jQuery('.backgorund-mark').attr('background'));
</script>
The following user(s) said Thank You: ikkezelluf
Please Log in to join the conversation.
-
ikkezelluf
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 50
- Thank you received: 1
11 years 8 months ago #31573
by ikkezelluf
Replied by ikkezelluf on topic Backgroundcolor
But on your demo-site the pages "neighborhood" and "Gallery" have a different background color. Unfortunately I can't find what changes the background color of these pages......

Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 8 months ago #31583
by ivan.milic
Replied by ivan.milic on topic Backgroundcolor
Each article is placed in vertical order, and each article row gets row-X class , X starts for 0.
So for demo in layout.css we have:
div.row-2, div.row-4 {
background: none repeat scroll 0 0 #F6F6F6;
}
to paint 3rd ans 5th row (article).
So you just need to add css for your article row, for example:
div.row-3{
background:Red;
}
So for demo in layout.css we have:
div.row-2, div.row-4 {
background: none repeat scroll 0 0 #F6F6F6;
}
to paint 3rd ans 5th row (article).
So you just need to add css for your article row, for example:
div.row-3{
background:Red;
}
The following user(s) said Thank You: ikkezelluf
Please Log in to join the conversation.
Time to create page: 0.154 seconds