Hy i got 3 widgets (html) in my footer, how can i make a transparent white backround for each widget? Thx Dani
Hi There,
Thank you for writing in, what footer is this? Is this a standard footer or custom footer? If is it standard you can add this to Theme Options > CSS
.x-colophon.top .x-column.x-1-3 {
background-color: rgba(255, 255, 255, 0.5)
}
If custom footer, please provide us the site URL so we can take a closer look.
Cheers!
Hy thanks, that works fine. Is it possible that i can set there a margin at the left side? Thx. Dani
Hello There,
Setting a left margin might increase the width of the widget and will no longer display in 3 columns. Would you mind providing us the url of the site where we can find the footer widgets?
Thanks.
Hy the page isn´t online yet. what can i try or do should i send you Password?
Hi there,
You can try adding a padding instead like this:
.x-colophon.top .x-column {
padding-left: 30px;
}
Hope this helps.
Hy, it works. thx. is it possible to configure the widgets that they are all in the same size?
Hi there,
Please try this code:
@media (min-width: 768px) {
.x-colophon.top .x-column {
min-height: 400px;
}
}
Perfect! Thank you so much! You do a very good job! Greets Dani
You’re most welcome, Dani.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.