Reply To: bullets in text widge/sidebar

Homepage Community Forums Epik Theme Support bullets in text widge/sidebar Reply To: bullets in text widge/sidebar

#13937
pgtreacy
Customer

    Hi Robert,

    In Epik style.css the list-style-type for the .sidebar li is currently set to none

    .sidebar li {
    list-style-type: none;
    margin-bottom: 6px;
    padding: 0px;
    word-wrap: break-word;
    }

    Change this to some value other value like circle or disc(I thought it was set to disc yesterday)

    .sidebar li {
    list-style-type: disc;
    margin-bottom: 6px;
    padding: 0px;
    word-wrap: break-word;
    }

    Doing this in combination with removing the padding should work. When I do this in the code Inspector I can see bulleted lists.

    Cheers

    Phil