Jaelli
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to change header image in 2010To update: It appears this is an issue of some sort with running a test site with the same content as the live site, on the same host provider. I find this very odd…. I’ve done exactly this same thing for years – though this is my first experience with 2010 theme, since I’ve always done my own themes in the past….
I dunno. I’ll take down the test site and see what happens….
Forum: Plugins
In reply to: Looking for a way to alternate post title colorsJust to update: in order to get this to work, I had to add the php alchymyth provided into the
<a> tagset, like this:<h2 class="entry-title"><a class="<?php echo (($wp_query->current_post%2 == 0) ? 'red-title' : 'blue-title'); ?>" href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>I also had to add and change things in the css of course.
So client will be happy…. next thing of course is that he’ll want the single page title in the red and blue instead of black…. I might have to “just say no” at that point!
Forum: Fixing WordPress
In reply to: Unable to change header image in 2010It was working on my test site on my same host provider (just a domain name/space I use to test things….) I installed a fresh WP setup on the live site, and started adding the plugins, changing header and so on, and while everything else is fine and dandy, the header wants to be obstinate. Very odd…. I will go back later to see if the test site header is also having issues. If so, then that’s going to be even more odd….
Forum: Fixing WordPress
In reply to: Unable to change header image in 2010Hi Josh –
Yes, default apparently at 777. I cheated for now, just uploaded the header image I need, and renamed inkwell to something else, then renamed the header I want to inkwell. Works fine, if a bit dodgy, though I would definitely like to know how to fix it “right”.
It would be nice to be able to use a file from Media for this….
Forum: Plugins
In reply to: Looking for a way to alternate post title colorsThanks, alchymyth. That looks like it should work. I’ve forgotten everything I knew about php and WP….