Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Try disabling the <ul> table and then giving it a margin: 0 auto style.
Hey, thanks Andrew. Where can i find the
table in the editor to do that? tried searching, but just did not see it.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Sorry I meant displaying* not disabling.
Do you have a place in the dashboard for CSS customisations?
there is an “editor” within the appearance section that allows me to edit the files that makeup the theme. Even within those, everything is mostly php, html etc. There is a style.css file, but it @imports the styling for the theme.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Install this plugin http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/
And use that to hold your CSS modifications:
.navigation-main ul {
display: table;
margin: 0 auto;
}
wow! The plugin is great! Thank you so much for the help, andrew!