Title: CSS Issues
Last modified: August 21, 2016

---

# CSS Issues

 *  [kbrkal](https://wordpress.org/support/users/kbrkal/)
 * (@kbrkal)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/css-issues-9/)
 * I am using most up to date version of wordpress & wordpress popular posts.
 * Since the update my css changes are no longer working.
 * [http://wordpress.org/extend/plugins/wordpress-popular-posts/](http://wordpress.org/extend/plugins/wordpress-popular-posts/)

Viewing 15 replies - 1 through 15 (of 33 total)

1 [2](https://wordpress.org/support/topic/css-issues-9/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/css-issues-9/page/3/?output_format=md) [→](https://wordpress.org/support/topic/css-issues-9/page/2/?output_format=md)

 *  Thread Starter [kbrkal](https://wordpress.org/support/users/kbrkal/)
 * (@kbrkal)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809219)
 * Here is what I have in the css file & this was working with version 2.3.2 but
   no version after.
 * /* title styles */
    .wpp-post-title { height:40px; padding-right:30px; width:
   230px; font-weight:bold; text-decoration: none; font-size: 12px; color: #015B7D;}
 * /* thumbnail styles */
    img.wpp-thumbnail { float: left; padding:5px; width: 
   auto; }
 * /* excerpt styles */
    .wpp-excerpt {margin:0px; }
 * /* Stats tag styles */
    .post-stats { font-size:9px; font-weight:bold; }
 *  .wpp-comments {
    }
 *  .wpp-views {
    }
 *  .wpp-author {
    font-style:italic; }
 *  .wpp-date {font-weight:italic;
    font-size: 10px; }
 *  Plugin Author [Hector Cabrera](https://wordpress.org/support/users/hcabrera/)
 * (@hcabrera)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809234)
 * Hi kbrkal,
 * Can you please post your site’s URL here?
 *  Thread Starter [kbrkal](https://wordpress.org/support/users/kbrkal/)
 * (@kbrkal)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809242)
 * [http://www.pokereagles.com](http://www.pokereagles.com) is the site.
 *  [AndrzejR](https://wordpress.org/support/users/andrzejr/)
 * (@andrzejr)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809247)
 * Same thing here Hector,
    In new version my changes in css file are no longer 
   working old version worked ok. [http://addictioninfamily.com/](http://addictioninfamily.com/)
 *  Plugin Author [Hector Cabrera](https://wordpress.org/support/users/hcabrera/)
 * (@hcabrera)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809278)
 * Ah, I see what’s going on. Thanks for the link, kbrkal!
 * [@kbrkal](https://wordpress.org/support/users/kbrkal/), please change this:
 *     ```
       /* thumbnail styles */
       img.wpp-thumbnail {
       float: left;
       padding:5px;
       width: auto;
       }
       ```
   
 * … into:
 *     ```
       /* thumbnail styles */
       .wpp-thumbnail {
       float: left;
       padding:5px;
       width: auto;
       }
       ```
   
 * My bad. I made some changes in the plugin’s code that affected the wpp-thumbnail
   class without noticing it.
 * [@andrzejr](https://wordpress.org/support/users/andrzejr/) you’re probably also
   being affected by this change. Please do the modification I posted above and 
   let me know what happens.
 *  Thread Starter [kbrkal](https://wordpress.org/support/users/kbrkal/)
 * (@kbrkal)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809279)
 * I made those changes and it did move up and realigned the link and title of the
   article however its still not pulling in what I have. Is below the right code?
 * /* title styles */
    .wpp-post-title { height:40px; padding-right:30px; width:
   230px; font-weight:bold; text-decoration: none; font-size: 12px; color: #015B7D;}
 *  Plugin Author [Hector Cabrera](https://wordpress.org/support/users/hcabrera/)
 * (@hcabrera)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809282)
 * Are you trying to align the text with the upper border of the thumbnail? If so,
   try this change:
 *     ```
       /* title styles */
       .wpp-post-title {
       display:inline;
       float:left;
       height:40px;
       padding-right:30px;
       width:230px;
       font-weight:bold;
       text-decoration: none;
       font-size: 12px;
       color: #015B7D;
       }
       ```
   
 *  Thread Starter [kbrkal](https://wordpress.org/support/users/kbrkal/)
 * (@kbrkal)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809283)
 * Did not fix it.
 * I have now uploaded old version of plugin that works with the below CSS.
 * Go to [http://www.pokereagles.com](http://www.pokereagles.com) and see how the
   Most Viewed Stories looks.
 * How do I replicate that look with your new updated plugin since it seems the 
   css changed.
 * /* title styles */
    .wpp-post-title { height:40px; padding-right:30px; width:
   230px; font-weight:bold; text-decoration: none; font-size: 12px; color: #015B7D;}
 * /* thumbnail styles */
    img.wpp-thumbnail { float: left; padding:5px; width: 
   auto; }
 * /* excerpt styles */
    .wpp-excerpt {margin:0px; }
 * /* Stats tag styles */
    .post-stats { font-size:9px; font-weight:bold; }
 * .wpp-comments {
    }
 * .wpp-views {
    }
 * .wpp-author {
    font-style:italic; }
 * .wpp-date {font-weight:italic;
    font-size: 10px; }
 *  Plugin Author [Hector Cabrera](https://wordpress.org/support/users/hcabrera/)
 * (@hcabrera)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809296)
 * I’ll give you a hand with that tomorrow, as I’m going home now. Should be easy
   to replicate! In the meanwhile, please stay on the old version.
 *  Thread Starter [kbrkal](https://wordpress.org/support/users/kbrkal/)
 * (@kbrkal)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809303)
 * Thank you, I will wait for your response.
 *  Thread Starter [kbrkal](https://wordpress.org/support/users/kbrkal/)
 * (@kbrkal)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809322)
 * Can you help with this today?
 *  Plugin Author [Hector Cabrera](https://wordpress.org/support/users/hcabrera/)
 * (@hcabrera)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809323)
 * Yup, actually I started working on it an hour ago :P. Please download and install
   this [test version](http://downloads.wordpress.org/plugin/wordpress-popular-posts.zip)
   of the plugin since it contains a few changes – including modifications to the
   CSS classes. It already comes with texts floating next to the images so you don’t
   need to make any changes at all, just use the wpp.css stylesheet included with
   this version 🙂
 *  [dodonnell](https://wordpress.org/support/users/dodonnell/)
 * (@dodonnell)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809324)
 * Ha, have had this issue myself for maybe a week now, my side bar has looked horrible,
   spent an hour trying to figure why the hell the custom css wasn’t being used!
   Looking forward to the update being pushed live, thanks!
 *  Plugin Author [Hector Cabrera](https://wordpress.org/support/users/hcabrera/)
 * (@hcabrera)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809325)
 * [@dodonnell](https://wordpress.org/support/users/dodonnell/) the update might
   take some time, though. Other users have reported a bug with missing thumbnails
   when using external images, so I need to look into that too. The link I posted
   above it’s almost the same as version 2.3.5 but with some minor changes and fixes,
   should be safe to use (or you can simply wait until I get everything fixed hehe).
 *  [dodonnell](https://wordpress.org/support/users/dodonnell/)
 * (@dodonnell)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/css-issues-9/#post-3809326)
 * Thanks for the update Hector, good luck getting it sorted, love the plugin.

Viewing 15 replies - 1 through 15 (of 33 total)

1 [2](https://wordpress.org/support/topic/css-issues-9/page/2/?output_format=md)
[3](https://wordpress.org/support/topic/css-issues-9/page/3/?output_format=md) [→](https://wordpress.org/support/topic/css-issues-9/page/2/?output_format=md)

The topic ‘CSS Issues’ is closed to new replies.

 * ![](https://ps.w.org/wordpress-popular-posts/assets/icon-256x256.png?rev=1232659)
 * [WP Popular Posts](https://wordpress.org/plugins/wordpress-popular-posts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wordpress-popular-posts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wordpress-popular-posts/)
 * [Active Topics](https://wordpress.org/support/plugin/wordpress-popular-posts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wordpress-popular-posts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wordpress-popular-posts/reviews/)

 * 33 replies
 * 4 participants
 * Last reply from: [Hector Cabrera](https://wordpress.org/support/users/hcabrera/)
 * Last activity: [12 years, 11 months ago](https://wordpress.org/support/topic/css-issues-9/page/3/#post-3809357)
 * Status: not resolved