Forum Replies Created
-
AuthorPosts
-
charriott4Membercharriott4Membercharriott4Member
Kevin, did you try setting the background position to center?
Web Designs By Chrissy | Twitter @designbychrissy
February 19, 2013 at 7:22 pm in reply to: [Agency] – change font color in Middle Widget Areas on Home Page only #21539charriott4Membercharriott4MemberHi Kimberly,
I recently did a slider in the header of one of my clients site http://pottersvineyard.com/
I believe it was mostly the z index'es and positioning i modified to get it right.
Christine
Web Designs By Chrissy | Twitter @designbychrissy
charriott4Membercharriott4MemberFebruary 18, 2013 at 11:44 pm in reply to: [Agency] – change font color in Middle Widget Areas on Home Page only #21208charriott4MemberHi Susan,
Use this selector:
#home p {
color: #FFF;
}
Web Designs By Chrissy | Twitter @designbychrissy
charriott4Member“Footer #1 - make sure you add the ending " in the code on the first line for all 3
Web Designs By Chrissy | Twitter @designbychrissy
charriott4Memberlooks like the code is wrong. you added “Footer #1? “Footer #2? “Footer #3? <---- remove the ? and add the ending "
Web Designs By Chrissy | Twitter @designbychrissy
charriott4MemberAdd a custom menu to the header right area and in the menu settings, dont set a primary or secondary menu option
Web Designs By Chrissy | Twitter @designbychrissy
charriott4MemberTry adding this and set the posts per page to the number you want.
//Force 20 posts per page
remove_action('genesis_loop', 'genesis_do_loop');
add_action('genesis_loop', 'child_do_loop');
function child_do_loop() {
$paged = get_query_var('paged') ? get_query_var('paged') : 1;
do_action( 'genesis_post_title' );
genesis_custom_loop(array(
'posts_per_page' => '20',
'paged' => $paged,
));
}
Web Designs By Chrissy | Twitter @designbychrissy
charriott4MemberLOL, so true! I just bought premise myself this morning!
Web Designs By Chrissy | Twitter @designbychrissy
charriott4MemberIn the home.php code its pulling 10 posts, change it there but BE CAREFUL. Make a copy of the home.php file FIRST in case you make a mistake, believe me 🙂
Web Designs By Chrissy | Twitter @designbychrissy
charriott4Membercharriott4MemberHeres the code for that:
.menu-primary li a, .menu-secondary li a, #header .menu li a {
color: #000000;
display: block;
font-size: 14px;
padding: 6px 15px 4px;
position: relative;
text-decoration: none;}
ADD THIS
font-weight: bold;
Web Designs By Chrissy | Twitter @designbychrissy
charriott4MemberCheck out this tutorial by Nick
http://designsbynickthegeek.com/tutorials/creating-page-templates-in-genesis
Web Designs By Chrissy | Twitter @designbychrissy
charriott4MemberHi Adam,
To change the background of the menubar find this code in your themes stylesheet.
.menu-primary, .menu-secondary, #header .menu {
background: #FFF;
margin: 0;
overflow: hidden;
padding: 0;
width: 100%;}
add a background property and set the color code to what you want.
For the background color: REMOVE background property in body tag
body {
background: url("images/bg.png") repeat-x scroll 0 0 #F1F1F1;
}
Web Designs By Chrissy | Twitter @designbychrissy
charriott4MemberHi Suzannah,
Good job on the site. I noticed a few image sizing issues in the sidebar, but other than that, it looks good. What is your issue with the secondary nav bar?
Web Designs By Chrissy | Twitter @designbychrissy
charriott4MemberI dont think there is a way to add the tabs to the content area of a page without some major customization. The simplest way would be to add a page template. Its really not as difficult as you would think.
Web Designs By Chrissy | Twitter @designbychrissy
-
AuthorPosts