• Resolved milog

    (@milog)


    My client loves the slider but wants the sidebar to “move down” so the slider can run that much bigger. Any ideas on how this can be done and retain the Responsive-ness of the theme? Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    How familiar are you with CSS? Do you know how to use a browser developer tool like Firebug?

    you’d have to remove that left sidebar and move the logo, etc to the header.

    or change the home page template so the slider comes before the #main-content div.

    Not sure how you’re intending to change the layout of the rest of the page.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    you’d have to remove that left sidebar and move the logo, etc to the header.

    I wouldn’t say that, you could achieve this with about 5 css styles.

    Thread Starter milog

    (@milog)

    Wow, thanks for the quick replies!

    Andrew, I do understand CSS but not very well. Oh, and I should have mentioned that the site is running a child theme of Twenty Fourteen with the plugins Fourteen Colors, Fourteen Extended, Styles & Styles: TwentyFourteen.

    What five CCSes will get the job done? Thanks!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    .main-content {
        float: none;
    }
    
    .search-box-wrapper,
    .featured-content {
        padding-left: 0;
    }
    
    #secondary {
        margin: 0;
    }
    Thread Starter milog

    (@milog)

    Cool, thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Twentyfourteen: Can we make the slider the full width of the screen?’ is closed to new replies.