Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #349736

    Can you help me take out spacing on a frontpage by setting the css as applied to the homepage only.

    I have css ready which takes out the white spacing…

    .container {
        padding: 0 0px;
    }
    
    .content, .sidebar {
        padding-bottom: 0;
        padding-top: 7px;
    }
    

    If I add this to the Quick Styling CSS what do I need to add so it is only applied to the homepage?
    LINK TO HOMEPAGE HERE
    Image showing how it should look without the white spaces adjusted in the css above. …
    Website mockup for MayianneDinesen.dk

    #349896

    Hi Annemarie!

    Use this instead:

    .home .container {
        padding: 0 0px;
    }
    
    .home .content, .home .sidebar {
        padding-bottom: 0;
        padding-top: 7px;
    }

    Cheers!
    Josue

    #349984

    Woohoo, it looks perfect. Thanks Josue, learned another very valuable tip!

    #350060

    You are welcome Annemarie, glad to help :)

    Regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Only apply styling to home page’ is closed to new replies.