Shape 5

Joomla Templates => Oasis - Club => : theone2b July 14, 2014, 03:26:13 PM



: responsive
: theone2b July 14, 2014, 03:26:13 PM
site is not responsive :(...... helllllp
http://baresdreamandbid.com


: Re: responsive
: mikenicoll July 14, 2014, 09:46:14 PM
Hello,

That is because you are using classes that have fixed widths on them within the login/register forms. The rest of the site is responsive and scaling but both the login/register elements are using fixed pixel widths. For example:

The registration form is using the following class:

.registration_md span4

When you look at the css for span4 you see the following provided with Joomla:

.span4 {
    width: 370px;
}

Fixed widths such as 370px are not going to responsively scale. You would need to find a responsive ready login/registration form that support % widths instead of fixed pixel widths so they can scale within the container.

-Mike