Welcome Guest [Log In] [Register]
We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Add Reply
Assistance with Quick Login's missing attributes.; Missing something vital apparently.
Topic Started: Jun 2 2008, 12:59 AM (416 Views)
Ryuusei
Member
 *  
This is the deal. I'm trying to create a new IF site, and I'm using a friends dead IF site to modify a skin (of there will be proper credit with links to the original, yes), but it appears that in the side bar, the Quick Login feature doesn't want to let us bold or add borders to the value fields.

Here's the site, take a look to the left at the quick login section, and notice how it's just text, but if you decide to click it gives you the option to type.

Problematic Page

Specifically, I want the black border (or gray, whatever, I just need to get it to show up) to show up so it's not just seemingly free floating text. It looks... Bad. And I'd also like to figure out why the Go button isn't working.

I pulled the code out into a separate HTML editor on W3Schools, and everything functioned correctly yet on the site, it doesn't want to.

I have absolutely NO clue how this is working, so here's the code for it.

Code:
 
<br><div class="tableborder" value=2px>
<div class="titlemedium{ background-color: #edebe7
}"><font size=3><center>Quick Login.</font></div>
<div class="tablepad">
<span class="desc"><img src="http://fanatikskins.ratemymullet.com/uploads/ratemymullet.com/fanatikskins/post-7-1202770740.png"><center>

<form style='display:inline' action="http://fanatikskins.ratemymullet.com/index.php?act=Login&CODE=01&CookieDate=1" method="post">
<div align='center'>
<input type="text" class="forminput" size="10" background-color="#F0F0F0"name="UserName" onfocus="this.value=''" value="Character" />
<input type='password' class='forminput' size='10' name='PassWord' onfocus="this.value=''" value='ibfrules' />
<input type='submit' class='forminput' value='Go' />
</div>
</form>


Alright, so any comments or anything, I need it so please and thanks in advance.

~Ryuusei
Offline Profile Quote Post Goto Top
 
Garath531
Member Avatar
Look, up in the sky! It's a bird! It's a plane! It's Superman!
 *   *   *   *  
This problem is fairly simple to correct. First go into the ACP and, on the left hand side of the screen, click on the link that says "Manage Style Sheets". There is a line in your CSS which says this:
Code:
 

.forminput, .textinput, .radiobutton, .checkbox { font-size: 10px; font-family: verdana, helvetica, sans-serif; vertical-align: middle; border: #E0E0E0 0px solid; background-color: #CBCBCB; color: #444; }


You notice that in that code there is a part which says:
Code:
 

border: #E0E0E0 0px solid;


Change the 0px to 1px.

Your line in the css should now look like this:
Code:
 

.forminput, .textinput, .radiobutton, .checkbox { font-size: 10px; font-family: verdana, helvetica, sans-serif; vertical-align: middle; border: #E0E0E0 1px solid; background-color: #CBCBCB; color: #444; }


That should fix the problem.

Also, in order for your quick login to work for your board, you need to change a few things in the code you provided.

Find this line:
Code:
 

<form style='display:inline' action="http://fanatikskins.ratemymullet.com/index.php?act=Login&CODE=01&CookieDate=1" method="post">


Change that line to:
Code:
 

<form style='display:inline' action="http://z9.invisionfree.com/The_World_of_Madima/index.php?act=Login&CODE=01&CookieDate=1" method="post">


That should solve your problems.
Offline Profile Quote Post Goto Top
 
Ryuusei
Member
 *  
Thanks, that solved it all!
Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · zIFBoards - Skinning & Code Support · Next Topic »
Add Reply