css

jQuery dynamic CSS loading weird behavior

The app I am working on requires dynamic loading of CSS and JS, right now the solution is as follows: myapp.loadCss = function(css){ $("head").append("<link>"); cssDom = $("head").children(":last"); cssDom.attr({rel: "stylesheet", type: "text/css", href: css }); ...

jQuery - Minified gallery, change background-color via CSS?

Hi, I have a site where I randomize the background image using a php rotator script file. But I was thinking, is it possible to create a small preview gallery of each background image and make it so that when the user hovers over an image, the css background image of the site is changed on the fly? And when the user clicks on the image h...

Putting max. 30 characters per line with CSS

I have a paragraph of text: <p>Lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum lorem ipsum</p> How can I make sure that no more than 30 characte...

How to give cross browser transparency to element's background only?

How to give cross browser transparency to background only? I want to give transparency to background of ul { background: } only don't want to make text inside ul li a {} transparent. ul { filter: alpha(opacity=50); /* internet explorer */ -khtml-opacity: 0.5; /* khtml, old safari */ -moz-opacity: 0.5; /* mozill...

Can I ignore some website element when navigating using the tab key?

As question really. I have an input box on my page that I would like to ignore when navigating using the keyboard tab key. I'm using this input box as a simple bot honeytrap and positioning it off the page, so at the moment when using the tab key, it looks to the user as though nothing has focus when they tab to this element. ...

How to remove period (.) from OL numbering?

http://jsbin.com/urice I want to remove . after number. 1. should be 1 only With All browser compatibility inducing IE6 and validity. I need solution without javascript. Edit : If it's not possible with css only then a simple javascript and jQuery solution would be appreciated, thanks. ...

How to get rid of the double scroll bar problem when using an iframe

I've seen this problem on the web, and all the suggested solutions aren't working for me, so I thought I'd come here. I have a page that has an iframe. The top of the page is a dropdown menu, the rest of the page is the iframe. The idea like I'm sure everybody else does, is to have the menu stay stationary and the menu selection runs an ...

The columns (divs) with the play button inside them (img) are getting stretching their height.

The columns with the play button are stretching vertically in IE. Here is the link: http://ada.kiexpro.com/test2/news.html html: <table border="1"> <tr><td><a href="http://www.ntdtv.com/xtr/b5/2009/09/28/a354615.html#video" target="_blank"> <li>天國樂團訪印度佛教聖地Nagpur <span>2009.09.28</span><img src="images/play.gif" width="16" height=...

How do I apply css for textboxes only but not for all the <input> types like CheckBoxes, etc.?

If all browsers supported attribute selectors, we could easily do the following: input[type='text'] { font:bold 0.8em 'courier new',courier,monospace; } input[type='radio'] { margin:0 20px; } input[type='checkbox'] { border:2px solid red; But I don't think all IE versions of 6 and greater support this. I think I'd like to avoid ski...

Left floated element and unordered lists (ul).

Hello, I am trying to indent the li elements of a ul. There is a left floated div with an image in it. The li element will indent only if I add left padding that is wider than the image itself. If I float the ul left, this solves the issue, but then all elements after the ul are floated to the right of the ul. If you would like to loo...

Wrap CKEditor WYSYWG content with additional (non editable) HTML to apply element specific formatting

I am attempting to have the WYSYWG view within CKEDITOR display with the same formatting as it will within the final rendered HTML. I am currently applying the correct CSS through specifying the contentsCss property when loading CKEditor. This works fine for some of the formatting, however a lot of the css formatting is applied to elem...

Internet Explorer 8 - Div disappears on resize.

I have a page which works fine in Firefox and Chrome. I.E. 8 however decides to not show a div when the browser is resized. Most of the page looks fine, but the div I am using for the content does not and just disappears when I resize I.E. <div id="wrapper"> <div id="innerWrapper" style="width:215px;"> <div id="mainColumn" st...

How to accomplish scrolling text on Twitter home page?

Hi, On the twitter home page (not logged in), there a scrolling text in the middle below the logo. How is this accomplished? It stops scrolling when mouseover and also has a popup dialog on relevant text. Thanks, Mike ...

CSS browser safe way to apply a radius border?

I want to apply a 3px top left & top right radius border. How can I do this across all browsers (e.g. IE, WebKit, Mozilla)? And if the browser doesn't support the border-radius attribute, just default to no radius (square corner). ...

Anyone know a working CSS selector hack that works in recent Safari but not chrome ?

The title sums it up. I'll get this out of the way and say I am aware that css hacks are dirty ugly horrible things. Sometimes dirty problems call for dirty solutions though :) So does anyone know of a css selector hack that works for recent safari versions but is not a general webkit hack ? My site behaves properly in chrome but has a...

Drop-down menu disappearing in Internet Explorer only with slideshow

I'm hoping someone can see what I'm not seeing here: http://bit.ly/crosschurch The horizontal menu at the top has drop-down items, and it works fine in other browsers on this page, and all browsers on other pages. But in Internet Explorer, on this page with the slideshow, the menu disappears unless you move really fast. I've tried di...

Basic CSS question regarding background images for divs

I'm a programmer trying to learn some css and I've already run into a stumbling block. I have the following HTML: <div class="container"> <div class="span-24 last"> Header </div> <div class="span-4"> Left sidebar </div> <div class="span-16"> <div class="span-8"> Box1 </div...

Drop down menus and pathetic art of styling

Sorry folks, I must be brain-dead or something but I can't get the styling on these drop-down menus to cooperate. I have the color and the font right, but I have unwanted spaces between the list elements and the a and the a:hover sizes should be the same. I would appreciate some help getting this to work correctly. Here is the page ...

JQuery Tabs - Styling issue on page content load

Hello guys, First tab on my page has a lot of content, including text and pictures. This probably causes visual issue: Once user loads the page, for a second, he will see regular html list instead of styled tabs with background. Something like this: Tab One Tab Two Tab Three All javascripts and css are loaded on top of the page...

jQuery - Can I animate css properties? Background-image particularly

I know I can fade in and out divs and elements, but can I animate properties as well? I thought about this just now when changing background-image property of a certain div. And thought it'd be cool if the background image was faded in as well ;) Here's the code I'm using to replace background image. But can it be animated? var origina...