xhtml

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> Does it really render page like IE7 in IE8?

Will i get same result in IE7 and IE8 after using this <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> ? Has anyone tested it? ...

jQuery Hover - UnHover not functioning.

I've looked through the other related posts to my question already over the past hour or so and tried out various fixes for them, but it still doesn't work, so here it goes: I have a website, located at www.rooms101.com my client wants me to add a page-peel effect, so I am using an example from http://www.sohtanaka.com/web-design/simple...

How do I do the CSS for this?

Here is the wireframe: http://img46.imageshack.us/img46/9323/85329195.gif #header needs a background image of /header.png which is 750px wide. I'm just not sure how to do the CSS for this design. #footer is 100% at the bottom, (not absolute) ...

What is wrong with my CSS menu?

The result is: http://img198.imageshack.us/img198/746/93502273.jpg You can see the obvious "whitespace" on the side. I have: <div id="nav"> <ul> <li id="n-home"><a href="/">Home</a></li> <li id="n-search"><a href="/search/">Search</a></li> <li id="n-advertisers"><a href="/advertisers/">Advertisers</a></li> ...

How to make CSS Column Design quickly?

I've tried all other Blueprint, 960 etc . I want make custom framework for custom width and gutters which should be modify for any width or spacing between boxes. I need the best optimize and quick way to make layout. Want to make a reusable framework/method/patteren in css. For examples: Edit: By now i found this article useful http...

Why doesn't the javascript output anything?

Why doesn't the javascript output anything? It should output some html code. <html> <head> <script type="text/javascript"><!--` var keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; function d64(input) { var output = new StringMaker(); var chr1, chr2, chr3; var enc1, enc2, enc3, enc4; var i ...

How to use css to style xhtml markup made only of divs like a table

See source code of this http://jsbin.com/iveso I can't change anything in xhtml code. And i need cross browser output exact like this. How we can give same look with less and optimize css This is CSS #ConferencesContainer { overflow:hidden; } #ConferencesContainer img { float:left; padding:0 10px 10px 0; } #ConferencesContainer #Con...

ISO-8859-1 vs UTF-8 ?

What should be used and when ? or is it always better to use UTF-8 always? or ISO-8859-1 still has importance in specific conditions? Is Character-set related to geographic region? Edit: Is there any benefit to put this code @charset "utf-8"; or like this <link type="text/css; charset=utf-8" rel="stylesheet" href=".." /> at the t...

in what conditions we can use css * selector?

in what conditions we can use css * selector? how much * selector is useful? is it only to make css reset or hack * { margin: 0; padding: 0; } or it has other valid useful uses? is there a ways to use * selector to optimize css using * selector? Is it supported in all browsers? ...

alt vs title vs filename?

For example: <img alt="Facebook logo" src="http://facebook.com/images/facebook-logo.gif" title="Link to home page"/> Which has more importance for Search engine, Alt text or image file name or title or all? ...

How to style <select> dropdown with css only without javascript?

Is there a css only way to style <select> dropdown? I need to style a form as much as humanly possible without any javascript intervention. What are the properties I can use to do so in CSS? This code needs to be compatible with all major browsers.IE6,7,8 All FF and safari versions Edit: I know i can make it with javascript http:/...

Should I be using XML + Stylesheets vs. XHTML and CSS?

I have been developing web apps for a while now and for the past year I have been really exploring as many technologies as possible. I know some people are creating pages using XML and XSLT or maybe css style sheets; however, it seems to me that the trends are still not moving in direction. Plus it seems less functional/easy than XHTML/C...

Vertical align a block

How on earth do you center a div vertically? Horizontal has enough ways already, but no matter what i try, vertical centering is just impossible. body { vertical-align: middle;} Does nothing body {text-align: middle;} Does nothing div.middle {top: 50%;} Does nothing Is it even possible? I think i'm gonna cry. ...

Datalist displayed like a table

How can i achieve this layout (now its done with tables) and still have semantic markup, i guess the best suited tag for this would be dl. Every cell must have the height of their row. EDIT: the left column contains the description and the right the data. So i don't think this is well suited for tables. It would be if i would move the d...

How to convert unordered list into nicely styled <select> dropdown using jquery?

How do I convert an unordered list in this format: <ul class="selectdropdown"> <li><a href="one.html" target="_blank">one</a></li> <li><a href="two.html" target="_blank">two</a></li> <li><a href="three.html" target="_blank">three</a></li> <li><a href="four.html" target="_blank">four</a></li> <li><a href="five.html" t...

Alt text showing in IE and firefox but not in safari?

Why Alt text not showing in Safari ? http://gregory.pakosz.fr/stackoverflow/homework.html ...

syntax error, unexpected '.', expecting ']' in config.php

$dbhost = "10.21.47.198"; $dbuser = "xxxxx"; $dbpass = "xxxxx"; $dbname = "xxxxxx"; $prefix = "art_"; // you can change this prefix but not necessary $cdomain = $_SERVER['SERVER_NAME']=='xxxxxxxxx' ? '' : ".$_SERVER[xxxxxxxxxxx]"; //.yoursite.com $date_format = "F d, Y"; $admin_email = "[email protected]"; the above code is ...

Including an external webpage using PHP

How can I use PHP to include an external webpage? (sort of like the wordpress theme preview.) I want (X)HTML STRICT compliant code - no iFrame and preferably no javascript. The idea is that I am making a sandbox for clients to view webpages in my controlled environment. The other thing is that the webpages being included should not be...

How do you embed XHTML into APT file when using Maven to generate a site?

I am using maven to generate a website for a Java project, which uses APT "Almost Plain Text" as a wiki like markup. Maven takes this and turns it into XHTML. I already have a custom template/skin that I am using for the site, but the index page will have a couple of extra custom design elements that are beyond the capabilities of APT. ...

Joomla Drop-Down menu on user3. What is the best way to implement a drop-down menu on Joomla?

Now I'm able to create joomla templates (even this last one that is giving me some headache, but the problem is with IE6 and the css...) and then comes the question how do I create a drop-down menu without installing a module and/or component? actually that is not only my problem! there are a lot of people asking the same thing all over...