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.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
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.
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.
thank you that worked a treat!!
This topic has been closed to new replies.