1. Is it possible to have background color under txt in a stretched layout theme ?
http://www.repromoselle.com/wordpress/ and http://www.repromoselle.com/wordpress/contact/
I try with this css :
.container {
background-color: rgba(255, 255, 255, 0.7);
padding-left: 15px;
padding-right: 15px;
}
But it moves éléments to the right (RECYCLE THAT box, google map)
2. If it’s not possible, is it possible in a boxed layout theme to have a stretched header layer slider, google map ?
Hi ceubri!
Can you post a screenshot and show how you would like it to look? I am not sure if i understood you correctly but it sounds doable
Best regards,
Yigit
see green indications :
for question 1 ( stretched layout): http://imagizer.imageshack.us/v2/800x600q90/854/l9og.jpg
question 2 ( boxed layout): http://imagizer.imageshack.us/v2/800x600q90/856/45×9.jpg
thanks
Hey!
1.) Please try this, remove browser cache then reload the page a few times after:
@media only screen and (min-width: 1140px) {
.responsive .container {
width: 1060px;
}
}
.container {
width: 940px;
padding-left: 15px;
}
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .container {
width: 712px;
}
}
@media only screen and (max-width: 767px) and (min-width: 480px) {
.responsive .container {
width: 458px;
padding: 0 15px;
}
}
2.) It’s not possible to have a full width layer slider using the Boxed Layout.
Regards,
Ismael
Perfect !
Thx :)
Sorry, but is it possible to change the color of the footer?
I try this :
.container_wrap footer_color .container{
background-color: transparent !important;
}
But nothing append…. ;(
Hey!
Please try following code instead
.footer_color { background-color: transparent; }
Cheers!
Yigit
that’s not working,
but
.footer_color .container{
background-color: transparent;
}
and
.socket_color .container{
background-color: transparent;
}
works fine.
thanks !!