What is the best optimized way to convert table base design to table less design? the layout should be cross browser compatible and SEO Friendly. Is there any tool/editor which converts existing table base design to table less design?
Is there any option in dreamweaver to convert the design in tableless?
...
Hi,
I am interested what column widths you would suggest for two-column and three-column websites.
For example if we consider two-column layout (total width 1000px), some possible widths would be:
900-100,
800-200,
750-250,
700-300,
600-400.
Which layout is best for usability, possible ad placements, widget integration?
...
Is there a 3rd party API for the sole purpose with which I can replace relative URLs in the source HTML and CSS into absolute URLs, keeping in mind the fact that the source contains a mix of relative and absolute URLs. For those thinking twice about this question, the String Object's replaceAll() method has some shortcomings.
...
Ok so i want to make my border css only applicable to ie8 or earlier (as in not ie9 when it comes out).
purpose: so that in ie, the missing dropshadow will be replaced with a border:
the * hack doesnt seem to be working? im testing in ie8 locally...
input, textarea{
display:block;
border:none;
*border: 1px solid #000;
-moz-box-shadow:...
I'm trying to generate a table of contents from a block of HTML (not a complete file - just content) based on its <h2> and <h3> tags.
My plan so far was to:
Extract a list of headers using beautifulsoup
Use a regex on the content to place anchor links before/inside the header tags (so the user can click on the table of contents) -- Th...
Is it safe to use such code?
Response.Cookies[cookieName].Path = Request.ApplicationPath + "/";
I want to know about all corner cases, please...
...
Hello everyone,
I've got a bit of a complicated set up. I specialise in XSLT which I write for 3rd party system. All CSS looks fine in the browser. Now that system provides a button that converts my generated HTML into MS Word 2003.
However, table borders don't convert as they appear in a Browser. There are lots of tables and they have...
what are main differences between SelectNodes and GetElementsByTagName.
...
Im trying to get some checkbox with a specific name
document.getElementsByName("test");
Unfortunatley i cant check if it is checked or not here is the code
for(i=0;i<check.length;i++)
{
if(check[i].checked==true)
{
alert(check[i].value);
}
}
Is somewhere a typo?
...
Hey, Basically i have an issues (in IE6) where the last three characters of a line of text in a div are being repeated further down the page even though they are only in the HTML once.
http://www.disturbmedia.com/jason/test/
please see the numbers in black, its always the last three characters that get repeated, so strange.
I have neve...
I am working on a simple messaging system. For composing the message, I provide a text area. This text area should have an autosuggest functionality and also something like a "remove" button.
Can you tell me how to implement this sort of functionality? I think there is a jQuery plugin to accomplish something like this, but I can't recal...
My navbar doesn't line up in IE... how can I fix this without using Javascript...
http://opentech.durhamcollege.ca/~intn2201/brittains/labs/index2.php
Also it has to be able to work on all resolutions.
And it has to validate in strict.
...
I have 2 columns, one of them I float to the left and the other I float to the right.
The right side has input buttons on them.
For some reason the buttons are kind of in the middle of the column, I want them to be vertically aligned all the way to the top and to the right.
How can I do this? Is it just playing with padding?
<div id=...
In one of my Django templates, I have a chunk of HTML which repeats at several places in the page. Is there a way I could use another template for this chunk alone and "instantiate" the template where required?
...
I'm interested in the way lala.com works. They have a header that remains fixed at the top of the browser and they have a flash music player in it.
You can click on other links in the site and they are displayed below the header but the header is not disrupted and can continue playing music.
If the target is a modern browser say IE8 & ...
I use some CSS styling to hide input buttton, images and so on but i wonder how can i remove or better: modify, where / what shows up on printed page in place of title and page address?
...
I've been building a site in PHP, HTML, CSS, and using a healthy dose of jQuery javascript. The site looks absolutely fine on my Mac browsers, but for some reason, when my client uses PC Safari, she's seeing strange bits of my HTML show up on the page.
Here are some (small) screenshot examples:
Figure 1: This one is just a closing <...
I want to design a form.
The form has 3 sections: user info, shipping and billing.
Each section will have 2 columns, so form fields and their labels with be on both the left and right side.
What technique should I use?
How does this look?
<div id="forms">
<div id=contact>
<div class=left>
<p><label>Firstname<la...
I have an input text field, which has a value "something" by default, but when I start to type, I want that the default value changes color, and the text i'll type, another one.
How can i do that?
<input type="text" value="something" onclick="this.value=''" />
...
i have this recursive code
<ul>
<%
sql="SELECT * FROM cats ORDER BY orderid "
rs.Open sql,Conn
dim recArray
If Not rs.EOF Then
recArray = rs.getRows()
dim i
for i=0 to uBound(recArray,2)
if recArray(1,i)=0 then
call showMessage(i)
end if
next
End If
function showMessage(index)
%><li><...