Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #471829

    Hi, is it possible to have a different Content | Sidebar Ratio for my blog?
    For my website I want the sidebar to be minimal so I’ve set it to 80% | 20%. For blog, because the side bar holds more content, I want it something like 60% | 40%.
    Please let me know if it’s possible, thanks!

    #472159

    Hi shoo!

    Thank you for using Enfold.

    Yes, it’s possible. You can adjust the content width in the Quick CSS field:

    .container .av-content-small.units {
      width: 73%;
    }

    If you want to use this code for a particular page, you need to get the page id.

    Best regards,
    Ismael

    #473125

    Hi Ismael, thanks for the reply. Where should I place the page id in that code? Thanks again.

    #473131

    Hi!

    Please use the code as following to target one page only

    .page-id-59 .container .av-content-small.units {
      width: 73%;
    }

    You can right click on Chrome or Firefox to inspect elements to find page ID’s http://i.imgur.com/HyPTCRg.jpg

    Regards,
    Yigit

    #473142

    Hi Yigit thanks for the quick response, but for some reason the CSS code is not working. When I tried inspect elements, I can’t locate page Id, so I’ve downloaded a plugin (Reveal IDs). But still no luck.

    #473168

    Hi!

    Please use the code as following instead

    .blog .container .av-content-small.units {
      width: 73%;
    }

    Cheers!
    Yigit

    #473249

    Perfect! Thanks again :)

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Different Content | Sidebar Ratio for blog?’ is closed to new replies.