Viewing 15 posts - 1 through 15 (of 42 total)
  • Author
    Posts
  • nivento Friend
    #161897

    Hallo everyone!

    I have installed a J! 1.6 with T3 2.0 for this version and with the BLANK TEMPLATE modified via CSS for my customer request.

    When i have a necessity to insert a list (with dot or number) this list not appear…. why? All the ul li ol tag is correctly….someone have this problems?

    khoand Friend
    #383111

    Hi,
    Because of CSS of T3. Do you give me a link to your page that you need to insert a list?

    mbcors1986 Friend
    #384337

    Hello I got the same problem on JA communtiy under Joomla 1.6.1.

    Have a look on the attached screenshot. The text with the pink mark is an unordered list.
    Here is the code associated:

    <ul class="ja-typo-list list-star">
    <li>
    <span style="white-space: nowrap;">Programs you can attend (on-boarding, training, mobility…)</span></li>
    <li>
    <span style="white-space: nowrap;">Career opportunities within the company</span></li>
    <li>
    <span style="white-space: nowrap;">Organization and procedures</span></li>
    </ul>

    I tried without success to overide the css.

    How to do to remove that.

    Thanks a lot.


    1. JACommunity_Nobullet
    khoand Friend
    #384422

    Hi,
    You replace your code

    <ul class="ja-typo-list list-star">
    with


    <ul class="ja-typo-list list-star" style="list-style-type:circle">

    mbcors1986 Friend
    #384451

    Thnaks. Sorry I forgot to remove my style test. Actually I need simple bullet and class defined. Simple UL and LI tags. Our users don’t how to do that.
    How to clear the JA Comm CSS and come back to a simple HTML usage? Here

    <ul>
    <li>Programs you can attend (on-boarding, training, mobility…)</li>
    <li>Career opportunities within the company</li>
    <li>Organization and procedures</span></li>
    </ul>

    Should be presented simply like that:

    • Programs you can attend (on-boarding, training, mobility…)
    • Career opportunities within the company
    • Organization and procedures</span>
    khoand Friend
    #384545

    Hi,
    – To override css, just put

    style="list-style-type:circle"
    into ul tag.
    – If you want to represent like you said, you must know where ul tag is in. So you give me a page contain HTML code

    michelgofman Friend
    #384837

    I have a similar issue.
    I converted a site from J15 to J16.
    I had a customized JAT3 template, working Ok.
    Now in J16 no bullets anywhere. Something happend to the CSS. The other templates like Atomic work ok.
    Tampering with local coding wont help.
    I tried to reinstall T3, no luck. :((
    Thank you for your help.

    Don Lee Friend
    #385128

    <em>@michelgofman 232239 wrote:</em><blockquote>I have a similar issue.
    I converted a site from J15 to J16.
    I had a customized JAT3 template, working Ok.
    Now in J16 no bullets anywhere. Something happend to the CSS. The other templates like Atomic work ok.
    Tampering with local coding wont help.
    I tried to reinstall T3, no luck. :((
    Thank you for your help.</blockquote>

    Post herein your site URL then someone might help you out!

    michelgofman Friend
    #385219

    <em>@Don Lee 232588 wrote:</em><blockquote>Post herein your site URL then someone might help you out!</blockquote>

    Thanks for the offer.
    This is the address : http://www.mgdevelop.eu/AFDMV016/fr/

    It seems there is something wrong in addons.css but I am not sure.

    Mike :-*


    1. Capture-AFDMV016-AFDM-la-Une-Mozilla-Firefox-Build-20110323162424
    Don Lee Friend
    #385388

    Hi Mike,

    What I’m seeing with the site is not like in your screenshot. However, you should try to change list-style value to inside

    Better remove the inline style (showing in firebug within the screenshot), then add this code in to template.css


    .items-more ol {
    list-style: disc inside none;
    }

    michelgofman Friend
    #389794

    <em>@khoand 229977 wrote:</em><blockquote>Hi,
    Because of CSS of T3. Do you give me a link to your page that you need to insert a list?</blockquote>

    I am still stuck.

    Here is the link : http://www.afdm.info/fr/afdm-nationale/les-formations/apres-les-permis/46-stage-de-perfectionnement-a-la-conduite-moto

    I do not understand your answer : T3 CSS should do something to format lists. It appears they don’t. I must miss one file or something like that. I tried with Firebug but did not scceed. May be you’ll be more lucky.

    Thanks again.
    Michel

    imrich Friend
    #389853

    I came here to search and seem to have the same issue.

    With Joomla 1.6.3 and JA Purity II, my UL (unordered lists) have no bullets!

    If I assign a different template to the same page, the bullets show up perfectly. If I use ja_purity_ii as the template, then I see no bullets!

    This occurs even if I display the default “Typography” page that comes with the Joomla install, or I use my own content.

    Any help or hints would be appreciated!

    Thanks
    Rich

    khoand Friend
    #389997

    <em>@michelgofman 238511 wrote:</em><blockquote>I am still stuck.

    Here is the link : http://www.afdm.info/fr/afdm-nationale/les-formations/apres-les-permis/46-stage-de-perfectionnement-a-la-conduite-moto

    I do not understand your answer : T3 CSS should do something to format lists. It appears they don’t. I must miss one file or something like that. I tried with Firebug but did not scceed. May be you’ll be more lucky.

    Thanks again.
    Michel</blockquote>

    Begin at line 38 of http://www.afdm.info/plugins/system/jat3/jat3/base-themes/default/css/template.css file


    .column p, .column pre, .column blockquote, .column h1, .column h2, .column h3, .column h4, .column h5, .column h6, .column ol, .column ul, .column dl {
    margin: 15px 0;
    padding: 0; <-- it mean padding-left:0px. ul tag need padding-left is about 30px to show "disc" icon
    }

    – You replace your code

    <ul style="list-style-type: disc;">

    with

    <ul style="list-style-type: disc;padding-left: 30px;">

    khoand Friend
    #389998

    <em>@imrich 238590 wrote:</em><blockquote>I came here to search and seem to have the same issue.

    With Joomla 1.6.3 and JA Purity II, my UL (unordered lists) have no bullets!

    If I assign a different template to the same page, the bullets show up perfectly. If I use ja_purity_ii as the template, then I see no bullets!

    This occurs even if I display the default “Typography” page that comes with the Joomla install, or I use my own content.

    Any help or hints would be appreciated!

    Thanks
    Rich</blockquote>

    Because purity_ii template redefine style ul tag. Could you give me a link to your website to solve it?

    Nick R JA JobBoard
    #390236

    Hi Guys,

    it seems to be a part of T3. I just have downloaded the newest version in combination with Teline IV.
    Have a look at the screenshot and you will see that the list is not working.
    There was no problem with prior T3 versions it is just the new one.
    There was/is already a ticket as well: TNZ-392-16235

    Cheers
    Nick


    1. bullets
Viewing 15 posts - 1 through 15 (of 42 total)

This topic contains 42 replies, has 11 voices, and was last updated by  dhellyniez 12 years, 7 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum