Hi,

I like the Pixture_reloaded theme a lot.
Could someone may be tell me how to get the logo on the right, instead on the left (where it is situated on default).

Thanks a lot in advance for your reply!

greetings,
Martijn

Comments

Jeff Burnz’s picture

Somewhat depends on what other customisations you've done or want to do. It would be beneficial to see a live site or know exactly what else will be appearing in the header such as site name, search and primary links/superfish menu and have you altered the header such as making it taller. The source order and CSS combo is quite tricky (so that it supports any combination of the above) - getting the logo over on the right will either be a real mare or really simple:)

summit’s picture

Hi,

Thanks for your fast reply.
Live site is http://www.toekomstgeheugen.nl/ (dutch site)
No I did not change anything yet, except the logo picture.

Thanks a lot for your quick response!

greetings,
Martijn

Jeff Burnz’s picture

Ok to just float it right and change the height to be equal to the height of the image, adjust the margin left and right to suit - tested in Fx.

layout.css (line 68)

#logo {
  float: right; 
  height: 86px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
marcbloem’s picture

I had to add also the next code in IE.CSS because IE7 displayed a space next to the logo when it is placed right.


#logo {
  margin: 0 -2px 0 0;
  }

Jeff, do you also know a 'better' solution to remove the space entirely?

Jeff Burnz’s picture

Not off the top of my head, a bit of negative margin shouldn't be a problem. Without seeing it I can't really say what the issue might be - frankly I'm a little stumped :/ There's no margin or padding, so I suspect it must be a float issue.

marcbloem’s picture

Hi Jeff,

On the website www.bastijn.nl/drupal is your theme (modified) with the logo on the right including the code used in my post (#4). As you might have noticed I am perhaps too critical, but the only thing is to help you improve your theme!

Regards, Marc

marcbloem’s picture

Hi Jeff,

I duplicated your theme, and replaced all the theme names, however all titles of non-module boxes are disapeared. Could you help me with this problem if you have some time left these days?

Marc

Jeff Burnz’s picture

Status: Active » Closed (fixed)

@marcbloem, please open a new issue since you have a different problem.

I am going to close this as the OP's issue is resolved.