• Hi. I’m attempting to use a plugin “Theme My Login”. However, the css that controls the text of the password field is the same option that controls “Context text” in my Weaver them. The user name box has a grey background so it isn’t an issue, however the password box has a white background. I can’t seem to find where to change this!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Without seeing the site no way to help. Try using a browser tool like Firebug to find the CSS you need to change.

    You might also want to use Weaver’s dedicated support forums here:

    https://forum.weavertheme.com/

    Thread Starter AJ1820

    (@aj1820)

    Sorry! The website is fantasyfools.net.

    Here is the HTML…not sure if anything can be gleaned from it. I’m actually noticing quite a bit of code from the “Theme My Login” plugin. Can anyone tell from this what part of CSS I should look at? From what I can tell the only difference is that one box type is “text” and one box type is “password”.

    <div id="main">
    
    	<div id="container" class="container-page">
    	<div id="content">
    	    <div id="post-497" class="post-497 page type-page status-publish hentry">
    <h1 class="entry-title"  >Log In</h1>
    		    <div class="entry-content">
    <div class="login" id="theme-my-login">
    			<form name="loginform" id="loginform" action="/?page_id=497" method="post">
    		<p>
    			<label for="user_login">Username</label>
    			<input type="text" name="log" id="user_login" class="input" value="" size="20" />
    		</p>
    		<p>
    			<label for="user_pass">Password</label>
    			<input type="password" name="pwd" id="user_pass" class="input" value="" size="20" />
    		</p>

    No, can’t help with CSS issues without seeing a site live… A browser tool like Firebug should show you the relevant CSS.

    OOPS, sorry, I see you DID post a link – I’ll look at it now :)!

    See if adding this to your custom CSS does it:

    input[type="password"] {
        background-color: #808080;
    }

    Thread Starter AJ1820

    (@aj1820)

    Awesome it worked! Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘login password field css options’ is closed to new replies.