Posts

Showing posts with the label Div

Give footer for CFPresentation Slide

Image
You can create presentations using CFPresentation in ColdFusion 8 . It is very fast and gives the developer a lot of options like showing notes, outline and search. You can include text, Image and swf movies to a presentation. But, if you want to create a footer section, that is not readily available. To create a footer section, you can put a div inside the CFPresentationSlide and align such that the content is always displayed at the bottom. Use the code below to show the footer section in the presentation. <div style="position:absolute;top:70%"> <font style="font:verdana;font-size:8px;">© Prasanth Kumar.S</font> </div>

Flash Movie always on top in browser

If you happen to embed a Flash / Flex .swf file in a HTML page and also put a full screen Div over the content, you could probably see that the flash file is on top of the Div even though you set the z-index of the Div. The solution is simple. Add the wmode param while setting the swf Object to the page. This will make the flash file appear below your Div.