Need help? Check out our Support site, then


Splendio Header

  1. lemonadeandlaughinggas
    Member

    How do i change the position of the header so it is above the title and description of the blog?

    The blog I need help with is lemonadeandlaughinggas.wordpress.com.

  2. This depends on the theme you are using. I checked http://lemonadeandlaughinggas.com/ and I see that you are currently using the Splendio theme. You can try using absolute positioning to move things in the header area around. Here is one possible example:

    #header {
    	position: relative;
    }
    
    #branding {
    	position: absolute;
    	top: 179px;
    }
    
    #header-auxiliary {
    	position: absolute;
    	top: 179px;
    	right: 0;
    }
    
    #container {
    	padding-top: 111px;
    }

    Note that this example depends on some of the other CSS you already saved, so just know that if you change the other CSS you added before, it will affect this too.

    You should adjust the numbers to move things around until they're placed where you want.

  3. lemonadeandlaughinggas
    Member

    thank you that worked a treat!!

Topic Closed

This topic has been closed to new replies.

About this Topic