Viewing 6 replies - 1 through 6 (of 6 total)
  • The visual editor is styled by the “editor-styles.css”.
    Your site is styles by the theme’s css. Check the theme for the “ol” and “ul” and see if they have “list-style: none”.

    Thread Starter akhilstyle

    (@akhilstyle)

    Thank you for your reply,

    in style.css is has the following:

    }
    body {
    line-height: 1;
    }
    ol, ul {
    list-style: none;
    }
    blockquote, q {
    quotes: none;

    This…

    ol, ul {
    list-style: none;
    }

    …needs to be changed to whatever style you want.
    You can find the styles here: CSS list-style-type Property

    You really should be creating a Child Theme for any changes, as when the theme updates, all the changes will be lost.

    Thread Starter akhilstyle

    (@akhilstyle)

    Thank you for your reply again.

    I have changed it to:

    }
    ol, ul {
    list-style: circle;

    But still no bullet points – am I doing it right?

    Thread Starter akhilstyle

    (@akhilstyle)

    on this page https://deddingtondental.co.uk/?page_id=8

    Bullet points are showing some how

    If you want “bullets” use “disc”.
    So, to minimize putting bullets on every list (including your menus)…

    The original one you changed, put back to…

    ol, ul {
    list-style: none;
    }

    Underneath the original one, put this…

    .entry-content ol,
    .entry-content ul {
    list-style: disc;
    }

    Now, this may not change all the “entry-content” parts, so we amy have to add something else to the new one.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Bullet points not showing’ is closed to new replies.