Quote:
Originally Posted by PitbullMean
Its odd I checked my site today and for some reason my login bar is no longer working the portion after you log in where i have the headings for dashboard and so on works but the to text boxs no longer appear.
|
It sounds like you have an issue with your CSS. You have some strange values for class names, such as:
Code:
<div class="login-row.password"><label for="pwd"><input type="password" name="pwd" id="pwd" size="22" autocomplete="off"/><span></span>Password</label></div>
<span class="generic_surround float-left">
When you are logged in hit F12 in your browser and inspect the header to see if you can see the text fields you are referring to in the page source. If you can check the developer tools(how to do this varies by browser) to see what CSS values are being applied to your text fields. It may be as simple as updating your class names, or adding CSS to "display: block" your fields.