• I have the Adventure Theme and would like to move the bottombar (with the title of the blog and “about” link) to the top of the page. How do I do this? I can see #bottombar in the editor but am having trouble finding the correct code tomove it. My blog is healingnaturephotos.com.

    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • #bottombar {
    	background: url(images/bars.png);
    	width: 100%;
    	height: 50px;
    	position: fixed;
    	text-align: left;
    	bottom: 0;
    	left: 0;
    }

    change bottom: 0; to top: 0;

    with the bar at the top, you may need to adjust the style of #center:

    #center {
    	width: 1000px;
    	margin: 50px auto;
    	position: relative;
    padding-top:30px;
    }

    Thread Starter lizimages

    (@lizimages)

    Perfect!!! That fixed it– thank you!

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘I want the #bottombar to be on top’ is closed to new replies.