Hi, I am using this theme for my website www.kiddom.com.sg and as I'm using a lot of jpegs for my advertisements, I don't like the way they look when in my phone. Is there a way to make it unresponsive? thanks
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .fullwidth img { width: 100%; } .logo img { width: 100%; } It will make images responsive.
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS It will improve mobile view. Code: .fullwidth img { width: 100%; height: auto;} @media only screen and (max-width: 480px){ .logo img { margin-left: 15px; width: 100%; }}