In the user profile I get a huge gap between the node content and the navigation bar (see the attached file). I have tried to correct it without success.
Can someone tell me how to fix this?

Comments

nomonstersinme’s picture

It looks like you forgot to attach your image.. if you can provide me with an image or possibly a link i can help you solve this problem!

nomonstersinme’s picture

Status: Active » Postponed (maintainer needs more info)
sapox’s picture

StatusFileSize
new51.94 KB

Yeap, sorry for that.
Here is the image. Unfortunately I'm developing this site offline so I can't provide any link.

The strange thing is this "gap" is present even in the default orange theme.
Hopefully the image can clarify what I mean.

nomonstersinme’s picture

Ah yes.. this is an error of mine.. the gap was meant for a user profile picture.

To fix replace .profile h3 in css/style.css with:

.profile h3 {
  border-color: #EEE;
  padding: 10px;
}

And remove the following:

.profile dt,
.profile dd {
  float: right;
  width: 80%;
}

does that help?

sapox’s picture

StatusFileSize
new47.68 KB

Thanks nomonstersinme.
It looks much better now, although the H3 title seems to have an indentation that I couldn't remove.

nomonstersinme’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

Oh thats just the padding on the h3... if you change that to padding: 10px 0; that will go away. :)