chengdu-living
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Side background images on LightWord themeI got it to work, here’s the code I used. Thanks!
body{background:#2C2C29 url(images/file.jpg) repeat top left;font-family:Tahoma;font-size:11px;color:#2C2C29;}
Forum: Themes and Templates
In reply to: Lightword – changing site background (colour or image)I got it to work, here’s the code I used:
body{background:#2C2C29 url(images/file.jpg) repeat top left;font-family:Tahoma;font-size:11px;color:#2C2C29;}
Forum: Themes and Templates
In reply to: Lightword – changing site background (colour or image)Has anyone managed to add a tiled background image to this theme?
Forum: Fixing WordPress
In reply to: Alter Comment Link OutputWhat file can I make that change in? I just want to change the comment link title.
edit: I found it, it was index.php in /wp-content/themes/lightword
Forum: Themes and Templates
In reply to: Side background images on LightWord themeHow would it be possible to add a small image that tiles as a background? How would I add that in style.css?
Thank you!!
Thanks to TRLocke, who posted the solution that worked for me.
Okay, this is all I needed to fix this:
hello tan,
please make sure it is “wp-content/uploads” and not “/wp-content/uploads”
Forum: Themes and Templates
In reply to: Justify textThanks alchymyth, that worked perfectly!
Forum: Themes and Templates
In reply to: Author pages are broken linksAny tips?
Forum: Themes and Templates
In reply to: Author pages are broken linksI… don’t know. I’m using a theme from Woothemes.com
Thanks for your help!
Forum: Fixing WordPress
In reply to: Customizing Archives.phptemplate-archives.php!
the part to remove was easy to fix and it works now: https://www.chengduliving.com/archives/
thanks!
Forum: Fixing WordPress
In reply to: Customizing Archives.phpmy mistake! that is archive.php
there is no archives.php
Forum: Fixing WordPress
In reply to: Customizing Archives.phphere’s the entire archives.php:
<?php get_header(); ?> <div id="content" class="col-full"> <div id="main" class="col-left"> <?php if (have_posts()) : $count = 0; ?> <?php if (is_category()) { ?> <span class="archive_header"><span class="fl cat"><?php _e('Archive', 'woothemes'); ?> | <?php echo single_cat_title(); ?></span> <span class="fr catrss"><?php $cat_obj = $wp_query->get_queried_object(); $cat_id = $cat_obj->cat_ID; echo '<a href="'; get_category_rss_link(true, $cat, ''); ?>"><?php _e('RSS feed for this section', 'woothemes'); ?></a></span></span> <?php } elseif (is_day()) { ?> <span class="archive_header"><?php _e('Archive', 'woothemes'); ?> | <?php the_time($GLOBALS['woodate']); ?></span> <?php } elseif (is_month()) { ?> <span class="archive_header"><?php _e('Archive', 'woothemes'); ?> | <?php the_time('F, Y'); ?></span> <?php } elseif (is_year()) { ?> <span class="archive_header"><?php _e('Archive', 'woothemes'); ?> | <?php the_time('Y'); ?></span> <?php } elseif (is_author()) { ?> <span class="archive_header"><?php _e('Archive by Author', 'woothemes'); ?></span> <?php } elseif (is_tag()) { ?> <span class="archive_header"><?php _e('Tag Archives:', 'woothemes'); ?> <?php echo single_tag_title('', true); ?></span> <?php } ?> <div class="fix"></div> <?php while (have_posts()) : the_post(); $count++; ?> <div class="box"> <div class="post"> <?php if (!woo_get_embed('embed','590','420')) woo_get_image('image',200,200,'thumbnail alignleft'); else echo woo_get_embed('embed','590','420'); ?> <h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> <p class="post-meta"> <img src="<?php bloginfo('template_directory'); ?>/images/ico-time.png" alt="" /><?php the_time($GLOBALS['woodate']); ?> </p> <div class="entry"> <?php if ( get_option('woo_archive_content') == "true" ) { ?> <?php the_content(__('Read more...', 'woothemes')); ?> <?php } else { ?> <?php the_excerpt(); ?><span class="read-more"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" class="btn"><?php _e('Read more', 'woothemes'); ?></a></span> <?php } ?> </div> <div class="fix"></div> </div><!-- /.post --> <div class="post-bottom"> <div class="fl"><span class="cat"><?php the_category(', ') ?></span></div> <div class="fr"><?php the_tags('<span class="tags">', ', ', '</span>'); ?></div> <div class="fix"></div> </div> </div> <?php endwhile; else: ?> <div class="box"> <div class="post"> <p><?php _e('Sorry, no posts matched your criteria.', 'woothemes') ?></p> </div><!-- /.post --> </div> <?php endif; ?> <div class="more_entries"> <?php if (function_exists('wp_pagenavi')) wp_pagenavi(); else { ?> <div class="fl"><?php previous_posts_link(__('Newer Entries', 'woothemes')) ?></div> <div class="fr"><?php next_posts_link(__('Older Entries', 'woothemes')) ?></div> <br class="fix" /> <?php } ?> </div> </div><!-- /#main --> <?php get_sidebar(); ?> </div><!-- /#content --> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Customizing Archives.phpyes I did. the page I’m looking at is https://www.chengduliving.com/archives/ and the archives.php that I’m editing is under wp-content/themes/headlines/
Forum: Fixing WordPress
In reply to: Customizing Archives.phpI removed everything referencing comments in archive.php but it still shows. I’m using a Woothemes.com theme (Headlines) if that makes a difference.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Reduce the horizontal size of text input box?That worked great, thanks!