Hello

I have a problem with the right columm.

It's placed below the main content.

My site is www.geukes-ict.nl Where you can see the random image in the right column below the main content.

how can i set de random image higher near the main content?

Comments

roberto211’s picture

Status: Active » Fixed

ive fixed the problem.

Alan Cooney’s picture

Status: Fixed » Closed (fixed)
roberto211’s picture

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

i thought ive fixed the problem with the following code.

#sidebar-right {
float:right;
margin-top; -400px;

but on every page the hight of the right sidebar is different.
is it possible to get the right sidebar on every page at the same hight?

Alan Cooney’s picture

Assigned: Unassigned » Alan Cooney
Status: Postponed (maintainer needs more info) » Fixed

The problem is that you have content which is too large for its container. To fix this change:

#main {
float:left;
width:500px;
}

in style.css to

#main {
float:left;
width:500px;
overflow: hidden;
}

Anonymous’s picture

Status: Fixed » Closed (fixed)

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