Sure,
in Hydrogen/main.tpl it look something like
<!-- forum_messages -->
<div id="brd-navlinks" class="gen-content">
<!-- forum_admod -->
<!-- forum_navlinks -->
</div>
<div id="brd-wrap" class="brd">
<div id="brd-head" class="gen-content">
<!-- forum_skip -->
<!-- forum_title -->
<!-- forum_desc -->
</div>
(...)
You have to put <div id="brd-navlinks" class="gen-content"> below <div id="brd-head" class="gen-content"> div. So it would look like.
<!-- forum_messages -->
<div id="brd-wrap" class="brd">
<div id="brd-head" class="gen-content">
<!-- forum_skip -->
<!-- forum_title -->
<!-- forum_desc -->
</div>
<div id="brd-navlinks" class="gen-content">
<!-- forum_admod -->
<!-- forum_navlinks -->
</div>
You would have to do similar things in admin.tpl
Now it's time for CSS. You have to edit #brd-navlinks Hydrogen.min.css:322, make sure to delete position: absolute and position tags ( top: right: etc. ) and to add float:right;. So it would look something like this.
#brd-navlinks {
background: #222;
border: solid 0px;
color: #EEE;
height: 50px;
line-height: 50px;
float: right;
}
Then it's time for #brd-head in Hydrogen.min.css:438. Add float: left parameter so it would look something like that.
#brd-head {
color: whiteSmoke;
border: solid 0px;
padding: 0;
padding-left: 48px;
background: transparent;
float: left;
}
Last, but not least .brd-page in Hydrogen.min.css:1085. Add margin-top, that suits your header height, by default it's
.brd-page {
background: whiteSmoke;
margin: 0 auto 0 auto;
padding: 1.5em;
position: relative;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 7px 7px;
-moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 7px 7px;
box-shadow: rgba(0, 0, 0, 0.3) 0px 7px 7px;
margin-top: 92px; !important
}
Glad I could help . Please note, that I've added license to this theme.
If any of my dropbox link fails with 404 error, change dl.dropbox.com/u/56038890/punbb/*.zip in address to 82283017.
Currently working on rPlus - responsive theme for developers to create their own themes basing on this one.