When displaying site name, it sits under the main navigation block.

Comments

physiotek’s picture

same here

Christopher Herberte’s picture

OS and browser versions please??

How do we like the theme thus far? Do not be shy posting ideas and/or feature requests too.

physiotek’s picture

hi,

here i have the latest Flock (FF clone) with WinXP.
otherwise the theme is very nice. i like a lot the colors and the left margin with the arrow.

kylebrowning’s picture

I was using safari, and FF 2.0.0.12.

Theme looks great, Id love another region though.

thefikus’s picture

Also happens to me in FF 2.0.0.11 on Kubuntu 7.04

David Davis’s picture

I think that it is because of 2 reasons. First, #sitename doesn't need to be floated...I removed the float and the name partially positioned itself where it belongs...

Secondly, #sitename is in #header-left, which is only 230px wide, so most of my site name is getting pushed down anyway. It would probably be better to position the header above the primary links section.

Here is how I fixed it:

CSS - I had to resize the #sitename font-size because my site's name is too long. I also adjusted the top margin from 17px to 7px, and increased the #slogan font-size to 14px;

#sitename {
font-size:20px;
letter-spacing:2px;
margin-top:7px;
}

#slogan {
font-size:14px;
color:#ccc;
letter-spacing:1px;
}

And then in the HTML, I moved the #sitename div into the #header-right div, and I placed the #slogan inside of the #sitename div.

<div id="header-right">

        <div id="sitename">
          <?php if ($site_name) { ?><a href="<?php print $base_path ?>" title="Home"><?php print $site_name ?></a><?php } ?>
        <div id="slogan">
          <?php if ($site_slogan) { ?><?php print $site_slogan ?><?php } ?>
        </div>
        </div>
        <div id="primary">
Kurse’s picture

This issue still exists using FF 2.0.0.13 and Vista. Made changes recommended by David Davis, but that didnt correct the issue fully.

As for recommendations/Suggestions, a right sidebar/region would be awesome.

Other than those minor issues, I love the theme!

Christopher Herberte’s picture

Status: Active » Fixed
StatusFileSize
new47.7 KB

I've fixed and committed this, sorry for the delay ppls. See changelog for specifics, I've attached a screenshot -- as you can see the Title and slogan can be very long :P Thanks, keep the feedback coming.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.