Possible to Edit Theme and Place Widgets on Right Sidebar?

4 replies
  • WEB DESIGN
  • |
I recently chose a theme I really like(BonPress) but the only complaint I have is that whenever I add a widget, it ends up on the left hand sidebar. Since the theme's custom menu is also on the left sidebar, it makes things look a bit cramped and unprofessional.

Is there any way I can edit the code to allow the widgets to be placed on the right side of the theme? I'm not exactly technical but I assume it can be done; the content is centered and there's an awful lot of empty space off to the right.

Any help or guidance would be much appreciated! Thank you.
#edit #place #sidebar #theme #widgets
  • Profile picture of the author developdaly
    We'd need a lot more info to really say, although it IS possible. How, depends on your code. Moreover, the likely best way to do it would require a significant change in your themes underlying code.
    {{ DiscussionBoard.errors[6074366].message }}
  • Profile picture of the author faysal969
    Contact with BonPress theme developers about the issue. They should assist you solving the problem.
    Signature
    Learn SEO, Affiliate Marketing, CPA, and Make Money Online !!!!!!!

    Keep your house pest free and be healthy, wealthy, and happy. Get Rid of House Insects. :)
    {{ DiscussionBoard.errors[6075109].message }}
    • Profile picture of the author JakeDaly
      I see. Thanks, guys!
      {{ DiscussionBoard.errors[6079302].message }}
  • Profile picture of the author rajeevrla
    You can edit the style.css file so that the sidebar is moved to the right side. After looking into the demo page, here's the solution:

    line no: 119

    replace this code:
    Code:
    #aside {
        float: right;
        margin-top: 42px;
        width: 256px;
    }
    with this one(currently)
    Code:
    #aside {
         float: left;
         margin-top: 42px;
         width: 256px;
     }
    Signature

    Have a great day!

    {{ DiscussionBoard.errors[6096308].message }}

Trending Topics