css

Images are only visible the first time in Safari

In safari, the images in the middle section load fine the first time you opend this page http://cacrochester.com/ If you refresh the page, the images are not visible. It seems to only be in Safari (so far on browsers that i've tested). Anyone know why? I'm using the NivoSlider btw. ...

Cross-browser compatibility problem with IE

My site is incompatible with IE. How can I fix this problem? ...

CSS Sticky Footers - two horizontal scrollbars??

I am using the CSSStickyFooter.com tutorial in my amateurishly imperfect attempt to get the perfect sticky footer working. This is a specific question regarding the overflow:auto; style on the "main" div. With this in place, and when the window is narrowed by the user, I get a horizontal scrollbar halfway down my page. Can't this added...

jQuery to change global css property from within an iframe

I have using colobox which is a jquery modal window to create a login/regiestration process through modal pages called in an iframe. I am hoping to be able to switch the css from a link within the iframe. I am trying to change the height of the modal window when switching between ajax pages within the iframe. If I try something like ...

CSS text-transform not sending upper case to Business Layer

Hi, I created a simple markup such as this. <html> <head> <head> <body> <input type="text" style="text-transform:uppercase" /> </body> </html> I was assuming that the browser will capitalize all inputs and indeed it was transformed In my business layer, I am assuming that browser will send the form data on Up...

HTML, printable hyperlink references, like table of contents

A link in an HTML document is normally clickable. However, on a printed page, that feature is by natural causes not available. <a href="#foo">Link to foo</a> [... loads of content ...] <a name="foo"/>Here is foo Klicking on "Link to foo" on screen will scroll the page to the right place. Is there a way to refer to page number instead ...

xml rendering in html

I have the foll xml can anyone please guide me how can i render it in html table. <order po="123" contact="me" comment="out of stock reorder"> <shippingAddress line1="123 Fake St" city="Madison" state="WI" zip="12345" /> <lineItem id="1" quantity="50" comment="for me"> <part number="XYZ123" descr="Spark Plug" price="5.00" we...

Corner radius applied only to specific corners

Guys, I've this tabs that I wanted to make rounded only on top-right and top-left corners. But it ended up rounding all 4 corners. What I did: <mx:TabNavigator id="myTabNav" x="58" y="61" width="584" height="200" creationComplete="setColors(event)" styleName="myTabStyle"> <pages:One label="ThisOne" id="one" name="One"/> <pages:...

What are minimum requirement to show any content with styling on browser?

What are minimum requirement to show any content with styling on browser? My one curious friend who is learning about html and css asked some questions to me.with example. ( I uploaded his example page to my hosting) What are minimum requirement to show any content with styling on browser? Why this page is working with styling? see th...

Scroll by clicking and dragging inside div instead of clicking scrollbar

This CSS is for a DIV in an MVC2 application. The overflow:auto line adds a horizontal scrollbar to the div which is needed since the table in the div is very wide and extends past the edge of the page. #main { padding: 30px 30px 15px 30px; overflow:auto;/* this adds horizontal scroll*/ background-color: #fff; margin-bo...

Tabs on a mobile site - Javascript turned off, what to do??

I have a site that will be used mostly on mobile devices, the top nav are tabs but right now they are hard coded instead of using Javascript. We are taking into consideration all mobile devices that will not have javascript. So, is there a way to gracefully degrade javascript Tab functionality to then to to the right html page? ...

Wordpress post image (details) default class

I want to set a default class for all images in a single post eg. they have a red border. How do i do that? Something like on http://net.tutsplus.com ...

webpage css overrides ckeditor 3 style

I've got a page where I load screen.css which contains an evil rule, which for various reasons I cannot remove or modify: a { background: red !important; } I use CKEditor 3.x on the same page and the problem is that, no matter which style I choose (v2, kama, office2003), the buttons of the editor look red. FCKeditor 2.x didn't ha...

show and hiding order list

String + if user click the + sign i want to show some oder list then String - If the user click the - sign i want to hide order list How to acheive this with javascript , not using ajax , jquery ...

jQuery - CSS DropDown Navigation Items - How to build a Carrot Dropdown

Hello, I'm interested in learning the smart, elegant way to build navigation items throughout a site that have the carrot that when clicked expands a list of menu items. I would like for the menu items to be built dynamically (not necessarily all with ajax). But they shouldn't be hard coded on the page. That appears to be how sites lik...

CSS & Jquery drop down menu: the third level that 'over-passes' at the right edge of window

I have problem with the third level of a drop down menu, which 'over-passes' the right edge of the document window when you hover it's parent, you have a look here to see what I mean, if you hover 'Accounts' -> 'Manage', http://ec-ener.eu/dump/index1.php I want that third level to 'float' to its parent's left when it 'auto-detects' th...

Floating Div boxes limited by magic

Hello, Heres the link to the page In question.... http://team2648.com/OTIS2/DivTest.html So If you look at that page, If your browser is small enough, you see that below the box with the red background, there is a bit of space, Why doesn't the box below float up? The HTML Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//E...

IE9 ignoring CSS for certain pages?

I have different sites being served up, essentially running off the same code. One page renders correctly, while the other appears to have no CSS available. When I bring up the IE9 developer console for the broken page, I see: SEC7113: CSS was ignored due to mime type mismatch So that explains why the pages render improperly, but the ...

Textbox css with info

I want to create a textbox for the username But once he starts typing i need a small image with the requirements of username to be displayed dynamically .. can anyone help me ?? ...

Fixed-size HTML table cells, even when content is too big?

Hello, I want to create a diagram using HTML. I used a table with fixed with columns. Everything looks well, but if the content of the a cell is too long, the column width is expanded. I would like the column width to remain fixed, even if some of the content is hidden. Is there a way to do so? Thanks, Noam ...