Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #334127

    Is there a way to make the header and footer go more like 100% like when you create a grid row.

    The header and footer seem to be limited to less than 100% width while content areas like a grid row or a full screen slider or a masonry portfolio can grow and and shrink wider.

    Would like the header and footer to do the same.

    #334894

    Hey rgruber!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #socket .container {
    margin: 0;
    }

    Cheers!
    Yigit

    #425695

    Hi there. That bit of CSS seems to make the socket full-width, but not the footer. I too am trying to get my 5 footer widget to use more of the full width of the footer area and not be restrained to the page size. Do you know how I can accomplish this? Thanks!

    #425878

    Hi!

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Regards,
    Rikard

    #426860

    Hello,

    I am actually looking for the same information. I would also like my Footer to be full width.

    There is a setting for the header to display full width, however there is not one for the header.

    Here is a URL: wp.fluidray.com

    Thanks

    #427543

    Hi!


    @haydaw
    , You currently do not have a footer displayed but you do have a socket. Are you referring to that? If so then add this to your custom CSS.

    #socket .container {
      max-width: 100% !important;
    }

    Best regards,
    Elliott

    #427548

    i thought the socket was no problem he is looking for the footer:

    #footer .container {
        max-width: 100% !important;
    }
    #427744

    Hello,

    Thanks for the feedback, however unfortunately none of the code listed above seems to be working.

    Here is an image of what needs to be accomplished; Header is 100% width, footer needs to align with the header (~96%)

    I’ve attempted the following codes, with no avail:

    
    #socket .container {
    margin: 0;
    }
    
    #socket .container {
    max-width: 100% !important;
    }
    
    #footer .container {
    max-width: 100% !important;
    }
    
    #socket .container {
    margin: 0;
    max-width: 100% !important;
    }
    
    

    Thanks!

    #427934

    Hi!


    @haydaw
    let us stick to your topic here – https://kriesi.at/support/topic/issues-with-custom-css-not-working/

    Regards,
    Yigit

    #427990

    I’m trying to get the foot widgets to display full width. Currently there is a lot of space on either side of the 5 columns in the footer: http://chaseflooring.woodywoodshop.com/

    UPDATE: Actually, looks like the CSS from @Guenni007 works. I thought I had tried that exact code before with no success. Problem solved. Thanks, guys.

    • This reply was modified 9 years, 3 months ago by misterwoodman.
    #428162

    by the way : for small screenwidth it might be nice to get rid of the fifth ! (the tag for that might be media queries)

    For example: under 580px a one column look

    @media only screen and (max-width: 580px){
    .flex_column.av_one_fifth {
        float: none;
        width: 95%;
        margin: 0;
    }
    }

    or you only change to a two column look:

    @media only screen and (max-width: 580px){
    .flex_column.av_one_fifth {
    div .av_one_fifth {
        margin-left: 6%;
        width: 44%;
    }
    }
Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Can you make header and footer stretch full width like a grid row?’ is closed to new replies.