pistonsnationblog
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: make bold text bolderThanks. That worked.
Forum: Fixing WordPress
In reply to: replace bullet points with a graphic when used in postspistonsnationblog.com (any post w/ a list)
I tried to right click and that showed a divided image.
Forum: Fixing WordPress
In reply to: replace bullet points with a graphic when used in postsI looked in the image folder and it really isn’t there. There’s a bullet list .gif, but it is not used in my theme. When I create a list in a post it’s a round bullet, the bullet in my image folder is an arrow.
Forum: Fixing WordPress
In reply to: Put categories under post in a boxThanks. That was what I was looking for mercime!
Forum: Fixing WordPress
In reply to: Put categories under post in a boxI’m sorry. I don’t know how to properly edit the theme to do that. That was my question.
Forum: Fixing WordPress
In reply to: make “continue reading >>” boldI want it to happen automatically.
Here’s the code from single.php
<?php the_content('Continue Reading »' ); ?>
Is this what I edit? And, how would I do that?
Forum: Fixing WordPress
In reply to: Two pages, two blogs?Did it look like this (’45’)? The quotes have to be in there.
Forum: Fixing WordPress
In reply to: Two pages, two blogs?When I’m in my control panel clicking on Main Index template (i.e. index.php)it’s near the top, only about 9 lines from the top.
Forum: Fixing WordPress
In reply to: Two pages, two blogs?I’ve done this with my blog recently, here’s how I did it: You create a category called “reviews” and then put this code in your index.php
<?php if (in_category('###') && is_home()) continue; ?>
Where you see ‘###‘ replace that with the “reviews” category number
that code goes directly under:
<?php while (have_posts()) : the_post(); ?>
This makes the posts published under “reviews” get ignored by the home page.
Then what I did was added a link for the skipped category to my nav bar.
Hope this helps ??
Forum: Fixing WordPress
In reply to: How to: Main blog skips catagoryActually I found this code:
<?php if (in_category(’94’) && is_home()) continue; ?>and it seems to be just what I was looking for. Now I just need to know how to prevent a category from showing up in y RSS
Forum: Themes and Templates
In reply to: Turning a page into secondary blogAny takers on this one?
Forum: Fixing WordPress
In reply to: Turn page into secondary blogAny takers on this one? :/
Forum: Fixing WordPress
In reply to: random banner^^ bump ^^
Forum: Fixing WordPress
In reply to: post title overlapping posted by lineHow would I execute that?
Forum: Fixing WordPress
In reply to: post title overlapping posted by linehow about moving the author line to below the post?