html

Why is there extra "white space" between these floated Div's in FF and not IE?

Why is there so much extra space in FireFox between the two floated blocks? <html> <head> <style type="text/css"> #Container-900px { width:900px; padding: 10px; border: 1px solid #CCCCCC; } #Container-900px .left { float:left; width:435px; height:300px; } #Container-900px .right { float:right; width:435px; height...

Need help with table...aligning cells and input boxes

Hi, I am creating 1 of 3 nested tables within the <form> tag in my HTML document. I inserted input fields to create the text boxes to the right of the text. That all works my only problem is that the following cells: "First Name, Last Name, Address, City, State, Zip Code, and County" are not directly under one another in such a way as t...

How to stop <div>s from moving into each other with float defined?

Very straightforward CSS question that I haven't been able to find the answer to so far: I'm trying to lay out a page with two div's side-by-side in one row (using float:left; and float:right;) and then one div below them. The problem is that if the top row (defined as a div itself) is so wide that the space between the two divs can acc...

CSS/HTML Print Background Images/Styles without Browser Page setup tweaking...

Is there any way to print out something like, when the user Prints out the page? <div id="test" style="background:#000000; color:#FFFFFF"> Black Stripe </div> I'm trying to create a page with row striping in the printout the same way it appears on screen. When they go to print , it of course drops the background. Besides telling ea...

JQuery - $ is not defined

I have a simple jquery click event <script type="text/javascript"> $(function() { $('#post').click(function() { alert("test"); }); }); </script> and a jquery reference defined in the site.master <script src="<%=ResolveUrl("~/Scripts/jquery-1.3.2.js")%>" type="text/javascript"></script> I have ch...

Creating PDF, HTML, and optionally RTF documents from the same source using Java?

I was looking at using iText to create both a pdf and html version of a document with RTF as a possible option. According to this question this is no longer possible with iText. Is there a library that will allow me to create a document in Java and output it as both PDF and HTML? The ability to output RTF would be nice but is not require...

Help me fix my website - which used to rotate homepage images on underlying image map.

Title: Rotate Homepage Image (for website)- No longer works. I am a physicist/wildlife artist with a website (I created in 2002) to display & market my artwork. I have set it up with an underlying (homepage) image map - having links to: "tigers", "leopards", "birds", artist info, etc., with the overlying image changing (swapping out) ev...

Strange CSS float issue

I am designing a website and I am trying to have one header with two smaller headers floating next to it, one under each other. I tried doing it here, about halfway down where it says "About" and "what your saying." The about section appears correct because the smaller width pushes the next line down. BUT, on the right I cant get the te...

How can I extract tokens from the current URL using JavaScript

Given an URL such as /abc.html#variable1, I want to capture the variable1 part to determine a given user's "virtual page" when working with JavaScript (jQuery). ...

Css-sprite menu not working in ie

Why doesn't Internet Explorer render this .css sprite menu i made? Could someone shed some light for me as i am unable to find any error in the code. Html: <div class="menu"> <ul class="nav"> <li class="home"><a href="#"></a></li> <li class="element2"><a href="#"></a></li> <li class="element3"><a hr...

What is the benefit to using <acronym> and <abbr>?

Should i give my time to change terms and abbreviations to <acronym> and <abbr>? Is it worth to use? What are pros to use both tags? Is it useful for SEO and screen reader? ...

How to give different style, color to dotted border of links ?

How to give different style, color to dotted border of keyboard navigation? Style should appear only if user use keyboard to navigate not on mouse over and :active. And style should work in all mainstream browsers with valid css. ...

Is there any tool to convert Simple HTML table to accessible table?

I don't want to recreat whole table . i need any WYSIWYG/gui/interface online/offline tool to convert already made HTML tables to highly Accessible table as much as possible. Which IDE/web design software/WYSIWYG Editor/ has best Table editor to make accessible table? Just for example like this table <table> <tr> <td><st...

Firefox (3.6) Selectbox State and Browser Back Button

I have a page that has a selectbox that changes the window.location using hashes to modify the hash state when an option is selected. This allows a user to click forward and back to navigate the different select options. All works well until you click a link to navigate away from the page and then click the browser's back button to attem...

How tell when a hidden field is changed

I have some javascript I want to run when a hidden field is changed (via javascript) Is there any way to do this? (or anyway at all to have a field that is not "visible" in asp mvc that I can get a change event on) NOTE: I have confirmed that it is not the fact that the field that is hidden that is the problem, but the fact the field i...

JQuery - Postion overlay div over another

I am trying to lay one div over another. IE reports "Invalid Argument". Can anyone tell me what I am doing wrong please? var left = $("#container").offset().left; var top = $("#container").offset().top; $("#overlay").css({"left":left + "px", "top":top + "px"}); ...

"Mail merge"-like functionality in Dreamweaver, or in any other web editing tool?

I have inherited several related, low-traffic web sites to manage and edit. These sites are implemented with static html, and they've accrued lots of stray tags and other cruft. I want to try to clean these up and migrate them to some common page template framework to simplify design and data changes and improve overall consistency. T...

Extracting HTML tag properties and values

Is it possible to extract the properties and values in a HTML file and export them to a XML file? ...

Add scroll to a table

I have a table in which i add rows dynamically and i want to add a vertically scroll to the table when its width get 300 or more. Any tips? ...

Powershell: wirte value in a input type=file Form.

I have a input type=text inputboxes on a webpage i load and fill with values and click the submitbutton which works fine: $ie=New-Object -comobject InternetExplorer.Application $ie.visible=$true $ie.Navigate("https://myurl/test.html") while($ie.busy){Start-Sleep 1} $ie.Document.getElementById("field_firstName").value="Firstname" $i...