• Hi.

    when trying to add recent posts in the left block above the footer, I notice that I have Checkmarks as an unordered list. (Similar to what is shown as the unordered list for “Why Accesspress Lite?” . Can anyone tell me how to remove the checkmark symbol from appearing?

    Thanks!

Viewing 12 replies - 1 through 12 (of 12 total)
  • What is your URL?

    Thread Starter wildwilly

    (@wildwilly)

    Hi. it is www2.synegys.com. Thx for any help/support you can give!

    Appearance > Theme options > Tools > Custom CSS

    Paste this:

    #bottom-section .text-box ul li::before {
      content: none;
    }
    Thread Starter wildwilly

    (@wildwilly)

    Hi Erik.
    Fantastic! Now there is still an indentation of the text as if there is an ordered or unordered list. Is it possible to remove this?

    Thanks once more!

    Theme Author Access Keys

    (@access-keys)

    Hi Erik,
    Please try adding following css rule in Dashboard > Appearance > Theme Options > Tools > Custom css.

    .thumbnail-gallery ul{
    list-style: none;
    }

    Thanks,

    Thread Starter wildwilly

    (@wildwilly)

    Hi. It didn’t work, but I changed the content to be shown. Now it still has the ‘checkmarks’ as bullet symbol. How can i change it so that it is normal bullet list like the content shown in the widget beside it? The site is now http://www.synegys.com. Thanks.

    Theme Author Access Keys

    (@access-keys)

    Hi there,
    Please try using following css rule in Dashboard > Appearance > Theme Options > Tools > Custom css.

    #bottom-section .text-box ul li::before{
    display: none;
    }
    
    #bottom-section .text-box ul{
    list-style: circle;
    }
    
    #bottom-section ul li .title{
    display: inline-block;
    }

    Thanks,

    Thread Starter wildwilly

    (@wildwilly)

    Hi.
    The checkmarks are replaced by bullets (or circles) now. However, there appears to be a “double” space between the bullet and text. Can this be fixed? Thanks a lot!

    Theme Author Access Keys

    (@access-keys)

    Hi there,
    Please try adding following css rule in Dashboard > Appearance > Theme Options > Tools > Custom css.

    #bottom-section .text-box ul li{
    padding-left: 0px;
    }

    Thanks,

    Thread Starter wildwilly

    (@wildwilly)

    Hi. I added what you suggested. The Left Block Above the Footer section still does not display posts correctly. As you can see, the bulleted “circles” are not aligned with the Post Title. Furthermore the unordered list doesn’t show correctly for the first listed item (i.e. the bullet is on the second line rather than the first). Any suggestions?

    Theme Author Access Keys

    (@access-keys)

    Hi there,
    Sorry there was some mistake in above css rule. Please replace following css rule we provided earlier

    #bottom-section ul li .title{
    display: inline-block;
    }

    with

    #bottom-section ul li .title{
    display: inline-block;
    }

    Thanks,

    Thread Starter wildwilly

    (@wildwilly)

    Hi.

    Sorry, but the two css rules you wrote above are the same. Can you please tell me what is the exact change?

    Thanks,

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘removing unordered list checkmarks’ is closed to new replies.