Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi @RadiCarl- Were you ever able to figure this out? If so would you mind sharing? I would like to do the same thing!

    Thanks-
    Megan

    Hi.

    To edit the stylesheet, use either the Jetpack Edit CSS module, or create a child theme. I have used both and I do recommend the latter as a good way to make changes that survive upgrades to your theme.

    I inserted the following code into the stylesheet.

    .arpw-block ul {
    	list-style: none;  /* removes the bullets */
    	margin-left: 0;   /* removes the white space before the text */
    	padding-left: 0;
    }

    Cheers.

    Hi JulianMaddock, I’ve used that code that you supplied. but it did nothing.

    Carol

    (@carolbottacin)

    Hey guys,

    I’ve tried to remove those bullets in many ways, the only thing that worked was:

    1- Insert the following code to the functions.php file in your theme:

    function prefix_remove_arpw_style() {
        wp_dequeue_style( 'arpw-style' );
    }
    add_action( 'wp_enqueue_scripts', 'prefix_remove_arpw_style', 10 );

    2- Than insert the following code to the style.css file in your theme:

    /* wrapper */
    #arpw-random-posts {}
    
    /* ul */
    .arpw-ul {list-style: none;}
    
    /* li */
    .arpw-li {}
    
    /* title */
    .arpw-title {display: none}
    
    /* thumbnail */
    .arpw-thumbnail {}
    
    /* date */
    .arpw-time {}
    
    /* excerpt */
    .arpw-summary {}

    In my case, I removed the title and bullets, but you can customize it as much as you want.

    Carol

    (@carolbottacin)

    After to remove the bullets, I’m struggling to remove the space/margin on the left of my sidebar, where the bullets were. It would be nice to have some support from the plugin’s creator…

    from carol’s code only only this code

    /* ul */
    .arpw-ul {list-style: none;}

    removes the titles with the bullets all at once.

    this does nothing

    /* ul */
    .arpw-ul {list-style: none;}

    I want to remove only the bullets and leave the title.

    Any smart guys/girls around? Thanks

    hey guys..
    i have solve this problem by contact the author..
    you can insert this code on css..

    .widget li.arpw-li {
    list-style: none;
    margin: 0;
    padding: 0;
    }

    its work on my website https://juragan-anime.net/

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘how remove the bullets before each thumbnail ?’ is closed to new replies.