cbeaman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Horizontal Image linksHey thanks John!
that’s perfect, easy fix…! Yea, I should probably learn how to use the class thing, but I’m not sure how to do that at the moment. If it works though, I’m happy!
thanks again,
CharlesForum: Themes and Templates
In reply to: Twenty Ten: Show Background Between Posts?I have been trying to achieve the same effect with my site for some time, but I can’t quite figure out how…
How might I go about using the .hentry selector, I’m definitely a beginner, but would love to figure this out
Here is my blog:
https://www.robotspacebrain.com/
Really appreciate any help you can give!
Forum: Fixing WordPress
In reply to: Trying to get jQuery working…Oh, and I got this rollover method from: https://atlantajones.com/web-dev/easy-reusable-image-rollovers-with-jquery/
and it seems to work fine for him:
Forum: Fixing WordPress
In reply to: Different Backgrounds for each CategoryThanks a bunch.
the body_class worked perfectly!
for anyone who wants to change backgrounds for different categories:
put something like this in the style.css
body.home { background-image: url('images/braincloseup4.jpg'); } body.category-robot{ background-image: url('images/oldpaper2.jpg'); } body.category-space{ background-image: url('images/oldpaper3.jpg'); } body.category-brain{ background-image: url('images/braincloseup4.jpg'); }
this allowed me to have a background image for home, and then for the 3 different categories: robot, space, and brain with whatever images you want.
and you’ll need this in the header.php
<body <?php body_class(); ?>>
in the place of <body>
thanks again!
Forum: Fixing WordPress
In reply to: Different Backgrounds for each CategorySorry, the solution is from https://fearlessflyer.com/2009/05/how-to-change-the-background-dynamically-in-your-wordpress-theme/
and it’s working great in firefox, but I’d like to find a solution that can work in IE and Safari as well.
Many thanks for the help,
I’m learning slowly…Forum: Fixing WordPress
In reply to: Trying to Add Background Space between postsYea, that’s what I was thinking at this point… Do you know of a theme that is already set-up with background space between posts?
Or, could you possibly point me in the right direction to figure out how to undergo the template editing and CSS work. I’m pretty novice to this whole thing, but I like to learn.
Thanks for the help!