fragmonger
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Wordspew HelpActually, I was reading it right on the wordpress plugin site, but I have now found it in the readme. Thanks. ??
Forum: Fixing WordPress
In reply to: Help a newbie! (How can I setup a shoutbox?)Thanks for the reply. I’ll give it a go.
Forum: Fixing WordPress
In reply to: Possible to make a part of the top graphic a link?Anyone? Help!
Forum: Fixing WordPress
In reply to: Add ‘Archives’ to SidebarI figured it out on my own. For anyone else trying to do this, here’s what I had to add to my sidebar.php:
<h2><?php _e(‘Archives’); ?></h2>
<li id=”archives”>-
<?php wp_get_archives(‘type=monthly’); ?>
Forum: Fixing WordPress
In reply to: Add ‘Archives’ to SidebarHere is the portion of my sidebar.php that adds ‘Categories’. How can I alter it to add ‘Archives’?
<h2>
<?php _e(‘Categories’); ?>
</h2>-
<?php list_cats(0, ”, ‘name’, ‘asc’, ”, 1, 0, 0, 1, 1, 1, 0,”,”,”,”,”) ?>
Forum: Fixing WordPress
In reply to: Change Post Title Font Size?Found it:
h3.entrytitle a, h3.entrytitle a:visited, h3 a{
color: #9c3;
text-decoration:none;
border-style: none;
font-size: 20px;
font-weight: bolder;
text-transform: none;Forum: Fixing WordPress
In reply to: Change Post Title Font Size?Jeremy,
I cannot find any 1.6em in my style.css. I just did a text search throug the whole file.
I did find this, but changing the font size here made no difference:
h2{
margin-bottom: 10px;
font-size: 18px;
}P.S. It’s not my current style.css I’m trying to edit. I’m trying to find the settings for one in another theme before I make it active (That’s why I posted the entire code from my style.css earlier).
Forum: Fixing WordPress
In reply to: Change Post Title Font Size?I’ve never seen ’em’ used for font size before – but then I’m new to PHP. I was looking for another ‘font_size’ setting.
Thanks! I’ll give it a go. ??
Forum: Fixing WordPress
In reply to: Change Post Title Font Size?I spent a few hours last night scouring my style.css file & still couldn’t find it. That’s why I posted.
Here is my style.css. As I said, I can find the font setting for the body of my posts, but not for the title:
[long code moderated]
If I’m just missing it, could someone hilight it for me?
Thanks. Sorry for being such a noob to all this.
Forum: Fixing WordPress
In reply to: How can I put a ‘box’ around my posts & sidebar items?Thanks. I’ll see if I can figure it out from that.
Forum: Fixing WordPress
In reply to: How can I add a ‘By’ line?Got it!
I’m a moron. I edited the index.php file for a theme I wasn’t using! (D’oh!)
Thanks to all for the help! ??
Forum: Fixing WordPress
In reply to: How can I add a ‘By’ line?Here is the full text of my index.php file now. The code has been un-commented, but I saw no ‘by’ line on a new post I just made.
What have I done wrong?
Thanks.
<?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<small><?php the_time(‘F jS, Y’) ?> by <?php the_author() ?></small><div class=”entry”>
<?php the_content(‘Read the rest of this entry »’); ?>
</div><p class=”postmetadata”>Posted in <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Edit’, ”, ‘ | ‘); ?> <?php comments_popup_link(‘No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?></p>
</div><?php endwhile; ?>
<div class=”navigation”>
<div class=”alignleft”><?php next_posts_link(‘« Previous Entries’) ?></div>
<div class=”alignright”><?php previous_posts_link(‘Next Entries »’) ?></div>
</div><?php else : ?>
<h2 class=”center”>Not Found</h2>
<p class=”center”>Sorry, but you are looking for something that isn’t here.</p>
<?php include (TEMPLATEPATH . “/searchform.php”); ?><?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: How can I add a ‘By’ line?I think I found it & I un-commented the code. Should the ‘by’ line exist now on my exists posts or only on new ones?
Thanks.
Forum: Fixing WordPress
In reply to: How can I add a ‘By’ line?EDIT.
Forum: Fixing WordPress
In reply to: How can I add a ‘By’ line?Thanks. I’ll give it a try.