ladycrow
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Keeping the sidebar (and other elements on the page) constantWell, I hope the music doesn’t start automatically and you have buttons for visitors to turn it off.
You could.. put the music on another page and bring it up say, in your sidebar, via a small I-frame.
Forum: Themes and Templates
In reply to: Where do these avatars come from?In yuor comments.php, you should have something similar.. change URL to the url of the image you want to be default
<?php echo get_avatar( get_comment_author_email(), $size = '50', $default = 'URL' ); ?>
Forum: Themes and Templates
In reply to: How do I retrieve my old header design?You need to edit the header.php file in your wordpress theme and replace the blue header with your regular one.
Forum: Themes and Templates
In reply to: Line Spacing QuestionIt appears those 2 sections are simply links with a line break in between. The other sections use lists.
<ul><li><a href"yourlink">text</a></li></ul.
Forum: Themes and Templates
In reply to: Delete the “stars” in front of widgett titlesIn your style.css look for this line
.sidebars li { list-style-image: url(schemes/blue/images/star.gif); margin: 0 0 15px 25px; }
You need to change it. You can change the URL to a different image or change it similar to this for nothing
.sidebars li { list-style-type: none; margin: 0 0 15px 25px; }
Forum: Themes and Templates
In reply to: Cutline Header ProblemYou need to upload header_3.jpg to the images folder of your current theme.
Open FTP, go to the directory where wp is installed (often “wp”), wp-content and then find the folder which has the same name as your current themeForum: Themes and Templates
In reply to: How Do You Install A New Template?Once you download and unzip the file, upload the whole folder (it will be called the name of your template) into wp-content/themes
Then you can activate it from the design menu
Forum: Fixing WordPress
In reply to: User LoginOnly registered users will be able to post.
This is easy to set up by enabling registration.
You can protect posts with passwords or with plugins that set category access for usersForum: Themes and Templates
In reply to: WP was accidentally deletedIf you have phpmyadmin, try this
restoreForum: Themes and Templates
In reply to: Comments StylingNo problem. Thanks a lot!
It seems my comments file is pretty outdated so I’m going to see if I can swap it with the default theme comments.php and if that’ll help any
-edit-
It did help. I’m not even sure how but it’s working so I’ll close this (if I can)Forum: Themes and Templates
In reply to: Comments StylingJust wondering if anyone else has any thoughts on this one..?
Forum: Themes and Templates
In reply to: Comments StylingI am using NeoSapien. It seemed to be -slightly- outdated and I’ve tweaked it a bit. It didn’t have the $oddcomment so I added what I found.. resulting in this
<?php foreach ($comments as $comment) : ?> <li class="<?php echo $oddcomment; ?> " id="comment-<?php comment_ID() ?>"> <?php echo get_avatar( get_comment_author_email(), $size = '50', $default = 'https://www.ofsexandlove.com/wp/wp-content/themes/ofsexandlove/images/avatar.jpg' ); ?> <cite><?php comment_type(__('Comment'), __('Trackback'), __('Pingback')); ?> <?php _e('by'); ?> <?php comment_author_link() ?> on <?php comment_date() ?> <a href="#comment-<?php comment_ID() ?>"><?php comment_time() ?></a></cite> <?php comment_text() ?> </li> <?php /* Changes every other comment to a different class */ if("altcomment" == $oddcomment) {$oddcomment="";} else { $oddcomment="altcomment"; } ?> <?php endforeach; ?>
Forum: Plugins
In reply to: Looking for a pluginAll right, I found a way to do this with categories – and not even a plugin! Pretty easy. I’lk post that method..
<?php $recent = new WP_Query("cat=3&showposts=3"); while($recent->have_posts()) : $recent->the_post();?> <li><a href="<?php the_permalink() ?>" rel="bookmark"> <?php the_title(); ?> </a></li> <?php endwhile; ?>
but I’m wondering if there’s any way to do this with tags? That would work better with another plugin I am using
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Great PluginSame here.
I tried a couple that did too much and were too finicky. I needed something simple and CF7 is WONDERFUL!Forum: Fixing WordPress
In reply to: Blogger import helpIt sounds like you’re publishing either via FTP or with Blogger’s custom domain option. Temporary switch publishing to blogspot.com (you can switch back without any data loss!) and then try to import. Make sure to have post pages on!