css

centering divs does not work as it should

I have been looking around for solutions, and tried to implement what is often suggested, but I am not managing to horizontally center a div within another div. With my CMS I want to show up to four info blocks towards the bottom of the page. So, I am trying to put between zero and four divs within two container divs. The four divs get ...

Allow users to change font size in a webpage

Hi everyone, I would like to be able to change the size of text in a web page, I guess jQuery can be used, but I have no experience in javascript. Another problem is that the webpage is a phtml file, and multiple php echo commands are used. And the page is made up of multiple phtml files. An example of the page is here: http://nordsch...

How should SharePoint developers work with the graphics designer on their projects?

The graphics designers that I've worked with on SharePoint projects don't know/understand a lot of SharePoint. Particularly they don't know SharePoint Designer which is basically required for developing publishing sites. To get around this, I've found the following workflow typically eventuates: Use a web browser to save off a copy of...

Div sections shifts when i resize the window

hello all I have placed 2 divs side by side, one conatins the logo and second contains the text fields. when i view this page at larger resolution, everything is ok. but when i resize the window, the second div also gets shited and comes below the 1st div. But i want them to stay there side by side, at any resolution. kindly provide th...

How to style links via textile?

Is it possible to apply style attribute or class to link in textile? I've tried to find a reference, but found nothing. ...

IE 6.0 z-index issue

Hi, I am facing an issue with Z-index property of CSS in IE 6.0 HTML <div id="banner"></div> CSS #banner{ background:url(pix/banner.PNG) top no-repeat; z-index = -1; } URL: http://www.whizlabs.com/examprep/ In IE 6.0, it shows a line on the forehead of girl, showing in the banner on the top of the page. In other browsers, li...

Changing the look of textfields

How do I change my textfields so they look more like the Twitter login textfields or even the Title textfield for Stackoverflow when you post a new question. I currently just use: <%= text_field_tag 'name', @name, :size => 30 %> ...

image above flash element

Hello, I have a flash embedded, it is required for uploading a file and i want to place a image over it. Image1 Shows the expected result: http://i42.tinypic.com/2jcfshv.png but however i dont know how to achieve it, it looks like this: Image2 Shows the actual result rendered by browser: http://i40.tinypic.com/2hnp848.png This ...

Firebug and CSS cache not showing new selectors

I'm confused by some behavior in Firebug. I'm trying to update my CSS and I made changes to the actual CSS file and saved them. If I update a directive on an existing selector, those changes will be rendered when I reload the page. However, if I add a new class ( e.g. boxQuestion ), and create a new selector, it won't render at all. T...

List of in-browser UI techniques?

I'd like to know what can be done in a browser UI (using a browser+CSS+javascript, not using Flash or Silverlight). For example, I think it's possible to: Drag and drop Arrange list items horizontally, and make them behave like menu items Make things on page visible or invisible, depending on where the mouse is hovering I admit this ...

HTML Tables with lots of CSS

I am building advanced HTML tables with lots of CSS in them, what are the best tools out there for building advanced HTML CSS tables that could include dynamic elements like AJAX driven features (jQuery). I use Dreamweaver and Eclipse but they just touch the surface of having a really great tool set to build with. If you use a great tool...

Valid CSS or Hack?

Putting this at the top of your CSS file: * { margin: 0; padding: 0; } hack? or valid CSS? What does it do? and how portable to different browsers/versions? ...

align checkboxes without css or a table?

Hello If I have a html form like the following: <form name="statusForm" action="post.php" method="post" enctype="multipart/form-data"> Test: <input name="checkboxes[]" value="Test" type="checkbox"> <br> TestTestTest: <input name="checkboxes[]" value="Test" type="checkbox"> <br> TestTestTestTestTestTest: <input name="checkboxes[]" value...

Select inputs and text inputs in HTML - Best way to make equal width?

I've got a simple form like so (illustrative purposes only) <form> <div class="input-row"> <label>Name</label> <input type="text" name="name" /> </div> <div class="input-row"> <label>Country</label> <select name="country"> <option>Australia</option> <option>USA</option> </select...

Is it possible to check for PNG support with jQuery.Support?

My question is regarding the jQuery Support system. I'd like to know if it is possible to tell whether or not the browser will support semi-transparent background PNG images using this method. Edit: I am not interested in CSS solutions to a specific problem. I'd like to know if the jQuery support checking system can check this. I app...

Supress "filter" error in Firefox Error Console?

I currently use the non-standard "filter" method of rendering opacity on my site in addition to the standard way, since IE still doesn't seem to support it and unless I'm mistaken, opacity is part of CSS3 which isn't final anyway. I guess this is more of annoyance, but Firefox correctly notes an error in parsing the value for "filter", ...

Flex appending history tracking elements below application

I've got a Flex application that uses link buttons. As soon as I incorporated the link buttons (I assume) the Flex framework started putting history tracking elements below the app in the DOM. For example IE6-8 get an iframe element with id of ie_historyFrame, chrome/safari get a safari_rememberDiv and FF gets a firefox_anchorDiv. Now, ...

CSS <li> background image position issue

at http://www.goodshow.tv I've got a problem with the nav. I have a class that puts an arrow image, which should line up with the right edge of the white border. Problem is, it bases the position on the left side of the text. Is there a more absolute way to position it? ...

Orientation for a div

Hi, Is there a way to change the orientation for a div using css. ie I need to display a div in a slanting position. Is there a way by which I can define the four corners of the div (x1,y1) , (x2,y2) , (x3,y3) and (x4,y4) Edit Is there a way to do it using javascript or C#?? Is there a way to change the orientation of an ima...

Aligning checkboxes via inherited css?

I have a php page, which launches a popup window containing a form with checkboxes. The originating window includes an external stylesheet. The form html for the popup window is: <form name="statusForm" action="post.php=" method="post" enctype="multipart/form-data"> <label for="Test">Test:</label> <input name="checkboxes[]" value="Test...