Forum Replies Created
-
AuthorPosts
-
Pinky
Memberhehe don't ya just love it!
I'm glad it worked out for you!
cheers
Pinky
March 18, 2013 at 1:28 pm in reply to: Quick question about header/footer in the Pretty Pictures theme… #29119Pinky
Memberhey Gregory - glad I could help.
Help Scout hey... I was just looking at that yesterday through my premium wpmu membership - will be taking it for a test drive this week... coincidence ?
cheers
Pinky
Pinky
Memberso glad it worked out... loving the colours!
cheers
Pinky
Pinky
MemberTracy can you please start a new thread with your question/s and a link to your site
cheers
Pinky
Pinky
MemberLet us know how you get on 🙂
cheers
Pinky
Pinky
MemberKathie was the events calendar I sent you yesterday any good?
cheers
Pinky
Pinky
MemberOh soz Hun.... I didn't see page 2 lol
cheers
Pinky
Pinky
MemberOh soz Hun.... I didn't see page 2 lol
cheers
Pinky
Pinky
MemberAll the black is coming from the background image - not the header.
So if that's what you are looking to get rid of you need to change this:
/* Body ———————————————————— */ body { background: #e5e9ee url(images/bg.png) repeat-x; }
to this:
/* Body ———————————————————— */ body { background: #e5e9ee; }
At least I think that's what you mean (?)
cheers
Pinky
Pinky
MemberOk girls - can you explain what you're wanting to do for me please - or indeed if your issues are sorted out.
If you still need help I'll see what I can do
cheers
Pinky
Pinky
MemberHi there
Can we have a link to your site please... it helps a lot
cheers
Pinky
Pinky
Memberlol... @ anita I actually didn't realise I'm such a nerd until I started answering some of these questions!
hehe - you sure can design tho!
cheers
Pinky
Pinky
MemberHey Mark
If you add this to your style.css it will center the images for you.
.flexslider .slides { margin-left: 140px; }
If you want to get rid of the white area, you can go to line 129 of your style.css and replace this:
.flexslider { background: #fff; position: relative; zoom: 1; }
With this:
.flexslider { background: none; position: relative; zoom: 1; }
Hope that helps
cheers
Pinky
Pinky
MemberHi there
functions.php looks fine to me.
You just need to call the functions into the home.php
On the home page replace this:
genesis_widget_area( 'home-featured-1', array( 'before' => '<div id="home-featured"><div class="wrap">', ) ); genesis_widget_area( 'home-featured-2', array( 'before' => '<div id="home-featured"><div class="wrap">', ) ); genesis_widget_area( 'home-featured-3', array( 'before' => '<div id="home-featured"><div class="wrap">', ) ); genesis_widget_area( 'newsletter', array( 'before' => '<div id="newsletter"><div class="wrap">', 'after' => '</div></div>', ) ); genesis_widget_area( 'blog', array( 'before' => '<div id="blog"><div class="wrap">', 'after' => '</div></div>', ) );
with this :
echo '<div id="home-featured"><div class="wrap">'; genesis_widget_area( 'home-featured-1', array( 'before' => '<div class="home-featured-1 widget-area">', ) ); genesis_widget_area( 'home-featured-2', array( 'before' => '<div class="home-featured-2 widget-area">', ) ); genesis_widget_area( 'home-featured-3', array( 'before' => '<div class="home-featured-3 widget-area">', ) ); echo '</div><!-- end .wrap --></div><!-- end #home-featured -->';
The css should be ok as it is but if it gives you problems once you've done all of the above, then try this:
/* Home Featured ------------------------------------------------------------ */ #home-featured { overflow: hidden; padding: 60px 0; width: 100%; } .home-featured-1, .home-featured-2 { float: left; margin: 0; overflow: hidden; text-align: center; width: 33%; } .home-featured-3 { float: right; margin: 0; overflow: hidden; text-align: center; width: 33%; }
cheers
Pinky
Pinky
Memberhey Dan
Thanks for the help to you too... I'll be trying out that bit of code myself!
cheers
Pinky
Pinky
MemberIn your functions.php file you need to change this:
/** Add support for 3-column footer widgets */ add_theme_support( 'genesis-footer-widgets', 3 );
to this:
/** Add support for 5-column footer widgets */ add_theme_support( 'genesis-footer-widgets', 5 );
Then in your style.css go to line 1611 change this:
.footer-widgets-1 { float: left; margin: 0 20px 0 0; width: 295px; } .footer-widgets-2 { float: left; width: 290px; } .footer-widgets-3 { float: right; width: 295px; }
to this:
.footer-widgets-1 { float: left; margin: 0 2% 0 0; width: 18%; } .footer-widgets-2 { float: left; margin-right: 2%; width: 18%; } .footer-widgets-3 { float: left; margin-right: 2%; width: 18%; } .footer-widgets-4 { float: left; margin-right: 2%; width: 18%; } .footer-widgets-5 { float: right; width: 18%; }
then on line 2427 and below this:
.footer-widgets-1, .footer-widgets-2, .footer-widgets-3,
add this
.footer-widgets-4, .footer-widgets-5,
That should do the trick!
cheers
Pinky
Pinky
MemberSure can!
Add this to your style.css :
.size-medium.wp-image-65.alignright { margin-right: 35px; margin-top: 45px; }
I've added margin-top so it moves it down a touch and lines up with the bullet points rather than the headline, if you don't want that just remove the line margin-top: 45px;
If you want to move it around more - just play with the margin-right number
cheers
Pinky
Pinky
MemberIn your functions.php file (take a backup first), then add this code:
/** Add support for 3-column footer widgets */ add_theme_support('genesis-footer-widgets', 3 );
You'll then need to edit your style.css to make them line up properly.
If you give us a link to your site or tell us which theme you are using it will help.
cheers
Pinky
Pinky
Memberno worries Mate... glad I could help!
cheers
Pinky
Pinky
MemberAh soz about that.... try this then:
In the functions.php file remove this - obviously take a backup copy first!...
add_action( 'genesis_before_post', 'mindstream_remove_elements' ); /** * If post has post format, remove the title, post info, and post meta. * If post does not have post format, then it is a default post. Add * title, post info, and post meta back. * * @since 1.0 */ function mindstream_remove_elements() { // Remove if post has format if ( get_post_format() ) { remove_action( 'genesis_post_title', 'genesis_do_post_title' ); remove_action( 'genesis_before_post_content', 'genesis_post_info' ); remove_action( 'genesis_after_post_content', 'genesis_post_meta' ); } // Add back, as post has no format else { add_action( 'genesis_post_title', 'genesis_do_post_title' ); add_action( 'genesis_before_post_content', 'genesis_post_info' ); add_action( 'genesis_after_post_content', 'genesis_post_meta' ); } }
cheers
Pinky
-
AuthorPosts