Support » Theme: Twenty Fourteen » Width of the left sidebar

  • I would like to enlarge the left sidebar 162 –> 240 px.
    What is better : child theme or modify the css ?
    And how ?
    Thanks

Viewing 15 replies - 1 through 15 (of 18 total)
  • Hi @bhoyez,

    Add following CSS code in your site to enlarge the left sidebar from 162 px to 240 px

    @media screen and (min-width: 1080px) {
            .site:before {
    		width: 270px;
    	}
            #secondary {
    		width: 240px;
    	}
    }

    I suggest you to either add it in style.css file of your child theme or use any of the following plugins to add it.

    Don’t modify any parent theme file as changes made in parent theme will be overwritten when you update the parent theme and you have to redo all the changes again.

    http://wordpress.org/plugins/my-custom-css
    http://wordpress.org/plugins/simple-custom-css
    http://wordpress.org/plugins/imporved-simpler-css/
    http://jetpack.me/support/custom-css/

    Best Regards,

    Thread Starter bhoyez

    (@bhoyez)

    That’s OK. I used my-custom-css to do this.
    Thank you

    You are welcome.

    I tried this code with the my-custom-css plugin, and it expanded the width of the left sidebar as advertised. Unfortunately, it expanded over the left image at the top of the page. It did not expand into the blank white space at the edge of the theme.

    Any suggestions on how to expand the width of the left sidebar into the blank space at the edges of the theme rather than stepping on real estate in the center of the page?

    Hi @karen,

    Thank you for your question.

    Can you please provide me page link on your site where the problem exists so that i can help you to resolve it?

    Best Regards,

    Cath22

    (@cath22)

    WPMU DEV, I used the CSS code you provided, and it worked fine, but now part of the left side bar is overlapping over the featured posts images on the home page.

    What code should I add to make the middle column move to the right accordingly, so that the featured posts images are no longer partly disappearing under the enlarged left side bar? Any suggestions?

    Also I probably will have to adapt the thumbnail size of the featured images to still make 3 of them fit into the now narrower middle part. Any idea how to resolve this?

    Hi @cath22,

    Could you please share me the home page link where the left side bar is overlapping over the featured posts images so that i can troubleshoot and provide you the solution?

    Kind Regards,

    Cath22

    (@cath22)

    Hi WPMU DEV,

    Thanks so much for reply.
    In the mean-time I have solved my problem, so a screenshot will not show the problem anymore. My solution may not be the most orthodox one, but it seems to work across different browsers and on tablets, too, so for now I’m satisfied with the result. I will share what I did in case it might help someone else who is struggling with the same problem. For reminder: after I enlarged the left side bar, it was overlapping over the grid of featured posts.
    Of course, feedback and improvements from a more experienced programmer are highly welcome! 🙂

    I moved the grid of featured posts to the right in the following way (in my case I had to move the grid 30px because I enlarged the left side bar column by 30px):

    .grid .featured-content .hentry {
    float: left;
    position: relative; left: 30px;
    width: 50%;
    }

    That solved the problem for the overlapping part, but next problem was that one of the featured posts images (the last one on the right side) was still cropped by 30px, as the total width of the middle column was still 30px narrower than the original 100%.

    That was because the width of the grid images was still set to 33.333%, while the actual width was not 100% anymore, but 100% – 30px, so 1/3 for each of the 3 images had to be less than 33.333%. So I tweaked it to 32.5% adding the following line of code and that worked.

    .grid .featured-content .hentry {
    width: 32.5%;
    }

    My next related problem is that now that I have enlarged the left side bar, a larger font size would fit better for the recent posts, archives, categories etc that are listed there? I changed the tagline size font, but I haven’t find a way to change the recent posts, archives, etc in this theme. Does anyone know how to do this in Twenty fourteen?
    Thanks!

    Hi @cath22,

    Thank you for your reply and providing the solution in the community.

    I hope the provided solution will help others who is trying to resolve the similar problem.

    My next related problem is that now that I have enlarged the left side bar, a larger font size would fit better for the recent posts, archives, categories etc that are listed there? I changed the tagline size font, but I haven’t find a way to change the recent posts, archives, etc in this theme. Does anyone know how to do this in Twenty fourteen?

    You can change the size of widgets( recent posts, archives, categories etc ) header and its content displayed in the left sidebar using the following CSS code.

    #primary-sidebar .widget .widget-title {
    font-size: 15px;
    }
    #primary-sidebar .widget ul {
    font-size: 14px;
    }

    Change the font size in the above code to whatever you want to.

    Cheers,

    Cath22

    (@cath22)

    Thanks so much WPMU DEV!

    Hi @cath22,

    You are most welcome, if I can be of any further assistance please don’t hesitate to ask 🙂

    Cheers,

    I’d like to make the secondary navigation (vertical menu) appear even larger than 240px, but if I try to edit the code provided above it won’t go any larger than 240px…Can anybody please help me with this? I’m also noticing a padding on the left of the image in the top-left corner (http://www.prevent-leg-cramps.com test site) so that it isn’t sitting flush along the left edge of the browser like the menu is..Any way to increase menu size beyond 240? Also, to remove the padding to the left of that top image?

    Hi @paulpd0,

    Thanks for posting on the forums.

    To help keep support tickets separate, could you please open a new thread for your new question. This helps to prevent any confusion as I’m sure you understand.

    This might help other members looking for a similar answer. 🙂

    Also as per the Forum Welcome, you should post your own topic.

    Cheers,

    How do I make the left sidebar narrower in WP twentyfourteen? Can I keep it 12% percent of the total page width rather than a pixel width? How can I keep the lefthand sidebar from popping down to the bottom of the page? My site is http://www.joanflanagan.com, and I am working with the child theme, Trouble.

    Thanks so much for any help you can give me!

    @trasheeta: If you require assistance then, as per the Forum Welcome, please post your own topic instead of tagging onto someone else’s topic.

    In the meantime, do not edit the Twenty Fourteen theme. It is the current default WordPress theme and having access to an original, unedited, copy of the theme is vital in many situations. First create a child theme for your changes. Or install a custom CSS plugin.

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘Width of the left sidebar’ is closed to new replies.