Webmaster's Community
		Designing and Development => Open Source => SMF Support - Simple Machine Forums => Topic started by: tlrprojects on February 21, 2012, 03:40:39 AM
		
			
			- 
				I have just installed and enabled the Linux Love theme. In the center of the header there is a "scroll bar" and it will move the "Hello Yourname" up and down. I cannot find anyway to remove it.
Here is my site http://tlrprojects.com
Thank you for any help.
			 
			
			- 
				Ahem, that can be solved, for now , in theme's css/index.css , find 
div#header div.user {
    float: left;
    height: 100%;
    margin-top: 1em;
    overflow: auto;
    width: 45%;
}Replace with : 
div#header div.user {
    float: left;
    height: 100%;
    margin-top: 1em;
    width: 45%;
}