Tom Combs
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem lifting imagesin your wp-content directory on the server, create a folder called “uploads”.
wordpress codex says to give it a file permission of 755, however, I almost always have to give it permission 777.
Forum: Fixing WordPress
In reply to: CSS FormattingHi Danielle,
You said margin-right moved everything to the left.
Try this:
margin:0px 20px 0px -20px;
that will give it a right margin of 20px and left margin of -20px, meaning it should keep the text right where it is.
Forum: Fixing WordPress
In reply to: Changing word fontsGlad that worked.
But as noted early, keep in mind that is not the best way to do it.By main title frame, I assume you’re referring to “The Natural Solution”.
But that is a part of the header image. So you have to edit the image.Forum: Fixing WordPress
In reply to: "Notice" at top of pageExcellent, very glad I could help ??
Forum: Fixing WordPress
In reply to: can't log in / can't access dashboardLogin to your hosts control panel, find phpmyadmin and click the link.
once phpmyadmin is open, find your database, then select…
wp-options > click the browse tab > in the siteurl row, click the pencil on the left, then change your url to what it should be, then click “GO”.
Close your browser then go back to your site and try to login.
Forum: Fixing WordPress
In reply to: how to stop address from forwardlooks like you’ve fixed this.
Forum: Fixing WordPress
In reply to: Excerpts Not Showing UpIn the dashboard go to Posts then in the top right corner of the window, look for “Screen Options”, when you click it, it will drop down and show you other options available on the page.
Put a check mark in the box for excerpts, then scroll down the page and it will be there.Forum: Fixing WordPress
In reply to: Reinstall of WordPress Twenty Eleven ThemeSomewhat of a weird setup for your pages.
You’re using the primary id immediately after the main id.
Your #primary has a width of 100%, so its going to fill the area.
change the width to like 600px and your sidebar should move up.
Then you can adjust the pixels to get the desired width.Forum: Fixing WordPress
In reply to: Add Space Between Images in Text Widgetlol no worries ??
do you have access to your styles.css file? if so, that’s where you want to put the code.
If not, you could add a line break after the image.
after the link of the first image, add this:
< b r / > (no spaces)
You may need to add two of those.
Forum: Fixing WordPress
In reply to: Loop not displaying posts, instead has a link to the homepageNo worries Marvin.
I’ve had mixed result using query_posts, new WP_query, and get_posts().I’m always open to better ways of writing clean code ??
Forum: Fixing WordPress
In reply to: Where is the RSS Feed for a static page?My apologies, I copied the wrong link.
Pages don’t create a feed.
If you want to do that, you’ll have to write your own xml for the page or use a 3rd party plugin.Something like this may work for you.
https://page2rss.com/Forum: Fixing WordPress
In reply to: Loop not displaying posts, instead has a link to the homepageMarvin,
is this what the full code should look like for nblaisdell….
<?php $args = array( 'posts_per_page' => 1, 'orderby' => DESC); $temp = $wp_query; $wp_query = null; $wp_query = new WP_Query( $args ); // The Loop while ( have_posts() ) : the_post(); ?> <div class="post-cat-three"> <h2>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></h2> <small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title">" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></h2> <div class="entry-content"> <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> <p class="postmetadata">Posted in <?php the_category(', '); ?></p> </div><!-- .entry-content --> </div><!-- #post-## --> <?php endwhile; // end of the loop. $wp_query = null; $wp_query = $temp; wp_reset_query(); // Reset Query ?>
Forum: Fixing WordPress
In reply to: Add Space Between Images in Text Widgetin your css, try this:
.textwidget img { margin-top:5px; }
let me know if it works.
Forum: Fixing WordPress
In reply to: "Notice" at top of pageDid you just run a wordpress update?
Open Functions.php
look for this line of code:
add_custom_background();
//and replace it with…
add_theme_support( 'custom-background' );//then look for:
add_custom_image_header
// replace with...
add_theme_support( 'custom-header', $args )let me know if that works
Forum: Fixing WordPress
In reply to: Loop not displaying posts, instead has a link to the homepageCan you show the code for the rest of the page?
I edited the loop. I forgot to include the arguments and reset the query. However, if there is a query running on the page prior to this one, it needs to have the reset_query after the enwhile, just as below.
<?php $args = array( 'posts_per_page' => 1, 'orderby' => DESC); // The Query query_posts( $args ); // The Loop while ( have_posts() ) : the_post(); ?> <div class="post-cat-three"> <h2>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></h2> <small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title">" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></h2> <div class="entry-content"> <?php the_excerpt( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> <p class="postmetadata">Posted in <?php the_category(', '); ?></p> </div><!-- .entry-content --> </div><!-- #post-## --> <?php endwhile; // end of the loop. wp_reset_query(); // Reset Query ?>