Site-slogan position is overlain by title. In FF2 and Safari 3.

CommentFileSizeAuthor
#2 siteslogan title overlain.png188.01 KBmarkbev

Comments

theneemies’s picture

Assigned: Unassigned » theneemies

Could you attach a screen shot? Thanks.

markbev’s picture

StatusFileSize
new188.01 KB

screenshot of problem in attached png file.

theneemies’s picture

The central column layout selection automatically places contraints on the type of content the theme is suitable for. Also, the horizontal placing of the title + slogan places additional constraints. In light of that, the following style.css edits are specific to your site title + slogan, and the theme will not be updated to reflect these changes. Also, the following recommendations are based on quick edits using firebug, and have not been tested across browsers/platforms.

In themes/dichotomy/style.css, replace the existing css selectors with:

/*style.css (line 138)*/
#site-name a {
 color:#588821;
 font-size:70px;
 position:absolute;
 text-decoration:none;
 top:120px;
}
/*style.css (line 151)*/
#site-slogan {
 color:#588821;
 float:left;
 font-size:25px;
 left:60%;
 position:absolute;
 text-decoration:none;
 top:162px;
}
markbev’s picture

Thank you theneemies! The edits are working on FF2 and Safari3 on my MacBook(intel).

theneemies’s picture

Status: Active » Closed (fixed)