Desi
asked 9 years ago

Hi, i’m trying to enlarge the sidebar in Focus theme to 300 px, already tried these codes

http://www.designwall.com/question/focus-theme-sidebar-width-clarification/

but it moves everything to the left, and the sidebar remains the same. Is there any new code (working)?
Also, i’ve translated half theme, but theres the word "Comments" still in english in the Post Author widget (post-info) and i can’t figure out where it comes from, every single word Comments in the theme is already translated…

2 Answers
DominicStaff
answered 9 years ago

Hi,

  • To change the sidebar width, you can log in to Dashboard then add the following code to the style.css file:

    @media (min-width: 1200px ){
    #page {
        max-width: 1227px;
    }
    
    .container {
        width: 1225px;
    }
    
    .site-content > .content-inner > .container > .row >  .col-lg-9 {
        width: 885px;
    }
    
    .site-content > .content-inner > .container > .row > .col-lg-3 {
        width: 340px;
    }
    
    .content-inner:before {
          left: 885px;
    }
    }

    The solution in the following question just worked in the old version: LINK QUESTION

  • About the word "Comments", you can tell me detail about the position and send me a screenshot for further checking.
    Regards,
Desi
answered 9 years ago

Thank you for your response, Dominic.

  1. The word Comments is located in the Author widget in

Posted On %s in %s with %s

tried to translate these but didn’t work:

sprintf(_n( 'Коментар', '%s Коментари', get_comments_number(), 'focus' ), get_comments_number())

Screenshot:
![0 Comments](http://i60.tinypic.com/2eoia8k.jpg "comments tag")

  1. Your new code worked for the sidebar, but still moves everything to the left as you can see in the link below, i need to play with the margins.
Powered by DW Question & Answer Pro