kiddeath91
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Background Image AlignmentTry styles.css. This is an IE only command, so it should be fine sitting in your style sheet.
Forum: Themes and Templates
In reply to: editting category displayYou will need to hack throught the template. The php that powers WP is written to print out unordered lists for the categories. You’ll need to switch out the ul and li markup for table code.
Forum: Fixing WordPress
In reply to: Background Image AlignmentYes you can. For IE only use the asterisk selector like this:
* html body {background-image:xxx}
That will tell only IE 6/Win to serve the image. All others will get your normal CSS declaration. I think IE 5 is effected too.
Forum: Themes and Templates
In reply to: Cant Reduce ‘Your Comment’ Text Box sizeTry changing cols=”40″ to cols=”20″ and see what happens.
Forum: Themes and Templates
In reply to: Cant Reduce ‘Your Comment’ Text Box sizeIf you’re talking about this:
<textarea name="comment" id="comment" cols="40" rows="4" tabindex="4"></textarea>
Then you want to change cols to something more or less than 40. I don’t use the templates so I don’t know if CSS is also controlling this. Check for anything in #comment in your CSS. If you see width declarations, that may be your problem.
Forum: Installing WordPress
In reply to: Blank page, no HTML nothing during install.phpDon’t know if your host is Godaddy, but I had a similar problem last year when I first installed WP. I was the 1% who had to change the localhost. Unless you know, I would check to see if your host has their dbases routed to a different address. If so, you’ll probably want to enter it into ‘localhost’.
Forum: Your WordPress
In reply to: Movable Type to WordPress … success!Welcome! Great album you review btw.
Forum: Fixing WordPress
In reply to: How to add extra space between some (not all) paragraphsThen you’ll have to sacrifice and make exceptions for hacks:
Use
<p> </p>
as mentioned above. The<br />
tag is for use inside of things like<p>
tags to force single line breaks.Forum: Themes and Templates
In reply to: Common fonts for the spread of browsers and platforms?Jinsan,
Good question. This is something that is being researched by Joe Clark over at his Typoblog.
Forum: Themes and Templates
In reply to: Siebar Imagejust make sure to escape it,
like this
<br />
Forum: Themes and Templates
In reply to: Headspace theme – attempting to widen it…Coyote,
Don’t see a gap but I do see your background stop where sidebar content ends. Your going to want to make that background image part of you content post area so that it will stretch all the way to the bottom.
Forum: Themes and Templates
In reply to: Headspace theme – attempting to widen it…Check out this link and you will find the answer so simple in the end again:)
https://www.avalon5.com/blog/wp-content/themes/headspace/images/kubrickheader.jpg
Forum: Fixing WordPress
In reply to: Replacing default bulletsIn the body:
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: 'Georgia', Verdana, Arial, Sans-Serif;
background-color: #818181;
color: #818181;
margin:0 auto;
text-align: center;
width:700px /* put whatever the width of your page is here */
}Forum: Themes and Templates
In reply to: Headspace theme – attempting to widen it…coyote,
You need to edit those ‘boxes’ with photoshop (or some other editor). That is actually a background image!
Forum: Fixing WordPress
In reply to: Replacing default bulletsfroots,
The only thing I can think of is maybe you need to specify a body {width:}???