thinkdj
Forum Replies Created
-
Wrong forum, my bad.
Forum: Plugins
In reply to: Yes/no poll or quiz pluginAnyone?
Forum: Fixing WordPress
In reply to: previous_post_link image replacementTry this
<div class=”navigation”>
<?php previous_post_link(‘<div class=”ImagePrev”>%link</div>’, ‘%title’); ?>
<?php if(!get_adjacent_post(false, ”, true)) {
echo ‘<div class=”ImagePrevEmpty”>DISABLED</div>’;
} ?><?php next_post_link(‘<div class=”ImageNext
“>%link</div>’, ‘%title’); ?>
<?php if(!get_adjacent_post(false, ”, false)) {
echo ‘<div class=”ImageNextEmpty”>DISABLED</div>’;
} ?></div>
In this, give CSS classes like
.ImageNext { background:url(…); height: 50px; width:50px }
etc..Forum: Developing with WordPress
In reply to: [Plugin: NextGEN Gallery] Error: Exceed Memory LimitFaced the same problem before. chhpy001’s solution had worked for me then.
Uncomment@ini_set(‘memory_limit’, ‘128M’);
in gd.thumbnail.inc.php
Forum: Themes and Templates
In reply to: Top Banner is covering the Contact buttonAlso, you could try doing a css float clear by adding
<div style="clear:both"> </div>right before your banner code.Forum: Themes and Templates
In reply to: How do I remove wordpress them & replace with customIt’s not very easy unless you have some idea atleast about the tags. Take a look at the Template Tags http://codex.ww.wp.xz.cn/Template_Tags
Forum: Plugins
In reply to: Comment rating plugin like this sampleThat site uses outbrain..
http://outbrain.comForum: Themes and Templates
In reply to: cannot change themetimbyrd, did u get it fixed ?
Forum: Fixing WordPress
In reply to: Multiple WordPress Installations = Permalink CollisionHey daltonrooney..
Im facing exactly the same problem. We’d need to make new rewrite rules in the htaccess in the root.. One exclusive to teh subdir installation and add it before the extant rewrite rules ..
Can it be set to parse htaccess of each directory first before reading teh root’s htaccess ? I guess that should do the trick tooForum: Everything else WordPress
In reply to: HTML In Biographical Info?Forum: Themes and Templates
In reply to: Center wp-login.php wordpress logo (logo-login.gif image)Hi Laloma!
Isn’t the WP logo on wp-login in the center 😕 I have, till date, never encountered a wp-login wherein the logo was not in the middle…Anyways, do check out BinaryMoon’s Custom Login Plugin.. You can even customize the login page. It seems you are interested in changing the login page.. So I’m just suggesting it..
Take a look at it over at http://www.binarymoon.co.uk/projects/bm-custom-login/Forum: Themes and Templates
In reply to: cannot change themeArgh!! What’s with WP 2.5 and above versions anyway??? I never had any problems until WP 2.5 came out. To fix the bugs I immediately upgraded to wp 2.6.1 when it was rolled out. That gave me more headache and now Im running 2.6.2 and the Visual Editor refuses to show up.. !
Forum: Fixing WordPress
In reply to: Page Template Problems with 2.6rhys is right.. That explains why the page templates were not listed in the first place..
And thanks to TheSooFoo 🙂 .. Saved me a lot of trouble.Forum: Themes and Templates
In reply to: Newbie says ‘Where can i learn to customise a theme?’Ohk.. Just read your post. Had only seen the title before..
If you just need to change the color, you need to look into the fact that is the area you wish to change an image or HTML/CSS.
If it’s an image, you’ll have to edit the image using some software like Photoshop and change the hue to get the required color or replace the image with a more suitable image in the theme’s image folder.
If it’s just CSS code, open up style.css in you theme’s folder, find the corresponding hex value of the color you wish to change and replace all that with the new Hex value.
Eg : You wish to change all black to white, replace black (#000 or #000000) with white(#FFF or #FFFFFF)Forum: Themes and Templates
In reply to: Newbie says ‘Where can i learn to customise a theme?’hey jillrichards,
The best way to do that would be to copy your current theme, play around with it. Also, go through the basic wordpress functions like query_posts, get_title etc. at WordPress Codex ..
That’ll get you started.