Shape 5

Wordpress Club Themes => Oasis - Club => : CCOA March 24, 2016, 06:54:48 PM



: Size of Tab Show
: CCOA March 24, 2016, 06:54:48 PM
I've run into another problem. I can't seem to find a way to reduce the size of the "Tab Show". In the "Basic Options" of the widget, there is a field for width. That is set at 1300 and I would like to make the feature at least 25% smaller. But, I have tried to change the value in that field several times (all the way down to 500) and it makes no difference in the feature. How can I do this?

http://www.campconn.com/wpCCOA/


: Re: Size of Tab Show
: Tristan Rineer March 25, 2016, 06:52:35 AM
After looking at it with Firebug (http://getfirebug.com/), it appears that the width in the widget settings is being overridden by a width of 100% defined in CSS.

You can remove the override by looking for the following code in the css file for the widget ({plugin-folder}/s5_tabshow/styles.css) around line 146:

:
#s5_button_wrap0, #s5_tabshow_left, #s5_button, #s5_tabshow_right {
    width: 100% !important;
}

If you either remove or comment out the line for the width, it will start using the width defined in the settings.