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.
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!