Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #748578

    Support,

    I would like the title vertical alignment (middle) act like the breadcrumbs on the right. Also, where do I remove Permanent Link: title when you hover over the title.

    Thank you,

    Brad

    Sorry URL Included: http://www.pagetech.com/redesign/pcltool-sdk/

    #750362

    Hey bridgeway04!

    Thank you for using Enfold.

    Looks like you managed to adjust the vertical position of the title with the following css modification.

    .title_container h1.main-title.entry-title {
        top: 0px;
    }

    If you want to remove the “Permanent Link:” text, please add this in the functions.php file:

    function ava_custom_script_mod(){
    ?>
    <script>
    (function($){
    	function a() {
    		$('h1.main-title.entry-title a').each(function() {
    			var oldtitle = $(this).attr('title'),
    				newTitle = oldtitle.replace('Permanent Link: ', '');
    
    				$(this).attr('title', newTitle);
    		});
    	}
    
        a();
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod');

    Cheers!
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.