Splendio Header
-
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: (visible only to logged in users)
-
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.
-
- The topic ‘Splendio Header’ is closed to new replies.