css

jQuery: A widget or plug-in to create text balloons

I need to create some balloons that will contain text messages, similar to what you would see on a BBS or a blog comments area. I am not looking for a tool-tips widget - There will be several per page and they will always be displayed. My requirements: Drop shadows, if possible, using images instead of the box-shadow style for compat...

what technology would you use to build a webapp that requires the use of a special font?

I'm planning a webapp. I have all the wireframes defined, the interfaces designed in photoshop, data structures etc. It will be built on php and mysql however I've been unable to decide on which technology to use as a GUI. All your insights are welcome. The problem with going the html way is that the GUI makes use of a special font that...

trying to using non-scoped jqueryui widgets within a jquery-ui scoped container

Hello I have a scoped jquery ui theme for my page styling. I want to use an unscoped ui component WITHIN this layout ( the user will be using the themeswitcher utility to customize the look of their 'custom component'. ) like this <div class="my-theme"> content and a bunch of widgets here <div class="unscoped-theme"> ...

html button is rendering below the input box

I have a input box for users to enter search terms in. I have a input button beside the search box. for some reason the button is rendering below the search box. I want the button to be right beside the input box. My html: <div id="searchbox"> <form method="post" action="/search/test"> <div class="se...

Text On Image, how do i do this?

I have this: But i want to have place text in the middle like this: How do i do it? Im sorry forgot to mention i want this in the web.. so like html, so i would use a div or a span to do it ...

Text On image HTML,css..

I have this: But i want to have place text in the middle like this: How do i do it? I would like to do this in html, so i would use a div or a span to do it My other question got closed, due to "not a real question", but i am specifying what programming language i want to do this in now. ...

How to make the web page to download bottom to up?

Every web page load from top to bottom means first my header will be loaded then content and finally footer. How can i make it to load from bottom to up.means first footer then content and then finally header content. Are you getting what i am trying to say.?? OR to make it load from right to left OR left to right.. ...

Format CSS file (compress/uncompress)

Hi there, I want to format my css files used in my web project. Formatting means: Compress/Uncompress CSS file Example: *{margin:0;padding:0;}body{min-height:101%;font:69%/141% Arial,Helvetica,sans-serif;color:#2d3742;} to: * { margin: 0; padding: 0; } body { min-height: 101%; font: 69%/141% Arial,Helvetica,sans-serif; ...

DIV goes to another line when resizing the browser.

I have a main div, and inside it..I have 2 divs, both left aligned. For some reason(or property), when I drag the right of my firefox to make the browser smaller, the 2nd div goes on to the second line. I would like this div to stay on the first line, instead of jumping down a line. How can I do that? I am assuming overflow property? ...

CSS to create a group of text with an even left edge with auto width

I'm trying to create a layout something like this (you'll need to use your imagination): A B B B A is a piece of text, B is a piece of text whose left edge I would like to line up evenly with itself. To further complicate matters, B is by default hidden, and should not be taken into account in setting up the page flow, but inst...

Is there a good repository of IE 6 considerations?

I've been lucky to develop websites for the past 3 years for companies that don't need to support IE 6 in any way. I've just accepted a development job with a company that works exclusively with IE 6 customers in the financial field. These people may be hemmed in by corporate IT departments or haven't upgraded, or whatever the reason i...

Getting rid of extra padding for RadTab

I don't know how strong the support of RadControls over here is, but it can't be worse than Telerik(there I'm lucky to get a response in 2-3 days), so I'm going to try here first. Basically, I'm trying to do custom theming(using just CSS classes) throughout my application, so I tried setting the CSS classes needed on the telerik RadTab ...

jQuery Tools (horizontal accordion) combined with jQuery UI (tabs) ?

Hello everybody and thanks for taking your time. I got an existing project where the main-page uses a horizontal accordion for the main content area from jQuery Tools (the Tabs element). Now i have to implement a Tabs-menu (into one of the existing accordion pages) which is build with jQuery UI (the main container are Tabs and inside o...

Trouble with CSS Link Positioning

Hi, I'm experiencing an issue with my CSS when working in Firefox. It should be pretty simple. Everything is working fine except that I cannot seem to get the links in the header aligned to the right (the color will change as well as any other modifications except alignment). The only way I can do it is to float it right, but that re...

CSS content overflow out of box IE <6

I have a div that holds some text, it has a background with a border, but for some reason the box is not expanding to the text, even with overflow: auto; here is my script for the box as well as a picture: .box { background: #ffdcba; border: 1px solid #f78d25; display: block; clear: both; margin: 4px 0px; padding-left: 15px; overflow: a...

Get Source of HTML File with CSS Inline

Is there a simple way to save an HTML page that has an external stylesheet (1 or more) referenced but force all of the rules to be inserted into the page itself, inline? So basically I want to move all external rules onto the elements that they affect themselves. For what it's worth, I'm using nearly every major browser (incase the solu...

Making CSS layouts with fewer selectors?

What are the best practices for making CSS layouts with fewer selectors and fewer DIVs? Fewer selectors means less HTML and CSS, which is easier to manage. How can we avoid using too many class/other selectors? ...

Instead of giving "back to top" button is it good to make layout with fixed header hand footer?

Instead of giving "back to top" button is it good to make layout with fixed header and footer for better usability? or this type of layout can be problem for screen reader? Like this http://limpid.nl/lab/css/fixed/header-and-footer ...

How to get consistence rendering of <p> paragraph text in all browsers?

How to get consistence rendering of paragraph text in all browsers? See IE 7 rendering like this and FF like this . which is ok to client How to get same result in both browsers, i mean FF rendering in IE? my client needs "non-executive" in same line in all browsers, Is <br /> only solution of this. Update : see all code for <p>...

Is it necessary to wrap navigation (ul tag) in div or nav tag?

I’ve seen some people wrap their navigation (<ul> tag) inside a <div>, and the <div> just has margin/padding CSS properties applied to it. We can just style the navigation without a <div> and put the margin and padding on the <ul> tag. So it is necessary to put the <ul> tag inside the <div>, or is it just personal preference/favor? And...