• Hello,

    I am familiar with bootstrap and changing column widths. However, not so much with PHP. When I inspect element I can see the column width and when I look in the php files of my virtue site they are being echoed in from somewhere. Can you point me to the file that holds the column width of the home page and blog posts? Can I change this site wide? Ideally I would like to narrow the column width (as I probably will get rid of the side bar)

Viewing 2 replies - 1 through 2 (of 2 total)
  • By column do you mean container?

    You can use this css in the theme options > advanced settings > custom css box (you shouldn’t edit any theme files) to shrink the container size:

    @media (min-width: 1200px) {
    .container {width: 970px;}
    aside.col-lg-3 {width: 33.33333333333333%;}
    .main.col-lg-9 {width: 66.66666666666666%;}
    }

    Kadence Themes

    Thread Starter alexzerbach

    (@alexzerbach)

    Okay. I will give it a try. I think if I find the id attribute that is targeting the blog pages I can even put that class on it for just blog pages.

    Thanks,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change column width on blog posts’ is closed to new replies.