getgrav / grav-plugin-shortcode-ui

Grav Shortcode UI Plugin
https://getgrav.org
MIT License
47 stars 11 forks source link

Possible to center tabs? #7

Closed Endogen closed 7 years ago

Endogen commented 8 years ago

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

cord commented 7 years ago

you can center the tabs with some CSS:

.tabs-nav {
    text-align: center;
}
Endogen commented 7 years ago

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?

rhukster commented 7 years ago

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;
}