Clearly you misunderstood me somewhere, so let me try again
In the page you linked to (
http://hatekitchen.c...ffin-in-a-mug-2), you're trying to use classes which you haven't defined in any of your CSS files. For example:
<div class="recipe-title">Muffin in a mug.</div>
<div class="recipe-section-title recipe-details">Details</div>
You have stacks and stacks of elements in your HTML that use classes which haven't been defined anywhere. In the CSS that you posted (
http://pastebin.com/zvSqiysh), you've defined these styles, but you haven't included the CSS file in your HTML ones generated by WordPress, so they aren't being used. You need to edit the header.php file for your template and insert the code I posted above before the
</head> closing tag. Here it is again:
<link href="/path/to/file.css" rel="stylesheet" type="text/css" />
The browser can't just
guess what CSS files it should use to render a page, it has to be
told which ones to use. You've got your CSS, and you've got your HTML, but you've missed the vital piece of code that links them both together and just makes it work .
As for the tags not working, create a post and just dump a load of examples of tags that don't work in it, and we'll try and figure out why. It might be WordPress encoding them wrong (it usually converts < and > to < and >), or it might be your theme's CSS. Hard to figure out with nothing to go by
This post has been edited by LukeCarrier: 02 August 2010 - 10:38 AM