Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #304671

    I have 2 random problems….

    1) When you hoover over a picture for too long, the given title of the picture pops up. It’s happening on the sliders on the homepage and other picture throughout the website. How can I prevent this??

    2) Is there a way to make the logo bigger in the sticky header form?

    Thanks!
    Beth

    #304710

    Hey bethiebfit!

    Thank you for using the theme.

    1.) You can really can’t disable because it is a default browser feature. However, you can remove the image. Add this on functions.php:

    function remove_img_title() { ?>
    <script type="text/javascript">
    jQuery(window).load(function(){
    	jQuery('img').parent('a[title]').removeAttr('title');
    	jQuery('img').removeAttr('title');
    });
    </script>
    <?php }
    
    add_action('wp_head', 'remove_img_title');
    

    2.) Add this on Quick CSS or custom.css:

    .header-scrolled #header_main .container, .header-scrolled  .main_menu ul:first-child > li a {
    height: 100px !important;
    line-height: 100px !important;
    }
    
    .header-scrolled .logo, .header-scrolled .logo a, .header-scrolled .logo img {
    max-height: 100px !important;
    }

    Adjust the height if you want.

    Cheers!
    Ismael

    #304736

    OK, I added the CSS and was able to adjust to my liking. Thanks! But not sure where the functions.php is…..?

    #304827

    Hi!

    Please go to Appearance > Editor to find Functions.php file. You can also go to Enfold folder via FTP to find it

    Best regards,
    Yigit

    #304944
    This reply has been marked as private.
    #304951

    Hey!

    Please connect via FTP and go to wp-content/themes/enfold and undo the changes you have made on Functions.php. Then try adding this code – http://pastebin.com/PqmPmSPk
    If you do not want to make the changes, after undo-ing it via FTP, let us know so we can do it for you

    Regards,
    Yigit

    #305048

    OK, thanks. My site is back up and running. :)

    • This reply was modified 10 years, 3 months ago by bethiebfit.
    #305131

    Hi there!
    So I thought we had figured it out. The website was back and up and working, so I launched it and posted it to facebook. But now everyone is saying they are getting a syntax error when they try to go to the site through facebook. They can see it on their mobile devices and if they just google it, but not through the link on facebook. Any thoughts?

    #305249

    Hi!

    Thank you for the update.

    Not sure why that’s happening. Anyway, I visited your facebook page but I don’t see any link for the website. All I see is the http://www.fuelsocofitness.com/ link which leads me to a blank page.

    Regards,
    Ismael

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