• Resolved talheimer

    (@talheimer)


    Hello there,

    I want to remove on my website the white border/margin/padding on the left and right. I already tried some css, but it doesn’t work.

    Can somebody help me?

    website: http://www.talheim.at

    Many thanks,
    Hannes

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

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then install this Custom CSS Manager plugin http://ww.wp.xz.cn/plugins/custom-css-manager-plugin

    Then use its “CSS Code” section of the dashboard to hold your CSS modifications:

    Alternatively use your Child Theme style.css file to hold your CSS modifications:

    body .fusion-header,
    body #main,
    .vc_col-sm-12   {
        padding: 0;
    }
    
    body .fusion-row,
    .vc_col-sm-12 .vc_row  {
        margin: 0;
    }
    
    body .fusion-header-wrapper .fusion-row,
    body #main .fusion-row {
        max-width: 100%;
    }

    You should contact your theme’s vendors/ authors for help in future. This is not a robust solution.

    Thread Starter talheimer

    (@talheimer)

    Hello Andrew,

    thank you very much. If I use

    [ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]

    .fusion-header {
        padding: 0;
    }
    
    .fusion-row {
        margin: 0;
    }
    
    body .fusion-header-wrapper .fusion-row,
    body #main .fusion-row {
        max-width: 100%;
    }
    
    body #main {
         padding: 0;
    }

    it works fine.

    Thank you!

    padding: 0; margin: 0;

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Padding Left / Right’ is closed to new replies.