Re: Images added in Cuteeditor Designer are treated as DIV, instead of IMG in Firefox

  •  11-25-2011, 6:52 AM

    Re: Images added in Cuteeditor Designer are treated as DIV, instead of IMG in Firefox

    I get the following HTML:
     
     <img style="position: absolute; left: 20px; top: 20px;" src="https://d2img01/C09C5F897CC84DCC800E751B1B93A326/pix/d0ac8de1cc174a2c96b4a74ca855353e.JPG" alt="" />
     
    <div id="ParentDIV" style="position: absolute; overflow: hidden; width: 194pt; height: 124pt;">
    <img style="position: absolute; left: 147px; top: 19px;" src="https://d2img01/C09C5F897CC84DCC800E751B1B93A326/pix/5f7f6daae3b84f1b9bdff817cdd16f92.JPG" alt="" />
    </div>
     
     While I should get the following HTML for all the images to work properly:
     
     <div id="ParentDIV" style="position: absolute; overflow: hidden; width: 194pt; height: 124pt;">
        <img style="position: absolute; left: 20px; top: 20px;" src="https://d2img01/C09C5F897CC84DCC800E751B1B93A326/pix/5f7f6daae3b84f1b9bdff817cdd16f92.JPG"  alt="" />
        <img style="position: absolute; left: 20px; top: 20px;" src="https://d2img01/C09C5F897CC84DCC800E751B1B93A326/pix/d0ac8de1cc174a2c96b4a74ca855353e.JPG"  alt="" />
    </div>
     
     
View Complete Thread