Shape 5

Joomla Templates => Risen Hope - Club => : sterlingsr July 04, 2015, 01:26:00 PM



: Unordered List In Custom HTML Module Not Rendering Correctly
: sterlingsr July 04, 2015, 01:26:00 PM
An unordered list will not display correctly in a standard Custom HTML module whereas an ordered list works just fine. The same HTML works fine in an article.

I tried the same html in the Custom HTML Advanced module with the same result. Modifying classes had no impact on either module

http://ichnj.org/index.php/es/conocenos/iglesia-planter

Thank you!

HTML below

--------------------------
<h5>Experiencia ministerial:</h5>
<ul>
<li>Misionero, plantador de Iglesia, pastor, profesor de seminarios teol?gicos y profesor universitario</li>
<li>Casi tres d?cadas de experiencia ministerial en la cual ha "corrido todas las bases"</li>
<li>En el 1993 fue ordenado oficialmente al ministerio del evangelio</li>
</ul>
<p> </p>
<h5>Educaci?n:</h5>
<ul>
<li>BA de la Universidad Interamericana de Puerto Rico</li>
<li>MA en Estudios B?blicos y Teol?gicos de Luther Rice Seminary</li>
<li>PhD de Trinity Theological Seminary PhD (ABD) en Christian Management and Leadership de Trinity Theological Seminary</li>
</ul>


: Re: Unordered List In Custom HTML Module Not Rendering Correctly
: mikenicoll July 06, 2015, 11:45:00 AM
Hello,

Can you be more specific? I took a look at that page but the unordered list seems to be displaying properly.

Regards,


: Re: Unordered List In Custom HTML Module Not Rendering Correctly
: sterlingsr July 06, 2015, 08:28:26 PM
Hi, thanks for looking.

More specifically http://ichnj.org/index.php/en/about/church-planter

On the left hand side is a custom module and the html is the same as the bottom of the middle text. The middle text renders correctly and the left module with the same <ul> does not. If I change the left module <ul> to <ol> everything is fine. However I need <ul>. Hope that clarifies.

Thanks again,
Steve


: Re: Unordered List In Custom HTML Module Not Rendering Correctly
: mikenicoll July 07, 2015, 07:03:21 PM
Hello,

It looks like the list style is set to none in the following coding. Removing it should bring back the styling.

:
editor.css - line 10

.module_round_box_outer ul, .moduletable ul {
    list-style: outside none none;
}


: Re: Unordered List In Custom HTML Module Not Rendering Correctly
: sterlingsr July 08, 2015, 06:25:27 AM
Thank you. That fixed it.


: Re: Unordered List In Custom HTML Module Not Rendering Correctly
: mikenicoll July 08, 2015, 06:57:54 PM
NP :)