Weird things happening

Permalink
yet another question..sorry!
can anyone help with this I have a number of Javascripts on the site I'm playing about with to see how these work however things seem to be going all over the place ie images in edit page section (blue ticks) and this also does not work I have attached a screen shot any help would be much appreciated

1 Attachment

claire
 
Remo replied on at Permalink Reply
Remo
I guess this is a simple css problem.

Since c5 has an "in-site editing system" it shared a few css stmts with your site.

If you have a css like this:
div {
  width: 1px ! important;
  float: right;
}


I wouldn't be surprised if you have a few problems with c5.

You have to create a css like that

#page #block1 div {
  width: 1px ! important;
  float: right;
}


Firebug is helpful in this situation, just inspect the element with the blue tick and you'll quickly see what css file is responsible for the blue tick...