buddhapax
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: problems with single_cat_title after upgrading to 3.0Change
<?php single_cat_title(''); ?>to
<?php echo get_cat_name($cp_pC); ?>.It will work.
Forum: Themes and Templates
In reply to: Adding image to background, How? v. AutofocusOpen the file style.css you’ll find in /wp-content/themes/autofocusplus/ and look for
/* Global -------------------------------------------------------------- */ html {margin:0;padding:0} body {color:#999999;background-color:#FFFFFF;font-size:12px;line-height:22px;font-family: helvetica, arial, sans-serif;} [...]in body {}
add background-image: url(‘http://www.WHERE_YOUR_IMAGE_IS/image.EXT’);
So you’ll have something like:
body {color:#999999;background-color:#FFFFFF;font-size:12px;line-height:22px;font-family: helvetica, arial, sans-serif;background-image: url('http://www.mysite.com/hello.jpg');}For background-image properties (like position, repetition, etc…) have a look of: http://www.w3schools.com/css/css_background.asp
Forum: Fixing WordPress
In reply to: Embed spreadsheet in a page, allowing to save changesAnd it it possible with Google Docs?
Forum: Fixing WordPress
In reply to: Is it possibile to add loops to static pages?T H A N K S. It works…
And please last help… how can I see excepts instead of full text and how can I choose how many posts to see… thanks
Forum: Fixing WordPress
In reply to: Is it possibile to add loops to static pages?This is the link:
http://wordpress.pastebin.ca/1054952Many thanks for helping me…
Forum: Fixing WordPress
In reply to: Is it possibile to add loops to static pages?The loop seems not working. It doesn’t show any post. I just view the title of the page and the comment form…
Forum: Fixing WordPress
In reply to: Is it possibile to add loops to static pages?Made, but it doesn’t work!
Forum: Fixing WordPress
In reply to: home.php and index.php (two differens lay-outs)I use WP 2.5.1!