Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Hector Cabrera

    (@hcabrera)

    Hi there!

    To edit WPP’s stylesheet:

    1. Go to Plugins > Editor and select WordPress Popular Posts from the dropdown.
    2. Click on wordpress-popular-posts/style/wpp.css to make changes on the stylesheet.
    3. When you’re done, hit the Update file button to save changes.

    You should also move the modified wpp.css stylesheet from wp-content/plugins/wordpress-popular-posts/style/ into your theme’s folder to preserve your customizations across plugin updates. Otherwise, the next time you update WPP WordPress will overwrite the stylesheet with the stock one.

    Plugin Author Hector Cabrera

    (@hcabrera)

    I just realized you actually asked me how to do it 😛

    Follow the steps above, find:

    /* LI - Post container styles */
    .wpp-list li {
    	overflow:hidden;
    	float:none;
    	clear:both;
    }

    … and change it to:

    /* LI - Post container styles */
    .wpp-list li {
    	/*overflow:hidden;*/
    	float:none;
    	clear:both;
    	list-style-position:outside;
    	margin-left:15px;
    }
    Thread Starter bridges-heinrich

    (@bridges-heinrich)

    Thank you so much! Totally worked a charm.

    Thread Starter bridges-heinrich

    (@bridges-heinrich)

    Thank you so much! Totally worked a charm.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Word wrap for titles’ is closed to new replies.