chrisfiddes
Forum Replies Created
-
Forum: Plugins
In reply to: Brian’s Latest Comments Help!Alright, thanks a bunch!
Forum: Plugins
In reply to: Brian’s Latest Comments Help!I’m sorry to double-post in this thread like this, but I would really be grateful if someone could help me- it’s messing up my whole sidebar! Thank you.
Forum: Plugins
In reply to: Brian’s Latest Comments Help!Anybody have any ideas how to fix this? Thanks again!
Forum: Plugins
In reply to: Brian’s Latest Comments Help!Well, that makes the Latest Comments panel look a lot better, but all the sidebar links are closer together and don’t look right when they’re hovered over anymore. I left “display: inline” intact on my site to compare how the sidebar links don’t look right now to how they’re supposed to look in this template demo (with “display: block”):
https://demo.beccary.com/index.php?wptheme=Almost+Spring
Thank you for helping me!Forum: Themes and Templates
In reply to: Unwanted Link in Header BarAlright! After fiddling around with the code you provided for a few minutes, I got it just the way I wanted it with this:
a .description {
color: #333;
}
Thank you so much! You’ve helped me on numerous problems ;)! Someday when I’m a WP pro, I’ll try to return the favor :D.Forum: Themes and Templates
In reply to: Unwanted Link in Header BarUnfortunately, I’ve browsed most of the “clickable header” threads I could find, but my problem seems to be a little more complicated than just making the banner image link for some reason (see above posts for more info). Right now it only links in IE, and I don’t want to use JavaScript like some of the threads have suggested. Any ideas? Thanks- I’m pretty anxious to get all the kinks worked out of my blog so I can actually blog :D.
Forum: Themes and Templates
In reply to: Unwanted Link in Header BarUnfortunately, that just goes back to my previous problem in this thread in which the header image no longer links to my home page in Firefox and Opera…
Forum: Themes and Templates
In reply to: Unwanted Link in Header BarCan someone please please help me with this little thing (in my previous post)? I’m anxious to start focusing on other things (like installing plug-ins ?? !) besides code problems. Thank you!
Forum: Themes and Templates
In reply to: Unwanted Link in Header BarWOOHOO! The banner links… Wow, just the repositioning of some close tags fixed that, thank you! One minor issue though- the description now changes color on mouse hover like all the other links. How can I fix this? I’ve tried putting
text-decoration: none;
in #header, #headerimg, and .description but that didn’t work. What am I doing wrong? Thanks again!Forum: Themes and Templates
In reply to: Unwanted Link in Header BarCan someone please help me?
Forum: Themes and Templates
In reply to: Unwanted Link in Header BarOkay, that seemed to work for Firefox and Opera, although it didn’t work for IE ?? , but I can live with that. However, ironically, the header image only links back to the home page in IE! In FF and Opera, the mouse cursor turns into a hand (specified in my code), but it doesn’t do anything when you click on it… It needs to link back to the home page or there’s no way to get there ?? . Help, please?
Forum: Themes and Templates
In reply to: Unwanted Link in Header BarSurely there is a way to link the image but not the border-bottom bar though, isn’t there? Maybe the bar can be placed somewhere other than #headerimg if it can’t be there unlinked… I don’t understand why modifying some code can’t fix this.
Forum: Themes and Templates
In reply to: Hide Title and Position DescriptionThank you!
Forum: Fixing WordPress
In reply to: WP Doesn’t Show Logged InYAY! It works! Thank you so much, you’re a WP genius ;D !
Forum: Fixing WordPress
In reply to: WP Doesn’t Show Logged InThe only thing I changed was the mouseover description for the RSS links:
<li>
<h2><?php _e('Meta'); ?></h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Read entries via RSS feed'); ?>"><?php _e('Entries <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('Read comments via RSS feed'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
<?php wp_meta(); ?>
</ul>
</li>