Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #210694

    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 ?

    #211229

    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

    #211240

    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

    #211321

    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

    #212184

    Perfect !
    Thx :)

    #212193

    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…. ;(

    #212205

    Hey!

    Please try following code instead

    .footer_color { background-color: transparent; }

    Cheers!
    Yigit

    #212217

    that’s not working,
    but
    .footer_color .container{
    background-color: transparent;
    }
    and
    .socket_color .container{
    background-color: transparent;
    }

    works fine.
    thanks !!

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘stretched layout with background color under main txt container’ is closed to new replies.