what css needs to be changed to make my theme responsive?
Can you guide me step by step?

http://Shopix.me - Natural herbs and more.. - online shop
A coder by Hobby and Developer by Profession
Images in Manufacture
http://www.opencart.com/index.php?route ... on_id=6943
Description and images in Manufacture
http://www.opencart.com/index.php?route ... on_id=6978
http://codertj.com
http://Shopix.me - Natural herbs and more.. - online shop
Code: Select all
col1 {width:60%;}
col2 {width:40%;}
Code: Select all
#siteWrapper{max-width:1200px}
Code: Select all
@media all and (min-width:600px) {
/* All CSS for when the browsers width is minimized under 600px */
} /* End media query */
@media all and (min-width:320px) and (max-width:599px) {
/* Something like this you would put your styles in for how you want your browsers to look between the widths off 320 and 599, and then once it hits 600, it changes to your full layout. */
} /* End media query
@media all and (max-width:319px) {
/*Here you could place how you want your page styled for mobile phones.*/
} /* End media query */
Users browsing this forum: No registered users and 2 guests