getgrav / grav-plugin-shortcode-ui

Grav Shortcode UI Plugin

Home Page:https://getgrav.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Possible to center tabs?

Endogen opened this issue · comments

Is it possible to center the tabs? Something like [ui-tabs position="centered" active="0" theme="lite"]would be nice

commented

you can center the tabs with some CSS:

.tabs-nav {
    text-align: center;
}

Thanks for the answer but i already tried to set that. Only file with that content is /user/plugins/shortcode-ui/scss/ui-tabs.scss and i tried to replace / insert it everywhere i could find .tabs-nav { but that didn't help. Sorry for the stupidity but i don't get how the whole thing works... Any chance you could explain it a bit deeper?

really you should but more specific CSS in your theme's CSS, don't put things in the ui-tabs.css as that will be overwritten with plugin updates...

body .tabs-nav {
    text-align: center;
}