Title: splicerdotcom's Replies | WordPress.org

---

# splicerdotcom

  [  ](https://wordpress.org/support/users/splicerdotcom/)

 *   [Profile](https://wordpress.org/support/users/splicerdotcom/)
 *   [Topics Started](https://wordpress.org/support/users/splicerdotcom/topics/)
 *   [Replies Created](https://wordpress.org/support/users/splicerdotcom/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/splicerdotcom/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/splicerdotcom/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/splicerdotcom/engagements/)
 *   [Favorites](https://wordpress.org/support/users/splicerdotcom/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Now-reading plugin and page alignment](https://wordpress.org/support/topic/now-reading-plugin-and-page-alignment/)
 *  [splicerdotcom](https://wordpress.org/support/users/splicerdotcom/)
 * (@splicerdotcom)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/now-reading-plugin-and-page-alignment/#post-427005)
 * Yeah, that -225px is set by the veryplaintxt theme (I use the same one at splicer.
   com). Taking it out breaks the whole template everywhere all over the site.
 * The problem as I see it seems to be that now-reading pages have
 *  `class=\"now-reading primary narrowcolumn\"`
 * in their content div. Not sure why the author chose to override this with what
   looks like an illegal class declaration (can you really have spaces in the names
   of your classes? or does this invoke multiple classes? I guess I’m showing off
   my ignorance about CSS).
 * This seems to be in the following files:
 * wp-content/plugins/now-reading/templates/tag.php:
    `<div id=\"content\" class
   =\"narrowcolumn primary now-reading\">` wp-content/plugins/now-reading/templates/
   single.php: `<div id=\"content\" class=\"narrowcolumn primary now-reading\">`
   wp-content/plugins/now-reading/templates/author.php: `<div id=\"content\" class
   =\"now-reading primary narrowcolumn\">` wp-content/plugins/now-reading/templates/
   library.php: `<div id=\"content\" class=\"now-reading primary narrowcolumn\">`
   wp-content/plugins/now-reading/templates/search.php: `<div id=\"content\" class
   =\"narrowcolumn primary now-reading\">`
 * changing those files’ first three divs to the following seems to help:
 *     ```
       <div id=\"wrapper\">
               <div id=\"container\" class=\"narrowcolumn\">
                       <div id=\"content\" class=\"primary now-reading\">
       ```
   
 * …but I’m going to have to find the correct stylesheet additions or else edit 
   the template files to use the theme styles. I have the feeling that I’m having
   to tinker too much in a way that I’m not supposed to, but there’s what I have.

Viewing 1 replies (of 1 total)