| |
|
| |
 |
|
|
I know I had researched this before and come to a decision, but the issue has come up again regarding whether to migrate to some from of XHTML or stay with HTML ... so, I did the research again, not having saved a bit of it from before.
Today I've been working on installing Wordpress on my site, and I need to fit my old site design into a theme that will work with the WP system.
Upon opening the header template file that's part of the default theme, I noticed that it had an "XHTML 1.0 Transitional" DOCTYPE. I instantly thought I'd just switch it over to the "HTML 4.01 Transitional" that I had been using on the existing site, but then I realized that traces of this XHTML were probably scattered throughout the WP code. So I wondered, and that not for the first time, if I should tell myself that it's OK to use XHTML. And of course, that led me to do a little Google research...
|
|
read more | GarrettW's blog | login or register to post comments
|
|
|
|
 |
|
| |
|
| |
 |
|
|
I have been trying to code this page to get it centered but am unable to. Obviously I am an idiot because nothing works for me! I have tried to add table and center it as well as add the center tag! The site is www.ikgfilms.com. If anyone knows how I can center this, I would greatly appreciate it!
|
|
konceptone's blog | 1 comment
|
|
|
|
 |
|
| |
|
| |
 |
|
|
As the title suggests "I've been thinking about equal-height columns..." and how the Social Bee hasn't been buzzing lately
I remember reading an article on 456 Bera Street which tried to get equal height boxes.
You can find part one and two of said articles [HERE] and [HERE].
The problem with those was that it used display:table; to get the desired effect. And unfortunately IE does not yet support it.
I had also read a few further articles on Faux Columns, many can be found by doing a quick [Google Search]
Moving on to the point, I attempted this myself and this is what I came up with.
[html]
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>Equal Height Boxes</title>
<style type = "text/css">
body {
width: 770px;
border: 1px solid #000000;
margin: 0 auto;
}
#header {
height: 100px;
background: #cdeb8b;
border-bottom: 1px solid #000000;
}
#left {
float: left;
width: 200px;
}
#right {
float: right;
background: #cdeb8b;
width: 569px;
border-left: 1px solid #000000;
}
#footer {
clear: both;
background: #eeeeee;
border-top: 1px solid #000000;
height: 30px; /* Needs to have height set to work in IE6 */
}
</style>
<body>
<div id = "header">
This is the HEADER.
</div>
<div id = "left">
The left column...
</div>
<div id = "right">
This is where all the right content will go....
|
|
read more | eTwerp's blog | 3 comments
|
|
|
|
 |
|
| |
|
| |
 |
|
|
After spending an entire afternoon slicing a PDF to XHTML using block level elements, I realized after trying to send the HTML in an email that my CSS and HTML techniques would not render in an email!!! ARRG!!!
I was stupid, I should have done some research first.
So for all yall who are thinking about coding HTML news letters or any html that needs to be sent in an email, CHECK THIS OUT FIRST:
http://www.sitepoint.com/article/cod...il-newsletters
Very useful article.
|
's blog | 4 comments
|
|
|
|
 |
|