Hi @kaigraves23,
The easiest way to override the CSS above is to add the CSS classes with some modification in the Customizer. Here are the steps you can take:
1. Navigate to Settings > Widget Columns and select the second option “Do NOT load the CSS in the <head>…”. This will remove the CSS classes stylesheet from the website so you can add them manually.
2. Navigate to Appearance > Customize > Additional CSS and add the following CSS styles:
.one-half,
.one-third,
.two-thirds,
.one-fourth,
.three-fourths,
.one-sixth,
.five-sixths {
float: left !important;
margin-left: 2.5641025641026% !important;
}
.one-half {
width: 48.717948717949% !important;
}
.one-third {
width: 31.623931623932% !important;
}
.two-thirds {
width: 65.811965811966% !important;
}
.one-fourth {
width: 23.076923076923% !important;
}
.three-fourths {
width: 74.358974358974% !important;
}
.one-sixth {
width: 14.529914529915% !important;
}
.five-sixths {
width: 82.905982905983% !important;
}
.first {
clear: both !important;
margin-left: 0 !important;
}
Now the columns classes will be added manually to the <head>
tag of your website with the !important
property to make sure they are not overwritten by your theme or other plugins.