- Posts: 24
- Thank you received: 0
How to change Left Column Color to Transparent?
-
tenoch
Inactive member - Topic Author
- Member
Less
More
13 years 6 months ago #9128
by tenoch
How to change Left Column Color to Transparent? was created by tenoch
Hi
In template options, it only let me to introduce color numbers
My question is, how can I modify the code in my template, so only Left column background color remain transparent?
And other question, how to assing a background image to that column?
Thanks
Regards
In template options, it only let me to introduce color numbers
My question is, how can I modify the code in my template, so only Left column background color remain transparent?
And other question, how to assing a background image to that column?
Thanks
Regards
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 6 months ago #9140
by ivan.milic
Replied by ivan.milic on topic Re: How to change Left Column Color to Transparent?
Hi,
classes column_left_top and column_left_bottom hold background color for that. You can override them.Put your definitions at the bottom of template_css.css
.column_left_top
{
...
}
.column_left_bottom
{
...
}
classes column_left_top and column_left_bottom hold background color for that. You can override them.Put your definitions at the bottom of template_css.css
.column_left_top
{
...
}
.column_left_bottom
{
...
}
Please Log in to join the conversation.
-
tenoch
Inactive member - Topic Author
- Member
Less
More
- Posts: 24
- Thank you received: 0
13 years 6 months ago #9160
by tenoch
Replied by tenoch on topic Re: How to change Left Column Color to Transparent?
Hi
It did not worked
I tried this code:
.column_left_top
{
background-color:transparent;
}
.column_left_bottom
{
background-color:transparent;
}
But it still show color
Thanks
It did not worked
I tried this code:
.column_left_top
{
background-color:transparent;
}
.column_left_bottom
{
background-color:transparent;
}
But it still show color
Thanks
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 6 months ago #9175
by ivan.milic
Replied by ivan.milic on topic Re: How to change Left Column Color to Transparent?
Ok do this:
.column_left,.column_left > * , .column_left > * > *
{
background-image:none!important;
background-color:transparent!important;
}
.column_left,.column_left > * , .column_left > * > *
{
background-image:none!important;
background-color:transparent!important;
}
Please Log in to join the conversation.
Time to create page: 0.185 seconds