• Resolved bsthp

    (@bsthp)


    Hi! Never had this issue before and can’t work out what is causing issue. I have used the following list shortcode and inserted;

    [su_list icon="icon: check-square-o" icon_color="#666666"]
    <ul>
     	<li>List item</li>
     	<li>List item</li>
     	<li>List item</li>
    </ul>
    [/su_list]

    The system also has Cherry installed, so not sure if that causing the issue. On the page below, you can see the Cherry list shortcode is displaying ok.

    Any help in the right direction would be appreciated.

    • This topic was modified 6 years, 8 months ago by bsthp.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter bsthp

    (@bsthp)

    Sorry, wrong link. It should be https://www.smart10ltd.co.uk/test/

    Hi,

    Can you check what happens if you disable the other plugin(s)? It is certainly interfering with code coming from either the theme or another plugin (cherry) as the code you pasted seems to work fine on a fresh install.

    Thread Starter bsthp

    (@bsthp)

    Yes, it will be a conflict with Cherry and the css , specifically, Tried all sorts of css tweaks to no avail. Anyone out there who is super duper with css, may be able to advise, me thinks. I thought i was pretty good myself but obviously not!

    • This reply was modified 6 years, 8 months ago by bsthp.

    Perhaps you could try to dequeue / deregister the stylesheet of the cherry plugin and manually add the styles that you do need. Via Child theme or code snippet plugin.

    Example:

    function dequeue_wp_styles() {
        wp_dequeue_style( 'cherry-plugin' );
        wp_deregister_style( 'cherry-plugin' );
    }
    add_action( 'wp_print_styles', 'dequeue_wp_styles' );

    This should solve css issues. If the problem persists after deregistering the stylesheet(s) than the cause is not the stylesheet

    Thread Starter bsthp

    (@bsthp)

    Many thanks. Decided to keep it simple and just use the Cherry list style.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘List icon not displaying’ is closed to new replies.