• Hello. I’m tying to figure out how to remove the automatic bullets that keep appearing on my website when I’m blogging. I’ve tried to enter in my own HTML code to change the bullet type but the original still appears and I can’t figure out how to remove it. Here’s a link to show you what I mean: https://www.cayahomes.ca/when-youre-income-rich-but-asset-poor/

    PS: I’m not all that tech savvy when it comes to my site so a detailed explanation would be appreciate if possible ?? Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • well ill be as detailed as i can hehe.

    Go to your wordpress Dashboard and go to menu Appearance > Editor.

    then you will see a editor with a list of php and css files aside in that list locate one named style.css open that file and go to the last line then paste this code below

    /*THIS IS A MODIFICATION*/
    ul{
    list-style:none !important;
    }
    leave some spaces between the last line and this code so you know winch modification delete in case something goes wrong then Press Update and refresh your site.

    hope it helps.

    Couple of notes:

    1. // is not a valid delimiter for CSS comments; it’s used for javascript and php. The delimiters for CSS are /* and */

    /* This is a CSS comment */

    2. If you edit the main theme style.css file you will lose those changes when you update the theme. You should enter your CSS changes in a child theme style.css file or a plugin like https://www.ads-software.com/plugins/simple-css/ or https://www.ads-software.com/plugins/simple-custom-css/

    OMG i’m so dumb i already edit the message so there is no problem sorry.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Bullet Arrows – would like to remove’ is closed to new replies.