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

Title: Lniux Love - Header Issue
Post 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.
Title: Re: Lniux Love - Header Issue
Post by: Ricky on February 21, 2012, 06:57:53 AM
Ahem, that can be solved, for now , in theme's css/index.css , find
Code: [Select]
div#header div.user {
    float: left;
    height: 100%;
    margin-top: 1em;
    overflow: auto;
    width: 45%;
}
Replace with :
Code: [Select]
div#header div.user {
    float: left;
    height: 100%;
    margin-top: 1em;
    width: 45%;
}