Viewing 15 replies - 1 through 15 (of 16 total)
  • Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    What page are you asking about? Are you able to post a link to the page in question?

    What steps have you taken in order to resolve this?

    It is very possible that the stylesheet isn’t being loaded properly or it is missing styling in general.

    Thread Starter ClinicalCohesion

    (@clinicalcohesion)

    http://www.clinicalcohesion.com/what-is-clinical-cohesion/

    All of those indented should be bullet’s.

    I fount the RTL stylesheet (rtl.css) and the code for lists reads:

    /* =Lists
    -------------------------------------------------------------- */
    ol,
    ul {
    	margin-right: 2.35em;
    }

    I have entered in code in this to say circle, disc, etc and its not doing it for me.

    Idk where to go next?

    Thank you for your time

    Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Taking a quick look at the markup shows me that it is being styled by:

    ol, ul {
        list-style: none;
        margin: 0 1.5em 1.5em 0;
        padding-left: 2em;
    }

    That is from the style.min.css stylesheet. That is from the core/css folder. Looking a little closer it appears you are not using a child theme? I’m not too familiar with the theme but if it has a custom CSS section you can use the above code to change the list-style to what you would like. If not you can add it to your child theme’s style.css file.

    The rtl.css is used for right-to-left styling which is not currently being used by your site. It is loaded for languages that are read rtl. 🙂

    Any further questions, feel free to ask. 🙂

    Thread Starter ClinicalCohesion

    (@clinicalcohesion)

    This still did not work:

    Here is the CSS code:(ANY MORE IDEAS?)

    Thank you
    [Moderated]

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    The CSS is already available to us from your website, you don’t need to post it here. Who’s going to read a thousand lines of CSS anyway.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    So, where did you add Jose’s code modifications?

    Thread Starter ClinicalCohesion

    (@clinicalcohesion)

    Sorry about that, didn’t know you had access to it.

    I added them at the bottom originally and saved it and cleared cache and still did not get bullets to appear.

    Is there a specific location to paste it?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    To the bottom of what?

    Thread Starter ClinicalCohesion

    (@clinicalcohesion)

    The CSS

    add something like this via a custom CSS plugin or to style.css of a child theme:

    #content ul { list-style-type: disc; }

    generally review http://www.w3schools.com/css/css_list.asp

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    To which?

    I’m not too familiar with the theme but if it has a custom CSS section you can use the above code to change the list-style to what you would like. If not you can add it to your child theme’s style.css file.

    Thread Starter ClinicalCohesion

    (@clinicalcohesion)

    #content ul { list-style-type: disc; }

    made the bullets appear, is there anyway to do multiple styles?

    on the edit page I have discs and then indented again to white discs.

    Thanks for your time. Sorry I am a rookie

    yes is there a way..

    you can use class..

    example

    <ul class="style1">
      <li>...</li>
      <li>
        <ul class="style2">
          <li>...</li>
          <li>...</li>
          <li>...</li>
        </ul>
      </li>
      <li>...</li>
      <li>...</li>
    </ul>
    then on your CSS code you can have
    .style1{your style code here!!!}
    .style2{your style code here!!!}

    Thread Starter ClinicalCohesion

    (@clinicalcohesion)

    how do I set the styles?

    Thread Starter ClinicalCohesion

    (@clinicalcohesion)

    On my first page the bullets are still not showing up. Any thoughts?

    http://www.clinicalcohesion.com/home/

Viewing 15 replies - 1 through 15 (of 16 total)

The topic ‘Bullet Lists’ is closed to new replies.