WP Full Customization Help.

  1. I have two things while trying to make my site at jesseroland.info which is my temporary domain name for now.

    1.) is there anyway I can make the entire "call to action" box clickable and link to a particular important post (and maybe when hovered over is dimmed)
    2.) I would like to put my nav bar on the top over top of my header

    P.S. My # 3) It would be awesome to make the call to action a slider with the top 3 or 4 posts making each on clickable and having a forward and backward button with the function of the Boxpulse theme but styling of this one.

  2. Yes, there is a way to make the entire box clickable, but not without a lot of reworking. Instead, in functions.php you can edit the insert_hero function to include an anchor, like so:

    function insert_hero() {
    	global $hybrid_settings;
    	if ( $hybrid_settings['call_to_action'] ) {
    		echo '<div id="hero">';
    		echo '<div id="call-to-action"><a href="link-to-somewhere">' . do_shortcode( stripslashes( $hybrid_settings['call_to_action'] ) ) . '</a></div>';
    		echo '</div>';
    	}
    }

    That will make the text a link. At least its a start.

    This will move the navigation above the header:

    add_action ( 'hybrid_before_header', 'wpf_page_nav', 11 );
    
    function wpf_page_nav(){
    	remove_action( 'hybrid_after_header', 'hybrid_page_nav' );
    	add_action( 'hybrid_before_header', 'hybrid_page_nav' );
    }

    Adding a slider to the theme would be a significant amount of work. I do have a couple of other themes that come with sliders though, if you want to check them out http://developdaly.com/themes/

  3. Thanks so much for the help!!! One thing that happened when I made the call to action clickable... it changed the styling, how do I get the original styling back... I think by making it a link it took on link properties which changed the styling.


Reply

You must log in to post.

Topic Info

  • 3 posts
  • Started 1 month ago by jgroland
  • Latest reply from jgroland
  • This topic is not a support question

Tags

Tags:

No tags yet.