jrav001
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Adding custom field link to bottom of postYou want the link name to be the same as your post title?
<a href="url"><?php echo get_post_meta( $post->ID, 'link', true ); ?><?php the_title(); ?></a>
To move it beside the ShareThis, just keep it within the same p tag.
Forum: Themes and Templates
In reply to: Looking for this themeThe second one in your list is using this:
https://www.wpthemes4free.com/764-wordpress-theme-detour-10/Forum: Themes and Templates
In reply to: adding sidebar imageThe url is not correct. You have:
https://www.peacefulsilkworms.com.au/public_html/wp-content/themes/atahualpa342/images/sidebarimage1.jpg
but it should be
https://www.peacefulsilkworms.com.au/wp-content/themes/atahualpa342/images/sidebarimage1.jpg
Forum: Installing WordPress
In reply to: A bug in WordPress ver 2.8.6?I did a clean install of 2.8.6 on xampp yesterday and did not have this problem. Is email working in your xampp?
Forum: Themes and Templates
In reply to: Arclite 2.02 displays only 1-column instead of 2-columnsHave you added anything to your sidebar? Go to Appearance, then Widgets and drag something over to your sidebar on the right side of the screen.
If that’s not the problem, post a link to your site so we can see?
Forum: Themes and Templates
In reply to: Make a Column LargerIf you post a link to you site, we may be able to offer advice.
Forum: Themes and Templates
In reply to: How do I stretch my footer image across the width of the page?Holy doodle that’s a lot to read….can you post a link to your site?
Forum: Themes and Templates
In reply to: adding sidebar imageYou have the url wrong. It should look more like
<img src="https://www.example.com/images/sidebarimage1.jpg" width="150" height="400 alt="textalternative" />
Forum: Themes and Templates
In reply to: Exclude Pages from Nav Bar IssueCould you add
WHERE $wpdb->posts.ID != '17'
to exclude a post? (Post with ID #17 in this case)Forum: Themes and Templates
In reply to: Navigation 5 timesYou have your menu inside the while loop, so it is displaying the menu for each instance.
Move this part.
<ul> <li><a href="<?php bloginfo('url'); ?>" title="Home">Home</a></li> <?php wp_list_pages('title_li='); ?> </ul>
Above this line:
<?php if (have_posts()) : ?>
…because you will want your menu to display even if you don’t have any posts.
Forum: Themes and Templates
In reply to: Lightword Theme – change font in header?It looks like the lightword theme used cufon for font replacement, so you will have to disable cufon.
Forum: Themes and Templates
In reply to: Changing title of read more for blogTry…
<?php the_content("? Continue Reading..." ); ?> <?php the_title(); ?>
Forum: Themes and Templates
In reply to: 5px border around layoutIf you post a link to your site we can probably figure this out….otherwise, you are limited only to those who read this forum and use the same theme as you.
Forum: Themes and Templates
In reply to: How to Change Paragraph font size in CSSFor the paragraph text, in style.css on about line 156:
.post p { font-size:14px; padding:10px 0 5px; }
The blockquote is on line 117 of styles.css. Currently it is set to:
.post blockquote { border-left:3px solid #CCCCCC; color:#777777; font-family:Georgia,"Times New Roman",Times,serif; font-size:16px; font-style:italic; line-height:1.8em; margin:10px 20px 10px 30px; padding-left:10px; }
You want to adjust the line-height, if you want less, try 1.4em to giveyou an idea of how much difference fractions of an em make.
Forum: Themes and Templates
In reply to: How do I change the text in the header?You edit header.php in your themes directory.