motivatingfactor
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Help please with padding around header imageSorry about that – I provided a solution to the wrong problem ?? – If you want to reduce the distance between your header & the main body text:
Adjust the padding-bottom for the .post class (line 156)
If you have any problems, feel free to begin a chat with me:
skype: motivatebusiness
yahoo: motivatebusinessForum: Themes and Templates
In reply to: Help please with padding around header imageHello delveinto,
In you style.css file, on line 61 you will see
#header {style.css (line 61)
font-size:1em;
font-variant:small-caps;
height:100px;
margin:40px 0 0;
text-align:left;
}reduce the “margin: 40px” value
Forum: Themes and Templates
In reply to: using mandingo theme and i want to collapse all postsI am more than happy to help you, but I will need to see you theme. Please provide a link.
Forum: Themes and Templates
In reply to: Footer won’t align in IEHello jneilson23,
Try using this CSS Browser Selector, it is a big help when working with cross-browser issues: https://rafael.adm.br/css_browser_selector/
Forum: Themes and Templates
In reply to: Background Image Won’t Show Up…Change to:
background-image: url(images/kubrickbgcolor.jpg);
background-position:top;
background-repeat:no-repeat;if you still need help, you can message me:
skype: motivatebusiness
yahoo: motivatebusinessForum: Themes and Templates
In reply to: How To Delete 125*125 Ads From The SidebarHello zzz7,
Can you please copy & paste the code from your sidebar.php file? I will then be able to help you further.
Also, you can begin a chat with me:
skype: motivatebusiness
yahoo: motivatebusinessForum: Fixing WordPress
In reply to: Remove the ‘READ MORE’ button@christer.trasti –
Here you are, use this code:
<?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(); ?>"> <div class="postwrapper"> <a href="<?php the_permalink() ?>" rel="bookmark" title="Continue reading the rest of this entry ?"><img src="<?php $key="thumbnail"; echo get_post_meta($post->ID, $key, true); ?>" alt="thumbnail" class="thumbnail" /></a> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <div class="entry"> <?php the_content(); ?> </div> </div> <div class="postmetadata"> <span class="thetime"><?php the_time('F jS, Y') ?></span> <span class="thecategory"><?php the_category(', ') ?></span> <?php edit_post_link('Edit', '<span class="editthispost">', '</span>'); ?> <span class="thecomments"><?php comments_popup_link('No Comments ?', '1 Comment ?', '% Comments ?'); ?></span> <div class="readmore"> <!-- <a href="<?php the_permalink() ?>" rel="bookmark" title="Continue reading the rest of this entry ?">Read More</a>--> </div> </div> </div> <?php endwhile; ?> <div class="navigation"> <div class="navleft"><?php next_posts_link('Older Entries') ?></div> <div class="navright"><?php previous_posts_link('Newer 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(); ?>
If you have any more issues, So I can help you quickly, can you please begin a chat with me on one of the following:
skype: motivatebusiness
yahoo: motivatebusinessThis way I can quickly address any issues.
Forum: Fixing WordPress
In reply to: Remove the ‘READ MORE’ button@ christer.trasti –
Please note to remove the commented code:
<!--Below I have removed the Read More--> <?php /*?> <div class="readmore"> " rel="bookmark" title="Continue reading the rest of this entry ?">Read More </div> <?php */?> <!--Above I have removed the Read More-->
Forum: Fixing WordPress
In reply to: Remove the ‘READ MORE’ buttonHere is your revised code:
<?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(); ?>”>
<div class=”postwrapper”>
” rel=”bookmark” title=”Continue reading the rest of this entry ?”><img src=”<?php $key=”thumbnail”; echo get_post_meta($post->ID, $key, true); ?>” alt=”thumbnail” class=”thumbnail” />
<h2>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h2>
<div class=”entry”>
<?php the_excerpt(); ?>
</div>
</div>
<div class=”postmetadata”>
<span class=”thetime”><?php the_time(‘F jS, Y’) ?></span>
<span class=”thecategory”><?php the_category(‘, ‘) ?></span>
<?php edit_post_link(‘Edit’, ‘<span class=”editthispost”>’, ‘</span>’); ?>
<span class=”thecomments”><?php comments_popup_link(‘No Comments ?’, ‘1 Comment ?’, ‘% Comments ?’); ?></span><!–Below I have removed the Read More–>
<?php /*?> <div class=”readmore”>
” rel=”bookmark” title=”Continue reading the rest of this entry ?”>Read More
</div>
<?php */?><!–Above I have removed the Read More–>
</div>
</div><?php endwhile; ?>
<div class=”navigation”>
<div class=”navleft”><?php next_posts_link(‘Older Entries’) ?></div>
<div class=”navright”><?php previous_posts_link(‘Newer 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: Remove the ‘READ MORE’ buttonHello christer.trasti,
Your read more button is located inside your theme. Look inside the index.php file, you should see it.
If you have any questions, let me know ??
Forum: Themes and Templates
In reply to: Flash Not Showing upHello drmolly,
I have solved my issue – it began when I set my Permalink Settings to “Month and name”. I needed to reference the swf file using an absolute url.
hope this helps, if not, post a reply
Forum: Fixing WordPress
In reply to: How to change header on one pageHello, If you are still having this problem, I can help.
Forum: Themes and Templates
In reply to: Recent Posts Arguments?I got it,
Using the following:
<?php while (have_posts()) : the_post(); ?>
<p>“><?php the_time(‘j.m.y’); ?> / <?php the_title(); ?></p>
<?php endwhile; ?>Wow, the Otto’s php code widget Plugin is great, I was able to use the same php that I used in the content area of the theme.
Thanks for all your help t31os & MichaelH
Regards,
Forum: Themes and Templates
In reply to: Recent Posts Arguments?Ok, we are getting close. Below is the modified code I used:
<?php
$posts=get_posts(‘showposts=5’);
if ($posts) {
foreach($posts as $post) {
setup_postdata($post);
?>
<p>“><?php the_time(‘j.m.y’); ?> / <?php the_title(); ?></p>
<?php }
}
?>But it only shows the oldest post “Buds” twice. It is not showing each post. How can I modify the above code to show each post and not the same post twice?
You can view the results here: https://www.organic-tote-bags.com/blog/
The results of the above code, appear beneath the heading “Test Code”Forum: Themes and Templates
In reply to: Recent Posts Arguments?Yes,
* WINTER DARK
* BUDSare the previous posts I would like to display, having the post date on their left-side. They are currently being displayed, using the “Recent Posts widget”.
Beneath “Archives” you will see:
by adminBUDS
by adminBUDSThese are the results of the php code you provided, using Otto’s Plugin.