Forum Replies Created
-
AuthorPosts
-
mboetger
ParticipantThis is the code from the demo: <div class="three-fourths first">Here's a great place to write something specific that you want your visitors to read.</div>
<div class="one-fourth">Contact Us Today</div>mboetger
ParticipantSo when I do that it piles them on top of each other. How do I make them all separate?
mboetger
ParticipantI need the facebook icon moved up, how can I do it?
mboetger
ParticipantI made it 0px and it went away, not even sure where it went.
mboetger
ParticipantI would like the icon to the right of the horse on the right hand side.
mboetger
ParticipantI have got most of the header fixed now, but need help with getting the social follow button moved up.
mboetger
ParticipantI also need help with the header image needing to be 960 x 120
mboetger
ParticipantSo I have changed that now, how do I change the color of the Read more button?
mboetger
ParticipantThat worked great. What about in the front page 3 area, how do I make those graphics larger, it is padding as well?
mboetger
ParticipantThe link is good, I took it off maintenance mode.
mboetger
ParticipantThe client now has added another icon to the menu and one of the icons has bumped down to the next line, how do I increase the area to bump the icon in line with the rest?
mboetger
ParticipantI ended up changing the line height to 5 and it works.
site-title {
font-family: 'Lora', serif;
font-size: 42px;
font-weight: 700;
line-height: 5;
margin: 0 0 12px;
}mboetger
ParticipantI would really like help with this if anyone can help.
mboetger
ParticipantIs it possible to have the icons line up with the bottom of the Qualls Ag Lab logo?
mboetger
ParticipantOK. I added two icons to the header right widget area. Take a look and see what advice you can give me.
http://www.quallsag.com/mboetger
ParticipantI was able to change the header image, but now when I go to put something in the header right, it doesn't line up with the new header. How do I fix this problem?
mboetger
ParticipantWhat do I replace the wrap class with? Every area has the wrap class.
if ( is_active_sidebar( 'front-page-1' ) || is_active_sidebar( 'front-page-2' ) || is_active_sidebar( 'front-page-3-a' ) || is_active_sidebar( 'front-page-3-b' ) || is_active_sidebar( 'front-page-4' ) ) {//* Add front-page body class
add_filter( 'body_class', 'spi_body_class' );//* Force full width
add_filter( 'genesis_site_layout', '__genesis_return_full_width_content' );//* Add the scripts and styles
add_action( 'wp_enqueue_scripts', 'spi_home_scripts_and_styles' );//* Remove default loop
remove_action( 'genesis_loop', 'genesis_do_loop' );//* Add the widget areas
add_action( 'genesis_loop', 'spi_home_widget_loop' );//* Modify the read more link
add_filter( 'get_the_content_limit', 'spi_content_limit_read_more_markup', 10, 3 );}
}
//* Front page body class
function spi_body_class( $classes ) {$classes[] = 'front-page';
return $classes;
}
//* Front page scripts and styles
function spi_home_scripts_and_styles() {wp_enqueue_style( 'front-page-styles', get_stylesheet_directory_uri() . '/css/front-page.css', array(), CHILD_THEME_VERSION );
}
//* Function to output active widget areas
function spi_home_widget_loop() {echo '<h2 class="screen-reader-text">' . __( 'Main Content', 'smart-passive-income-pro' ) . '</h2>';
genesis_widget_area( 'front-page-1', array(
'before' => '<div class="flexible-widgets front-page-1 color' . spi_widget_area_class( 'front-page-1' ) . ' widget-area"><div class="wrap">',
'after' => '</div></div>',
) );genesis_widget_area( 'front-page-2', array(
'before' => '<div class="flexible-widgets front-page-2 image' . spi_widget_area_class( 'front-page-2' ) . ' widget-area"><div class="wrap">',
'after' => '</div></div>',
) );genesis_widget_area( 'front-page-3-a', array(
'before' => '<div class="flexible-widgets front-page-3 front-page-3-a color' . spi_widget_area_class( 'front-page-3-a' ) . ' widget-area"><div class="wrap">',
'after' => '</div></div>',
) );genesis_widget_area( 'front-page-3-b', array(
'before' => '<div class="flexible-widgets front-page-3 front-page-3-b color' . spi_widget_area_class( 'front-page-3-b' ) . ' widget-area"><div class="wrap">',
'after' => '</div></div>',
) );genesis_widget_area( 'front-page-4', array(
'before' => '<div class="flexible-widgets front-page-4' . spi_widget_area_class( 'front-page-4' ) . ' widget-area"><div class="wrap">',
'after' => '</div></div>',
) );}
//* Modify the read more link
function spi_content_limit_read_more_markup( $output, $content, $link ) {$output = sprintf( '<p>%s …</p>%s', $content, str_replace( '…', '', $link ) );
return $output;}
mboetger
ParticipantI have taken the site off of maintenance mode.
mboetger
ParticipantThat worked, thanks for the help!
mboetger
ParticipantI upgraded to Genesis 2.3.1 on my other site that I used the Executive Pro on and now get 404 error on everything that I click on the menu.
http://vrc007.com/ -
AuthorPosts