konzine
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Posts nav on next page – Template?Nevermind, got it;
<div class="navigation"> <div class="alignleft"><?php previous_posts_link('« Previous Entries') ?></div> <div class="alignright"><?php next_posts_link('Next Entries »','') ?></div> </div>Forum: Themes and Templates
In reply to: Parent And Child Divs – Background IssueWow.. Just wow. I am retarded. Thank you.
…God I feel like an ass.
Forum: Fixing WordPress
In reply to: DIVs – CSS color not working?I am a big dummy! I found the error to be with the children divs.
For anyone else who has this issue, the resulting code for your css;
#wrapper { width: 1000px ; clear: both ; margin-left: auto ; margin-right: auto ; background-color: black ; overflow: hidden ; }Forum: Themes and Templates
In reply to: How to stop pics and text from overlapping?I also must recommend some padding, and adding line-height to your text areas.
Forum: Themes and Templates
In reply to: Not understanding how to alter this themeForum: Themes and Templates
In reply to: Creating an Archive IndexHi.
When you go to your setting in the admin, how many posts do you have set to view per page? if it is set to only 1 post per page, your archive will only show 1 post per page. May want to change that to 10. Also, running the loop WILL show as many posts, excerpt or whatever else youd like. Use this as a guide :
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <?php the_time('F jS, Y'); ?> <?php the_excerpt(); ?> <?php endwhile; else: ?> <?php _e('Sorry, no posts matched your criteria.'); ?> <?php endif; ?>Forum: Themes and Templates
In reply to: “<div>” Issues : Location, Location…Location…Well, I resolved the issue by myself. Sometimes you just have to mess around with code placement :P. For ANYONE who wanted to know, here is the correct coding for this :
<div id="right"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <?php the_excerpt(); ?><br /> </div> <div id="left"> <?php the_time('F jS, Y'); ?> </div> <?php endwhile; else: ?> <?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?> </div>Forum: Themes and Templates
In reply to: Install new themeMy suggestion.
Get an FTP handling software, like fireftp for mozilla.
Download a fresh, brand spanking new .zip’d WordPress.
Empty the contents of the .Zip, to a folder on your Desktop.
Take everything INSIDE the folder on the desktop (So you want to be grabbing all that “junk” we were talking about before) and drag it INTO your root directory.
THEN! Go through the install process again.
Once installed, upload a theme as stated in my previous post.
Go to your Admin tools, change the theme, have wordpress and then somehow profit.
Forum: Themes and Templates
In reply to: Install new themeIm just going to use Root in place of “www.nestinvestors.com”.
The folders you should see as soon as you open the ftp connection should be :
-
images
included
wp-admin
wp-content
wp-includesAnd a whole bunch of other junk. Open the folder “Content”. Open the folder “Themes”. Make a new folder in here, and for now lets name it “Example”.
So, it would be (including root for fun) Root/Wp-Content/Themes/Example. You HAVE to have a few things in order for your theme to appear. You need :
-
index.php (note the small case “i” on index..)
style.cssIf these things are NOT in the directory, your theme aint showin up bub.
Forum: Plugins
In reply to: Point to single postYou rock!