![]() |
|
|
|||||||
| For more information about the ads and why they're here, please see the FAQ |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Is there a way to change the lenght of the login fields "username" and "password"? I need smaller fields...
|
|
#2
|
|||
|
|||
|
Thats not right! Can you post the source of the page?
|
|
#3
|
|||
|
|||
|
I have the same problem - but only on my personal laptop.
On any other PC I tested so far I haven't had any problems. => http://webmail.mediaversal.de |
|
#4
|
|||
|
|||
|
Quote:
- Xyanide |
|
#5
|
|||
|
|||
|
Also looks fine over here.
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6 |
|
#6
|
|||
|
|||
|
It's weird. I have the same problem. On my pc everything looks fine but on my friend's pc the login page looks like Simon89's screenshot. It doesn't matter what browser I'm using (IE7, FF, Opera), it's always the same problem. Both computers are running MS Win XP Prof SP2.
|
|
#7
|
|||
|
|||
|
Add style="width:150px" to the <input /> tags and that will solve the problem.
|
|
#8
|
|||
|
|||
|
Seems you have to edit the main program files to change the <input /> tags on output
Code:
<script type="text/javascript">
<!--\\
//fix login box without editing the program files
window.onload = function () {
console.log('log');
oUsername = document.getElementById('rcmloginuser');
oPassword = document.getElementById('rcmloginpwd');
oUsername.style.width = '150px;'
oPassword.style.width = '150px';
}
-->
</script>
|
|
#9
|
|||
|
|||
|
Sorry that it took me so long to answer but thishas been a very busy week for me. Anyway... I added your Javascript to my login.html template and it seems to work flawlessly. Thank you very much!
![]() -Rudy |
|
#10
|
|||
|
|||
|
Actually it wasn't quite "flawless". There was a typo (') in oUsername:
Code:
<script type="text/javascript">
<!--\\
//fix login box without editing the program files
window.onload = function () {
console.log('log');
oUsername = document.getElementById('rcmloginuser');
oPassword = document.getElementById('rcmloginpwd');
oUsername.style.width = '180px';
oPassword.style.width = '180px';
}
-->
</script>
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
| For more information about the ads and why they're here, please see the FAQ |