Logotype size and alignment

Latest Reply from Dave at 2014-07-28 05:12:44
Hi,


I have a logotype that I can't get nicely aligned on the RetroPress Theme.
You can take a look at http://www.kihlbergsgardensantik.se/wrdpess/ and see what I mean.

What size should I have on the logotype to make it fit nicely onto the page for the logotype?

Thank you in advance!

Sincerely,
Andreas
Hi!
You can fix this by editing the style.css file. Just increase secondarymenu-container height here from 155px to 167px:
	/*------------------------------ MENU ------------------------------*/
#secondarymenu-container {
height: 155px;
position:relative;
z-index:11;
}
Thank you Alice!

I did the modification, but to the naked eye, I see no difference.
What size shall I make the Logotype image?
As you can see on the attached image, I'd like the logotype to be above the "menu" and under the "rippled paper" at the top.


Thank you in advance!

Sincerely,
Andreas
Hi!
Replace the code:
	#logo {
position:absolute;
left:50%;
}
#logo img {
margin-left:-50%;
}

with:
#logo {
position:absolute;
left:50%;
margin-top: 31px;
}
#logo img {
margin-left:-50%;
height: 140px;
}
in the file style.css. At any rate it is not enough to know only the appropriate height of logo. You need to move it down and place under the menu. It is better to replace the code I gave.

Leave a reply

Add codeAdd image