prommafia
Forum Replies Created
Viewing 8 replies - 1 through 8 (of 8 total)
-
Forum: Fixing WordPress
In reply to: Make Background Image a LinkYeah, I found that in my initial search. The problem is that tells you how to do a header or logo link, but not the whole background image. I can’t figure out where to place the link html because the background image is in the body and not a php page like the header.
Where do I put the link html?
Forum: Fixing WordPress
In reply to: Verify Template PageHere is the author.php code
<?php get_header(); ?> <?php include(TEMPLATEPATH."/left.php");?> <div id="content" class="narrowcolumn"> <div align="center"><?php profilepic_internal_imagetag($authid, 'align=center'); ?></div> <br /><br /> <?php if(isset($_GET['author_name'])) : $curauth = get_userdatabylogin($author_name); else : $curauth = get_userdata(intval($author)); endif; ?> <h2><?php echo $curauth->nickname; ?></h2> <dl><br /> <dt>Website</dt> <dd><a href="<?php echo $curauth->user_url; ?>"><?php echo $curauth->user_url; ?></a></dd> <br /> <dt>Bio</dt> <dd><?php echo $curauth->user_description; ?></dd> </dl> <br /><br /> <h2>Posts by <?php echo $curauth->nickname; ?>:</h2><br /> <!-- The Loop --> <?php query_posts($query_string . '&showposts=-1'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"> <?php the_title(); ?></a> <div class="entry-summary"> <?php the_excerpt(); ?> </div> <?php the_category(',');?> <br /><br /> <?php endwhile; else: ?> <p><?php _e('No posts by this author.'); ?></p> <?php endif; ?> <!-- End Loop --> <br /><br /> </div> <?php include(TEMPLATEPATH."/right.php");?> <?php get_footer(); ?>
Forum: Plugins
In reply to: Change color of Classifieds PluginWorked perfectly! I love you!
Forum: Plugins
In reply to: Change color of Classifieds PluginHere is the code:
[Moderated: Too much code. Please consider placing the code in a text file on your site with a link here -or- use a pastebin service such as https://wordpress.pastebin.com. Thanks!]
Forum: Themes and Templates
In reply to: My Traveling Sidebargreat…now my footer is gone too…
Forum: Themes and Templates
In reply to: Centering picturesyou’re amazing! Thank you!!
Forum: Themes and Templates
In reply to: Centering picturesDidn’t work. Here is a link to the site: https://prommafia.com/
Forum: Fixing WordPress
In reply to: Comment field missing from pages but not postsThere is no page.php. Is that the same as index.php?
Viewing 8 replies - 1 through 8 (of 8 total)