seejee
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Font formatting in PHP files?i would just assign a class to it and add it in the stylesheet?
Forum: Your WordPress
In reply to: Looking for bloggers and designersi think your logo drafts are possibly the most unoriginal logos i have ever seen
Forum: Themes and Templates
In reply to: making my site look the same in wordpress@ jim
there is probably a little more to it than that. unless its a wordpress ‘theme’ you will need to do a bit of work
Forum: Themes and Templates
In reply to: CSS Help – I have a dashed line that will not turn salmon.check your style sheets again.
i did come across a couple where the border color was set to #ccc
Forum: Fixing WordPress
In reply to: How To: Add home page URL link into header image?2. likely style.css or stylesheet.css
3. i don’t see any star image.. unless you are talking about the little ones next to your links
Forum: Fixing WordPress
In reply to: Adding news to site?it could be done but your best bet is either to find a platform that is better for posting game updates or remaking your site on the wordpress platform
Forum: Fixing WordPress
In reply to: Put comments to display under postsis this on the main index?
or are the comments not showing when you’re in the actual post page?
Forum: Themes and Templates
In reply to: Recommendations for a Theme – Helpdepends on what you mean by a ‘cool’ way.
lots of themes such as ‘viewport’ for example display images and videos in a neat way. often times these can be a bit more difficult to implement as well as update.
Forum: Themes and Templates
In reply to: WordPress theme tutorial helpno problem
Forum: Themes and Templates
In reply to: WordPress theme tutorial helphey i followed the same tutorial.
the codes he supplies you pulls the information from your wordpress database.
<a href="<?php bloginfo('url'); ?>
that is sufficient as is and you don’t need to fill in the ‘url’ portion of it, same goes for the blog description.
that being said, and on another note make sure you do type all the code like he tells you to. if you copy paste lots of times things won’t work.
Forum: Themes and Templates
In reply to: Category-x.php to main pagethank-you
that crossed my mind originally but i made myself believe that it wouldn’t work. i was wrong. thanks again
Forum: Themes and Templates
In reply to: Show 1 post followed by titleshey sorry i’m really new to the wordpress structure. everytime i try adding that my page just loads white. this is the part of my custom category page that needs to be edited. the way i have it right now loads the post titles perfect but i can’t get the newest post to load at the top.
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink(); ?>" title="<?php the_title() ?>"><?php the_title(); ?></a></h2> <div class="entry"> <?php the_content(); ?> <p class="postmetadata"> Posted on: <strong><?php the_time("l F dS Y") ?>, <?php the_time() ?></strong><br /> <?php _e('Filed under:'); ?> <strong><?php the_category(', ') ?></strong> <?php _e('by'); ?> <strong><?php the_author(); ?></strong><br /> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> <?php edit_post_link('Edit', ' | ', ''); ?> </p> </div> </div> <?php endwhile; ?> <div class="navigation"> <?php posts_nav_link(); ?> </div> <?php else : ?> <div class="post"> <h2><?php_e('Not Found') ?></h2> </div> <?php endif; ?>
i guess while i’m asking to.. is there anyway to make the next post/previous post links stay within the same category?
Forum: Themes and Templates
In reply to: ‘ho’i’m going to assume theres going to be ‘ho’ sitting somewhere in your header.php