hit1205
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: IS THIS POSSIBLE? How to have to copies of a blog???Do you want both blogs with the same posts and different comments, or the same posts and comments?
If you only want the same posts on both blogs with separate comment systems for your friends and businesses, I think the Multipost MU plugin may be a good solution. It could post same post on different sub blogs at once.
Forum: Themes and Templates
In reply to: Sidebar aligns to bottom in IE, but not FirefoxMaybe the simplest way is:
#content, #sidebar{overflow:hidden}Forum: Themes and Templates
In reply to: Sidebar helpMaybe you could use
</center>to close the<center>tag 🙂
A lot of HTML tags need end tags, you can find them on http://www.w3.org/TR/html401/index/elements.htmlForum: Themes and Templates
In reply to: CSS styles not working…?You should use # sign before ID, not dot.
For example, changing .ad_header into #ad_header.
Dot must be inserted before the class name 🙂Here is a related content on CSS standard documents:
http://www.w3.org/TR/CSS21/selector.htmlForum: Fixing WordPress
In reply to: Chinese fontMaybe you didn’t make the same charset setting on your database and wp-config.php.
There is …
define('DB_COLLATE', '');
… on wp-config.php, this charset setting should be the same with the database’s one.