webfwrd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: SEO Friendly ThemesI am not sure how some of the theme developers define “SEO friendly theme”. For me SEO friendly theme should have following things:
- No tables! Yup, fully CSS and separate graphical element from content as much as possible
- Web Standards compliance and use semantic codes
- Display site title and tagline in META (title should be changed as user navigate the site)
- Proper usage of header tags (h1 for site title, h2 for tagline, h3 for post title and etc)
Forum: Themes and Templates
In reply to: Installing themes on ipower????First of all, locate the folder where you WP is installed, then browse to wp-content/themes/ and FTP whatever theme you want to install there and activate it from WP admin.
Forum: Themes and Templates
In reply to: Making wordpress as my website CMSFrom what I have seen, you have placed the code for displaying page content in the wrong place. So check your page.php and make sure your query is in the place where you want the content to be
Forum: Themes and Templates
In reply to: add “category” on post titleA question, what format you want it to be appeared. SiteTitle > Category ?
Forum: Themes and Templates
In reply to: Is there a theme like my current website layout?You can just go to http://blogfwrd.com around next week to download the theme…
Forum: Themes and Templates
In reply to: Making wordpress as my website CMSSo it’s actually working? “service-2”, you can change that on page edit page just under the title textbox
Forum: Themes and Templates
In reply to: How to find and remove an element in a ThemeIn that case, probably the comment tag is put inside another file other than comment.php and comments-popup.php. I can’t seem to find a theme name Phantom at the link you provided as well.
It will help if I can look at the theme files…Do you still have the link to that theme?
Forum: Themes and Templates
In reply to: New BackgroundNormally inside your CSS, you will find something like this:
body { color:#000; background-color:#fff; }So what you have to do is, just before the end
}a , please add thisbackground:url(images/yourimage.jpg) no-repeat;Forum: Themes and Templates
In reply to: Making wordpress as my website CMSJust to check, is it working at http://www.yourdomain.com/?page_id=1 ?
Forum: Themes and Templates
In reply to: Is there a theme like my current website layout?I have a theme which is in development…should be releasing next week. Not sure whether it meets your demand. Take a peek here – http://www.flickr.com/photos/webfwrd/3044859213/
Forum: Themes and Templates
In reply to: New BackgroundOpen the CSS file and add background image for body element.
Forum: Themes and Templates
In reply to: the_content – open a link in a new windowActually you can just do like this:
<?php the_content('<div class="post-more" onClick="...">Read the rest of this entry »</div>'); ?>Forum: Themes and Templates
In reply to: Making wordpress as my website CMSCheck your .htaccess file and Permalink setting as well (make sure the selection if not Default), and make sure you host supports mod_rewrite as well.
You will be able to access your site via http://www.yourdomain.com/?page_id=1 (replace the number with the id of your page).
Forum: Themes and Templates
In reply to: How to find and remove an element in a ThemeOkie, just open the theme folder, find comment.php and search for “Comments Off” and remove the whole line. Normally it will be like
<p class="nocomments"><?php _e('Comments Off') ?></p>Forum: Themes and Templates
In reply to: how to upload a themeFTP to your host, go into your folder where your blog is, then find for wp-content foler, then open the themes folder and just upload the folder of the theme (after extraction) there. Then go to your WordPress admin > Themes and find the name of the theme and activate it.