Forum Replies Created
-
AuthorPosts
-
QUESTIONM
MemberHALLELUJAH!! I figured it out plus how to implement changes on an "element by element" basis :S..I don't talk code sorry.
If it helps anybody out if you have three individual "elements" (.footer-widget-1, .footer-widget-2 and .footer-widget-3) in the same "category" (footer widgets) you can style them individually without effecting them all.
The serious designers here will probably have a laugh at this 101 I just figured out but here goes...
You find a spot where the elements are lumped together like:
----
.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
padding: 0% 0% 0%;
width: 33.3333333333%;
}
---
You leave that alone call them out individually below. like say you wanted .footer-widget-1 tooo I don't know make some toast you would put in
---
.footer-widget-1 {
toast: bread;
}
---
If you wanted both widget one and two to make toast but not three it's as easy putting commas and curlys in the right place.
Again just individually..
---
.footer-widget-1,
.footer-widget-2 {
toast: bread;
}
---
Just forget about mentioning .footer-widget-3 you have enough toast already. Hope this helps anyone through a multi-hour code meltdown like mine.QUESTIONM
MemberThank you for the speedy reply. Oh dear though, cache issues always make me feel slow (I have no idea what they actually do, I just use them because smarter folk than I do) so I may need more hand holding on this :s If it would be quicker to just install a different possibly better cache plugin I'm open to suggestions as my following queries are long winded and you'll be able to tell I'm just lost.
1) If browser cache is the same as site cache then it shouldn't be an issue as I "delete cache" regularly or is that not the same as clearing a cache? If not, wouldn't it be him that needs to clear his cache? lol I know.
2) The plugin Hostgator installs is "WP super cache" which is what I am using on both sites. I haven't worked on AMC for a while but if I deactivate it just to alleviate the problem then isn't that site rendered without a cache plugin?
3) I see no "Flush cache" option anywhere in my wp admin section but I am using GoDaddy but simply as my registrar, not hosting, so I'm assuming that option isn't available to me either?
4) How did I get this job? Jk, but really though.
QUESTIONM
MemberThank you very much, I will apply this as soon as I get the time.
QUESTIONM
MemberThanks again!
QUESTIONM
MemberWell this is awkward, two years later and I'm attempting to create the same effect in Minimum Pro instead of just "Minimum" but this:
.hentry {
background: #FFFFFF;
padding: 1em;
-webkit-box-shadow: -3px 3px 5px rgba(50, 50, 50, 0.8);
-moz-box-shadow: -3px 3px 5px rgba(50, 50, 50, 0.8);
box-shadow: -3px 3px 5px rgba(50, 50, 50, 0.8);
}doesn't seem to be working anymore on this site: amc-pawn.com
Is there a new way?
QUESTIONM
MemberThat worked perfectly, thank you!
QUESTIONM
Memberboth if possible. Anything that is content basically posts, excerpts etc etc
QUESTIONM
MemberI was actually just having this same problem. If I understand correctly you want to push your content away from the left side of the screen and more towards the center?
If that's the case look for:
/* Content
------------------------------------------------------------ */#content {
float: left;
width: 740px;
}.sidebar-content #content {
float: right;
}.full-width-content #content {
width: 100%;
}.hentry {
margin: 0 0 50px;
}and change it to:
/* Content
------------------------------------------------------------ */#content {
float: left;
width: 740px;
}.sidebar-content #content {
float: right;
}.full-width-content #content {
width: 100%;
}.hentry {
margin: 0 50px <--(or however far you want to push it) 50px;
}QUESTIONM
MemberAha! I'm slowly getting the hang of this stuff π
I figured out that the code you gave me worked on the homepage because that's what had a "grid"
I tried simply swapping out the word grid for post like so
.genesis-post-even, .genesis-post-odd {
background: #FFFFFF;
padding: 1em;
width: 42%;
-webkit-box-shadow: -3px 3px 5px rgba(50, 50, 50, 0.8);
-moz-box-shadow: -3px 3px 5px rgba(50, 50, 50, 0.8);
box-shadow: -3px 3px 5px rgba(50, 50, 50, 0.8);
}
img.alignleft {
display: block;
margin-left: auto;
margin-right: auto }but that didn't work π does anyone know if I'm getting close though?
QUESTIONM
MemberThanks man, that was quick!
That definitely did the trick for the post excerpts but the individual posts themselves are still not.."backgrounded"
is there another css for that?
QUESTIONM
MemberThanks for the quick help guy!
I implemented the code but it seems to get rid of the home page image as well :(. I'll keep tinkering though
QUESTIONM
MemberIf you click any post or page the featured image shows up right under the nav bar. I really only wanted the featured image to show up beside the snippet next to post excerpts.
QUESTIONM
MemberHey I'm actually having the same problem that Kimberley was. I'd love to know just how to remove the featured image from showing up in the top portion but still be able to keep the home page looking the way it does. I tried getting rid of....
/** Add the featured image section */
add_action( 'genesis_after_header', 'minimum_featured_image' );
function minimum_featured_image() {
if ( is_home() ) {
echo '<div id="featured-image"><img src="'. get_stylesheet_directory_uri() . '/images/sample.jpg" /></div>';
}
elseif ( is_singular( array( 'post', 'page' ) ) && has_post_thumbnail() ){
echo '<div id="featured-image">';
echo get_the_post_thumbnail($thumbnail->ID, 'header');
echo '</div>';
}
}From the functions.php but that was obviously a newbie mistake as like I mentioned it got rid of my homepage pic too π
Any help on this would be great
Regards, Luke S.
-
AuthorPosts