Shape 5

Joomla Club Extensions => Tab Show V2 - Club => : mikefitz August 05, 2013, 02:44:52 PM



: UL and OL not showing in Tab module
: mikefitz August 05, 2013, 02:44:52 PM
List symbols are not displaying in the Tab module. They display in articles on the site, and in the editor, just not in the TAB module
Go to http://thresholdtestingsite.com/hlc/ and see the WHAT TEST BULLETS tab. Page source shows the code.

I saw another post for this where the guy said he figured it out, but didn't say what he did.

I have the Traction template.

Thanks


: Re: UL and OL not showing in Tab module
: jonahh August 06, 2013, 12:49:39 PM
Hello,

You can change the padding below and this will fix this:

#s5_button_content .moduletable {
    padding: 30px 20px 0 !important;
}
template.css (line 1186)

Regards,


: Re: UL and OL not showing in Tab module
: mikefitz August 06, 2013, 02:23:26 PM
Thanks. That took care of the UL, but the OL is displayed like UL - discs instead of numbers.


: Re: UL and OL not showing in Tab module
: jonahh August 07, 2013, 01:32:55 PM
To fix this open up the styles.css file in the tab show folder and remove all list-style references in it for li, ol and ul

and then also remove list style here below in editor css file in templates css folder:

.module_round_box_outer ul, .moduletable ul {
    list-style: none outside none;
}
editor.css (line 11


: Re: UL and OL not showing in Tab module
: mikefitz August 24, 2013, 12:40:31 PM
There are a lo of references to UL OL and LI in the TAB styles.css, but all of them refer to objects like
#s5_button_content li
#container_bd #s5_button ul li img {
#s5_button_frame ul {
etc.

When I remove them all, everything gets totally trashed. I need more guidance please.


: Re: UL and OL not showing in Tab module
: jonahh August 26, 2013, 01:19:39 PM
Make sure you aren't leaving tags hanging, for example an opening or closing tag but really you shouldnt have to remove anything except this css here

 list-style: none outside none;

so it should end up looking like

.module_round_box_outer ul, .moduletable ul {
}



: Re: UL and OL not showing in Tab module
: mikefitz September 15, 2013, 11:11:22 AM
Sorry about the delay in responding. I cannot find that code in the tabs styles.css nor the main template css.


: Re: UL and OL not showing in Tab module
: jonahh September 16, 2013, 12:11:19 PM
its in the editor.css file