My "Remember Me?" Moves up and down?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • HjDa
    New Member
    • Feb 2010
    • 10
    • 4.1.x

    [CMS] My "Remember Me?" Moves up and down?

    My "Remember Me?" appears in a certain place in the CSM section. But in Forum an Blogs it's appear in a different place? Guess it's a CSS problem?

    Click image for larger version

Name:	rememberme.jpg
Views:	2
Size:	32.4 KB
ID:	3719354
    Last edited by HjDa; Fri 17 Dec '10, 2:58am.
  • arvid
    Member
    • Jan 2005
    • 68

    #2
    This is because of a CMS only css class. Search for "label, .label" in vbcms.css template.

    Code:
    label, .label {
    	font-weight:bold;
    	padding: 5px 0;
    	display:block;
    	float: {vb:stylevar left};
    	clear; {vb:stylevar right};
    }
    To fix the error, add the following css under the above code

    Code:
    .remember label {
    	padding: 0;
    	display: inline;
    	float: none;
    	clear; none;
    }

    Comment

    • HjDa
      New Member
      • Feb 2010
      • 10
      • 4.1.x

      #3
      Thanks!!!!

      Comment

      • arvid
        Member
        • Jan 2005
        • 68

        #4
        No worries!

        Comment

        Related Topics

        Collapse

        Working...