judyo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Featured Post Slideshow PorblemI’ve used the featured-image to the selected posts (it pulls the pic from that post), and all I get is a blank where the slideshow should be (on top) and a thumbnail of the photo with the regular photo on each blog post. So yes, it creates a thumbnail but doesn’t create the featured post slideshow with those posts. I have followed all instructions as to number of blogs that need a photo and photo size. I went back to my old theme.
Forum: Fixing WordPress
In reply to: Featured Post Slideshow PorblemMe too!
Forum: Fixing WordPress
In reply to: Ordering PagesThank you so much! Just what I needed. I’m pretty new to this & trying to learn but I drive myself nuts with this code. I tried something similar to that but not exactly so of course it didn’t work.
I, too, am trying to make my blog look more like a website. It is also under construction:
http://www.oak-lawn-il.comAgain, thanks.
Forum: Themes and Templates
In reply to: My pages don’t match my modified themeThis is from the stylesheet:
/* Begin Typography & Colors */
body {
font-size: 66%; /* Resets 1em to 10px */
font-family: ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
background-color: #CC9900;
color: #990000;
text-align: center;The only item not propagating is the color: #990000
Forum: Themes and Templates
In reply to: My pages don’t match my modified themeOK, just overwriting those other pages with the Index file didn’t do anything. There are only 2 changes that aren’t propagating. They are a font color and a background color (image).
Do I just copy those items & stick them in those pages or is there a certain code I need to use to apply them correctly?
I do have backup copies but I’m getting ready to move on to a different theme.
Forum: Themes and Templates
In reply to: My pages don’t match my modified themeThe changes that aren’t propagating over to the other pages were made in the stylesheet. Do I still overwrite the files mentioned with the index.php?
Forum: Themes and Templates
In reply to: My pages don’t match my modified themeI have contacted the theme author & hope he responds. I really don’t know how to modify (what to put) in those areas you mentioned.
Do I just drop in the font information & the one background change that isn’t going to the other pages?
Forum: Themes and Templates
In reply to: My pages don’t match my modified themeThanks, maybe I’ll have to try a different theme – darn!
Forum: Themes and Templates
In reply to: My pages don’t match my modified themeCould you tell me where that would be located (stylesheet or the Page Template or the Header)?
This is what is in the Page Templete section (I didn’t change anything here):
<?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post”>
<h2 id=”post-<?php the_ID(); ?>”><?php the_title(); ?></h2>
<div class=”entrytext”>
<?php the_content(‘<p class=”serif”>Read the rest of this page »’); ?><?php link_pages(‘Pages: ‘, ”, ‘number’); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link(‘Edit this entry.’, ”, ”); ?>
</div><?php get_sidebar(); ?>
<?php get_footer(); ?>