PDA

View Full Version : siteground-j15-37, problems with firefox



erasmus
12-30-2008, 04:00 AM
hello,
first thanks for this nice template!

as you can see the login formular isn't complete visible with firefox 3.x.
But it works fine with IE6.

first hardcopy is firefox, second IE6.

1. Is this problem known ?
2. do you have a solution :)

thanks a lot, erasmus



the CSS:

</table>
<fieldset class="input">
<p id="com-form-login-username">
<label for="username">Benutzername</label><br />
<input name="username" id="username" type="text" class="inputbox" alt="username" size="18" />
</p>
<p id="com-form-login-password">

<label for="passwd">Passwort</label><br />
<input type="password" id="passwd" name="passwd" class="inputbox" size="18" alt="password" />
</p>
<p id="com-form-login-remember">
<label for="remember">Angemeldet bleiben</label>
<input type="checkbox" id="remember" name="remember" class="inputbox" value="yes" alt="Remember Me" />
</p>
<input type="submit" name="Submit" class="button" value="Anmelden" />

</fieldset>
<ul>
<li>
<a href="/index.php?option=com_user&amp;view=reset&amp;Itemid=58">
Haben Sie Ihr Passwort vergessen?</a>
</li>
<li>
<a href="/index.php?option=com_user&amp;view=remind&amp;Itemid=58">
Haben Sie Ihren Benutzernamen vergessen?</a>

</li>
</ul>

<input type="hidden" name="option" value="com_user" />
<input type="hidden" name="task" value="login" />
<input type="hidden" name="return" value="aW5kZXgucGhw" />
<input type="hidden" name="24820a335b54a2df849fcedfbc638a42" value="1" /></form>

</div>
<div class="clr"></div>

</div>
</div>
</div>
</div>
</div>

Dimo
01-05-2009, 09:28 AM
This is indeed a strange issue.

If you are not able to resolve it yourself, feel free to post a ticket from your HelpDesk. Then we'll do our best to assist you :)

webbits
02-12-2009, 04:32 PM
This is indeed a strange issue.

If you are not able to resolve it yourself, feel free to post a ticket from your HelpDesk. Then we'll do our best to assist you :)
Has there been a resolution to siteground-j15-37, problems with firefox?

I too am having the same problem.

Thank you!
Webbits

elmer
03-08-2009, 12:10 PM
same problem here with template siteground-j15-67 on Joomla 1.5.9 and Firefox 3.0.7.
IE works fine but no login an password form in firefox :-(

[edit]
I tested with a few siteground templates and the problem occours with every template!
IE works -- firefox not

elmer
03-16-2009, 08:42 AM
Hello all,

with the help of a collegue I found a workaround.
As you can see in the source of the website, the login-form is still there. It is only not visible.
I played a little bit with the CSS classes around the login form and noticed that in FF there is no break between the key picture and the login fieldset. This means that the login field is outside the visible area in FF.
As the login code is the same as in other templates it must have to do with some CSS attributes (Problem with a float statement?).

So I added the following to my template.css:
form#com-form-login {
border-style: solid;
border-color: white;
}

Now the FF breaks the line after the key picture and the login field is visible...

kind regards
elmer

UPDATE:
for seamonkey also the following had to be changed:
table.contentpane {
text-align: left;
/* float: left; */
float: none; <==== change left to none
width: 100%;
margin: 8px;
}

iammike111
02-14-2011, 08:44 AM
Brilliant!! Thanks for that. Worked like a charm.