Barney
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Avatar in postWhat about doing something like
<div class="avatar"> <img src="<?php bloginfo('template_url'); ?>/images/<?php the_author(); ?>.jpg" /> </div>added before the loop and css would be something like:
.avatar{ float:left; padding:0 10px 0 2px}Then just making an avatar for each author in the images folder named for the author, ie admin.jpg.
Forum: Themes and Templates
In reply to: Showing full article on index page, summary on archive pagesfind <?php the_content(‘Read the rest of this entry »’); ?>
in archive.php and change the_content to the_excerpt.Forum: Themes and Templates
In reply to: Problem with Mistylook ThemeDid not see any problems. Maybe try ctrl + f5.
Forum: Themes and Templates
In reply to: Downloading new and or better themes to wordpressGetting Started with WordPress is a good place to start.
Forum: Themes and Templates
In reply to: Mandigo- widen theme and make changesul,ul li { list-style-type:none; padding-left:0; }Put that where you put the stuff from earlier, overwrite it.
As for the sidebar thing. First I recommend downloading and installing XAMPP and installing WordPress locally. Try out stuff first where you can do no harm. OK, make a backup of your page.php or rename it, take single.php and save it as page.php. That did the trick just now when I was messin round with Mandigo 1.36.2, although the comments section was at the bottom still and I’m not really sure how to get rid of it. That php stuff is a real booger sometimes.
Forum: Fixing WordPress
In reply to: Keeping a post on topWP-Sticky there are also few plugins for post ordering.
Search “wordpress post order”.Forum: Themes and Templates
In reply to: Mandigo- widen theme and make changesLink to your site please.
The sidebar bullets can be changed by something like this in your
css:ul {list-style-type:none;}for the title bullets and
ul li {list-style-type:none;}for the items in the list.To make that effect the sidebars only name the div first like
#sidebar ul or .sidebar uldepending on the name of the div and if its class or id.Also removing the bullet may not do the trick as they will still be indented. So put in
padding-left: 0px;Include a link for more accurate answer.
Forum: Themes and Templates
In reply to: Text size and color on blog postsLooks like .top_title in your css controls the post titles but the post text looks like it is defined inline, look for
<span style="font-family: verdana; color: #ffffff">in index.php.Forum: Themes and Templates
In reply to: Advice on best way to build my cmsI recommend doing both. Get in there and pull apart some of your favorite themes and see what makes em tick. Then make your own theme, tailored to your needs. Installing XAMPP and running WP local is a good start.
Forum: Themes and Templates
In reply to: First Theme – Suggestions?Changed images to jpg with white backgrounds, seems to look ok now.
As for testing in IE browser versions how far back to go?
Forum: Themes and Templates
In reply to: CSS for hyperlinks#right a {display: block; color: #6A829E; text-decoration: none; padding: 0 6px 0 12px; margin: 0; line-height: 14pt;}does changing the 12px do anything for you?Forum: Your WordPress
In reply to: New “green energy” blog – what do you think?The right sidebar is kinda empty might fill it up with bigger Google skyscraper ads or widgets or something. Could get a plugin for rotating html pop in a text widget to rotate tips on doin stuff greener.
The add to any plugin looks pretty sweet.
Check into favicons, the little picture by the address to your site.
Check out Court’s Internet Marketing Blog good info there.
The images I saw on the front page seem to all be hot linked from other sites like Wikipedia. While the images may be in the public domain, it is still considered stealing bandwidth. I recommend downloading them, and if necessary resizing them i.e. Energy Plus building image that breaks into the sidebar. At the very least you should want to control the images on your site, Wikipedia prolly wont change your images to anything nasty.
Forum: Themes and Templates
In reply to: Cutline – How To Display Post AuthorJust looked in both cutline 3 column split and 3 column right and both have the author thingy commented out.
<!-- by <?php the_author() ?> -->
So just go into the main index template editor uncommentate it(take the<!-- and --> out) pop in<?php the_author_posts_link(); ?>` and it should work.Forum: Themes and Templates
In reply to: Looking for theme that displays only post titlesRemove this:
<?php the_content('Read the rest of this entry »'); ?>
from index.phpYou can do this from Design>Theme Editor>and clicking on the link to the Main Index Template.
Forum: Themes and Templates
In reply to: wp-calendar to big for sidebarThank you for your response. I am using Blueprint CSS Framework and the typography part that is included was messing me up. Didn’t think it was relevant at first. Commenting out their typography section fixed several other issues that I was having.
Using the px formating works perfect now. Thank you.