kickass
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: php includes making blog elements disappear…oh, jennaction, I think I’ve got a solution for you. Put the includes in a directory INSIDE your theme and name the directory “includes”. Then use this:
<?php include ('<?php bloginfo('stylesheet_directory'); ?>/includes/current.php'); ?>Forum: Fixing WordPress
In reply to: php includes making blog elements disappear…vkaryl, her path is from root, that should be working.
Anyway, I really want you to get this working, I LOVE this design. (shwa? *snort*)
Forum: Fixing WordPress
In reply to: php includes making blog elements disappear…Try this in your stylesheet:
.clearA {
overflow: hidden;
clear:both;
height:0;
margin:0;
font-size: 1px;
line-height: 0;
}
Then put this in your template. You might need to try it in a few places, but eventually it might help.
<br class="clearA" />You might also wanna run your source code through the validator at http://validator.w3.org and it might show you a couple things that might be wanking your page. For starters you’re in quirks mode, no doctype. That’s throwing ALL browsers into tagsoup mode so it could be anything causing this.
Forum: Fixing WordPress
In reply to: php includes making blog elements disappear…Oh joy. Are you using WP 2.0.x?
Forum: Fixing WordPress
In reply to: php includes making blog elements disappear…Is this how you’re doing your includes?
<?php include ('leftcol.php'); ?>If not, maybe you should post some code here, then we can tell you better what’s going on.
Forum: Themes and Templates
In reply to: Margins in themesWhy don’t you just design your own? Mine is 100% width of screen. So are most of the customs I’ve designed for clients. You can use any layout you want.
Forum: Fixing WordPress
In reply to: php includes making blog elements disappear…Looks fine in firefox and IE6. Did you fix it already?
Forum: Fixing WordPress
In reply to: How to get text to wrap around adsense ?Wrap the adsense code in a named div with a width just slightly wider than your adsense box and float the box to either left or right in your stylesheet.
Forum: Everything else WordPress
In reply to: Google Analytics slows this site to a crawl!You’re damn right Google analytics is slowing it (and every other site using it) down to a snail’s pace, which happens periodically to EVERY site that uses it. ANNOYING. It’s the best argument I know for not using it since stats don’t mean anything at all IF YOU PISS OFF YOUR VIEWERS and they simply click elsewhere.
Geez, anyone look at the WP Goog analytics lately? (providing you can even ACCESS them now) I wonder how pageviews per unique visitor plummet when this bulldoody happens . . .
Forum: Fixing WordPress
In reply to: Need a couple of simple tips…For the images you need to add a style to your theme’s stylesheet. This might do it:
.post img {
margin: 5px; /*adjust as needed*/
}
If that doesn’t work, try adding padding to the top of div class=”entry” if the image is going on top of the text and below the post title.
To add the author, time and date to the top of each post, you need to open index.php and insert this after the_title:
<small><?php the_time('F jS, Y') ?> by <?php the_author() ?> </small>Forum: Fixing WordPress
In reply to: sitemapCheck the Plugin section of the docs, there’s a plugin for the google sitemap.
Forum: Fixing WordPress
In reply to: Exclude an item from sidebarppoivre, all you have to do is make an exact copy of your page.php and name it home.php and follow the instructions above. Don’t put the call for sidebar2 in index or in page, that won’t work, and may give you a mess.
Forum: Fixing WordPress
In reply to: Exclude an item from sidebarIf you use the template home.php then this is easy. You simply make a new file and paste the sidebar code into it, then delete the call for the archive and then save this new file as sidebar2.php. Then, in your home.php, you replace the call for the sidebar with this:
<?php include ('sidebar2.php'); ?>That will give you a sidebar that is exclusive to your homepage and that omits the archive.
Forum: Plugins
In reply to: Plugin to Upload Plugins?Rumor has it that there’s a plugin that will painlessly update my wordpress install with no harm to my database or my permalinks and with no need to worry about disabling plugins . . . oh, sorry, I got plugins confused with Yahoo hosting, and we all know how well THAT works! *snicker*
Forum: Themes and Templates
In reply to: Does this theme exist ANYWHERE?You’re welcome.