s_g
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Problem rendering PNG with transparent backgroundI don’t know why you say the solutions don’t work, because obviously the PHP solution proposed by the others works fine – otherwise it wouldn’t have become so popular.
My CSS fix also works perfectly fine, as I tested it on a Windows platform with IE6. So I don’t get why you say that “all the MSIE tricks – or hacks – that have been so far proposed miserably fail on all Win OS platforms”.
Forum: Fixing WordPress
In reply to: I wana only show post title on homepage , how towp-content/themes/(theme here)/index.php
See more about Using Themes in the Codex.
You can trust podz. He’s the cuddly “support maven”.
Can’t trust the rest of us, though.
Forum: Fixing WordPress
In reply to: need help getting mod_rewrite to resolve blog url properlyAdd a
?
question-mark after the / character.Forum: Your WordPress
In reply to: Site finally finished – would you critique the look and feel of it?First, change the DTD declaration to XHTML 1.0 Transitional, that will allow you to use the
target=""
attribute again.You’re also embedding
<li>
tags within a header tag (<h4>
) which you cannot do.You also cannot close a tag while another one from inside it is open:
<a href="https://www.screenwritinglife.com/?p=24#more-24">
[more…]</a>
The a tag should be opened on the next paragraph.
Try to fix the problem with Internet Explorer. You’ll see what I mean if you test your site in IE; the third column is thrown down because there isn’t enough room to display it.
Hope this helps.
Forum: Your WordPress
In reply to: Private Post QuestionYou can set a password to the post when writing it. Then simply give those users the password.
The Private Categories plugin might also be of use to you.
Forum: Your WordPress
In reply to: Site finally finished – would you critique the look and feel of it?Taking your comments into consideration, it makes sense that it has an astounding 111 errors. Also, the right menubar doesn’t display properly on IE.
The content is great though, and you’ve made it your primary focus – which is excellent.
Forum: Your WordPress
In reply to: Please Review my BlogIt renders differently in IE and Firefox and doesn’t validate.
Other than that, looks like a good start.
Forum: Installing WordPress
In reply to: How To make adsense only post in the header?Put it after
<div id="content" class="narrowcolumn">
Forum: Themes and Templates
In reply to: Problem rendering PNG with transparent backgroundYou don’t need all that PHP code. Use CSS instead. First, make a transparent PNG-8 (or GIF) image, 1px by 1px. Then make your img tag point to it instead:
<img src=”/path/to/your/transparent_pixel.png”>Now all we need to do is add this in your CSS file:
#headerimg h1 img {
width: 323px;
height: 99px;
background: transparent url("/path/to/your/image") no-repeat;
}
/* IE-win CSS hack \*/
* html #headerimg h1 img {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/path/to/your/image', sizingMethod='crop');
background-image: none;
}
/* End IE-win */Just don’t forget to change /path/to/your/image to the correct path of your PNG-24 transparent image.
Forum: Everything else WordPress
In reply to: Posting from PDA (Palm)WP supports several types of API, that includes the Blogger API format.