TJP
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Theme releaseForum: Themes and Templates
In reply to: Theme release – BluelightsForum: Your WordPress
In reply to: Examples of WP that don’t look like blogs?I made this one: Puntersparadise
Dont know if it looks like a blog. It’s not.
Forum: Themes and Templates
In reply to: Need help with widgetizing theme (I Feel Dirty Theme)Well i havent touch the stylesheet. That error must have been there all the time.
In your style.css find .main, and insert:
background-color: #fff;
float:left;Forum: Fixing WordPress
In reply to: bold text in widgetsadd:
#sidebar .sidebar_right .textwidget {
font-weight: bold;
}to your style.css
Did you try to make a post in another browser ??
Forum: Installing WordPress
In reply to: View SiteIt should be:
/public_html/blog/wp-content/themes/Choclate Candy/
If you dont have /public_html/blog/wp-content/themes/ then go to /public_html/blog/wp-content/ and create a folder called themes
Do you know how to download and unzip a theme and then upload it?? If you do, upload it to the themes folder you just created.
Forum: Fixing WordPress
In reply to: Show Category Parent namefunction get_category_parent($id, $link = FALSE, $nicename = FALSE){ $chain = ''; $parent = &get_category($id); if ( is_wp_error( $parent ) ) return $parent; if ( $nicename ) $name = $parent->slug; else $name = $parent->cat_name; if ( $link ) $chain .= '<a href="' . get_category_link($parent->term_id) . '" title="' . sprintf(__("View all posts in %s"), $parent->cat_name) . '">'.$name.'</a>'; else $chain .= $name; return $chain; }
Put that in your functions.php and call it with:
<?php echo(get_category_parent($cat ,TRUE, TRUE)); ?>
Forum: Installing WordPress
In reply to: View Sitetheme or themes ??
Try to add another theme and select it in administration.
Forum: Installing WordPress
In reply to: View SiteOk. So you know how to use a FTP client ??
Use it and browse to your blog/wp-content folder. Is there a themes folder and what does it contain??.
Forum: Installing WordPress
In reply to: View SiteHow did you upload all the other content to your site.
Forum: Fixing WordPress
In reply to: listing category links horizontallyCan you give us an address to the site.
And if you are using the visual editor, try the button to the right, which gives you the advanced options (ALT+v). You should be able to select format.
Did you try another browser ??
Forum: Themes and Templates
In reply to: Can somebody please look at my code and:I dont know what you are doing wrong.
One thing that would improve your theme, would be to set the width for div#sideBar to at least 200px.