davidgc Posted November 13, 2014 Share Posted November 13, 2014 Hello! I am trying to find a way to change the width of my CMS Pages. For example from the following site the text is to wide. http://www.ilabmovil.com/content/2-aviso-legal I think that I would have to go to cms.css in my theme folder however I am not sure what I am suppose to configure if I wanted for example for the content to have a max width of 760 px. (I have zero experience with CSS ). Is there anyone who can help me? Thanks, David Link to comment Share on other sites More sharing options...
dioniz Posted November 13, 2014 Share Posted November 13, 2014 You can try to put below code at the end of yourdomain.com/themes/warehouse/css/global.css #cms .rte{ width: 760px; margin: 0 auto; /*if you want it centered*/ } Link to comment Share on other sites More sharing options...
vekia Posted November 14, 2014 Share Posted November 14, 2014 if you want to change width only for cms page aviso legal (ID: 2) use this: .cms-2 #center_column { width:700px; } Link to comment Share on other sites More sharing options...
davidgc Posted November 14, 2014 Author Share Posted November 14, 2014 Awesome, both codes worked, thank you! Link to comment Share on other sites More sharing options...
Recommended Posts