Webmeba
Forum Replies Created
-
Forum: Your WordPress
In reply to: Eish! (still in development) Theme feedbackRight, I fixed all the font problmes and increased the font size in the comments.
I’ll probably add max/min – width soon.
Any other comments?
Forum: Themes and Templates
In reply to: Help with a theme i working onuse this
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
Forum: Themes and Templates
In reply to: Help with a theme i working onhmm
try removing
<?php if (is_404()) { header("HTTP/1.1 404 Not Found"); } ?>Forum: Themes and Templates
In reply to: Template tag for posts page1. find the url of your posts page
2. insert this url into your templateto find the url, just go to
settings -> reading then under “Front page displays” you’ll see something like “Post page” and then a dropdown list. Note down what page you set it to. Then go to manage -> pages, then find the page, click on it (this will take you to the page). Then just note down the url.
Forum: Themes and Templates
In reply to: Help with a theme i working onwell i think we’d have to see the theme in action before we could say something over here :S . But judging by your problem it’s probably some PHP error.
Also what “things” don’t work?
Forum: Themes and Templates
In reply to: Post ColorsBefore the loop type
<?php function post_style() { static $post_count; $post_count++; if ($post_count % 2) { echo "post_alt"; } else { echo "post"; } } ?>Instead of <div class=”post”> (or whatever else wraps your post)
use
<div class="<?php post_style(); ?>" id="post-<?php the_ID(); ?>">then end the loop with… (notice the else)
<?php endwhile; ?> <?php else : ?> <?php endif; ?>to style this apply all styles to
.post
and
.post_altso in your case type:
.post{ background: #fff;}
.post_alt{ background: #eee;}Forum: Themes and Templates
In reply to: List post excerpts on front-page with static texti think there is a plugin which changes the default number of characters the_excerpt displays.
EDIT:
here we go:
http://www.cybercoder.net/wordpress-excerpt-plugin.htmlForum: Themes and Templates
In reply to: List post excerpts on front-page with static textinstead of the_content use the_excerpt
Forum: Your WordPress
In reply to: Simple but Fresh….I likes it!
But maybe you should emphasize that “Main Menu” of yours.
Forum: Themes and Templates
In reply to: Problem installing my own theme1.) Download the theme
2.) Extract the .rar or .zip contents to your desktop or any other place
3.) copy the theme folder to wp-conten/themes/
4.) Go to the “Presentation” tab (or “Design” in WP 2.5)
5.) click on any theme you want to useForum: Themes and Templates
In reply to: Theme…Well, first download the theme in question. Extract it to your desktop or any other place, usually there’ll be a readme file with it, explaining what to do next.
If there isn’t, then copy the theme folder into wp-content/themes/. Now go to you Control Panel (CP) and hop over to the “Presentation” tab (Design if you’re using WP 2.5) then just click on the theme you want to use.
Forum: Fixing WordPress
In reply to: Having problems using a custom static front pagebump
Forum: Fixing WordPress
In reply to: Having problems using a custom static front pageWhistler
I want the static page at designmeba.com, and my blog at designmeba.com/blog
/blog already works you can go check it out
but when I try to load the main site I get some weird PHP error, although the code is perfectly fine.Forum: Fixing WordPress
In reply to: Having problems using a custom static front pagebump
Forum: Fixing WordPress
In reply to: How do I add a webpage?Woops, kmessinger is right, I though you wanted your homepage set as some random html page.
Just put the html files somewhere in your website and link to/from it. Usually a 404 appears when there is no such page so double check if the path your entering in the browser is correct.