|
Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 0
|
|
Hi
dont want to sound dumb here, but when I installed it is still in the normal format,
but I looked in the code and it one table so it should really go on the second line, and I tried it in a place there was plent of space, ?? thanks
R
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 14
|
|
Hi Rusty,
I have just updated the zip to contain v1.02 which doesn't contain any tables. The download hadnt updated properly for some reason.
Thanks Anthony.
|
|
|
|
|
|
|
Creative Unique Minimal Joomla Templates
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 0
|
|
thanks! wil try
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 0
|
|
Hi
I am not sure , why I have added this in the widest part of the site and the two input boxes are not top of each other, must I use css.?? but there does not seem to be <br> s so i amnot sure why it would do this??
thanks
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 14
|
|
Can you post a url?
|
|
|
|
|
|
|
Creative Unique Minimal Joomla Templates
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 0
|
this part of the code and only the fact that is physically above but no code to force ti do this,
??? thanks
| Code: |
<input name="username" id="mod_login_username" type="text" class="inputbox" alt="username" size="10" />
<input type="password" id="mod_login_password" name="passwd" class="inputbox" size="10" alt="password" />
<input type="submit" name="Submit" class="button" value="<?php echo _BUTTON_LOGIN; ?>" />
<br />
<input type="checkbox" name="remember" id="mod_login_remember" class="inputbox" value="yes" alt="Remember Me" />
<label for="mod_login_remember">
<?php echo _REMEMBER_ME; ?>
|
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 0
|
|
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 14
|
|
Looks like there is some sort of css controlling it.
Try putting #mod_login_username .inputbox,#mod_login_password .inputbox {width:150px} at the bottom of the css file.
Should do the trick.
|
|
|
|
|
|
|
Creative Unique Minimal Joomla Templates
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 0
|
|
Hi
I have added to css, does not do anything, this is really wierd because this nothing forcing those two login boxes be on a differnt lines but they are...
btw there was nothing in the documens to add css, is this a standard css tag
#mod_login_username .inputbox,#mod_login_password .inputbox??
cheers
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 14
|
The css tags are standard for the Joomla login.
But a quick check of the source looks like you dont have the latest version. There shouldnt be any tables in the output. also just check that you have JB_login published and not the default login. Sounds like a silly mistake but Ive done it quite a bit 
|
|
|
|
|
|
|
Creative Unique Minimal Joomla Templates
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 0
|
|
Hi
I did actually unpublished yours for a bit, I have got the lastest now at the bottom, still the same, I am ???
tx
R
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 14
|
|
#mod_login_password, #mod_login_username {
width: 90%;
}
should be
#mod_login_password .inputbox, #mod_login_username .inputbox{
width: 150px;
}
|
|
|
|
|
|
|
Creative Unique Minimal Joomla Templates
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 0
|
Hi
added to the css already but made sure, and still the same ,, I dont know these things were sent to try us?
this shold work, there is nothing to force those on to different lines, but it does, ???
tx
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 14
|
OK try this:
| Code: |
input#mod_login_password.inputbox,
input#mod_login_username.inputbox{
width: 150px;
}
|
|
|
|
|
|
|
|
Creative Unique Minimal Joomla Templates
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 0
|
|
woooohoooooowaaaa!
That has worked!Tx
The registration is not on a single line as yours, is that another css thing?
thanks for the help
R
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
Re:Making jb login horizontal? 1 Week, 1 Day ago
|
Karma: 14
|
Apologies looks like I uploaded the login module used in the Helio template.
Open the mod_jb_lohin.php file and remove the <br /> after the submit button.
That will push it onto one line.
|
|
|
|
|
|
|
Creative Unique Minimal Joomla Templates
|
|
|
The administrator has disabled public write access.
|
|
|