Title: sunparticle's Replies | WordPress.org

---

# sunparticle

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

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

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Item Page Sidebar Links Not Working in Firefox](https://wordpress.org/support/topic/item-page-sidebar-links-not-working-in-firefox/)
 *  [sunparticle](https://wordpress.org/support/users/sunparticle/)
 * (@sunparticle)
 * [18 years, 10 months ago](https://wordpress.org/support/topic/item-page-sidebar-links-not-working-in-firefox/#post-496518)
 * I just had the same situation 🙂 The problem was that links in the sidebar didn’t
   work (I was unabale to click them, they didn’t change on hover). This was not
   the case which appeared visually under the content (when there was a llittle 
   content , the links below the content line worked fine). The problem occured 
   only in FF. In my case the sidebar was covered by the content 🙂 The css for 
   my layout was something like:
 *     ```
       #sidebar{
           position:relative;
           top:10px;
           float:right;
           width:190px;
       }
       #content{
           position:relative;
           padding: 0px 200px 0px 10px;
       }
       ```
   
 * and html like:
 *     ```
       <div id="main_content">
       <div id="sidebar"></div>
       <div id="content"></div>
       </div>
       ```
   
 * So as You can see sidebar was floated to the right and i made a space for it 
   by adding padding right of content. And I ended up having sidebar coverd by content,
   athougth visible. But I fixed this by adding z-index property to the sidebar 
   and that solved the problem! Hope it helps!

Viewing 1 replies (of 1 total)