Adding content problem - missplaced selection areas
Permalink
hi
i have a problem with my theme. its strange because this is my 5 theme i make on a same way and first time this problem appears.
The content areas selecting bars(Main,HeaderNav,Footer...) , when u move over them, with the cursor to ad some content, the gray overlay that appears is not over the dashed rectangle , where it should appear but under it about 10-15px???
First time i seen this.
Its annoying because u can not properly select the content that u would edit.
the theme is build over a html page, structure created with tables not divs
1 Attachment
i have a problem with my theme. its strange because this is my 5 theme i make on a same way and first time this problem appears.
The content areas selecting bars(Main,HeaderNav,Footer...) , when u move over them, with the cursor to ad some content, the gray overlay that appears is not over the dashed rectangle , where it should appear but under it about 10-15px???
First time i seen this.
Its annoying because u can not properly select the content that u would edit.
the theme is build over a html page, structure created with tables not divs
1 Attachment
If i could i would buy u a beer :)
it was the position, as u said.
i had a position:relative in my #body(div), and none in my #Header(div),#Main(div)... areas of my CSS. after i deleted the one from the #body div, all the selectable areas of my page hase gon to place.
thnx a lot Carsten!
it was the position, as u said.
i had a position:relative in my #body(div), and none in my #Header(div),#Main(div)... areas of my CSS. after i deleted the one from the #body div, all the selectable areas of my page hase gon to place.
thnx a lot Carsten!
Hi again rutrem
Glad to help, and perhaps if our paths should ever cross, you could buy me a beer then :0)
Until then, take care
//cheers from Denmark
Glad to help, and perhaps if our paths should ever cross, you could buy me a beer then :0)
Until then, take care
//cheers from Denmark
Thnx a lot for ur help!
Best wishes!
Best wishes!
I experienced the same thing at another time.
With my site it was because I had used: "Position: absolute;" on my div constuctions when I build my site.
However I solved this by giving the surrounding div a CSS rule that eliminated the "Position: absolute;"
If this is the case by your site, try putting this in your CSS:
#yourdiv {position:relative;}
And see if this helps
//Carsten