xavi coma
asked 10 years ago

Hi all, i would like to know how i can center the theme Minion. Now the theme is aligned in absolut position to the left. Wich is the way???
 
Thanks all.

2 Answers
DominicStaff
answered 10 years ago

Hi Xavi, 
Yes, DW Minion theme is designed with all the content is aligned to the left side.
To center the DW Minion theme as you want to have, please log in to Dashboard > Appearance > Customize > Custom Code  then add the following code to the “Header Code”

 <style>
.container {
    max-width: 100%;
}
</style>
 

Hope this helps!

xavi coma
replied 10 years ago

Hi Dominic, it works, but this code make 100width, not center, make a zoom on the theme. I would like center the theme only without zoom.. :)) Thanks a lot

Kido D
answered 10 years ago

Hi Xavi,
 
To center the theme, you can change the above code (Dashboard > Appearance > Customize > Custom Code) to:
 

 <style>
.container {
max-width: 1200px;
margin: 0 auto;
}
</style>

Instead of 1005 width, please use 1200px, and add margin: 0 auto
Hope that helps!

xav coma
replied 10 years ago

Thanks Kido! ill try!

xav coma
replied 10 years ago

perfect!!!!! thanks kido!

Powered by DW Question & Answer Pro