Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #424393

    How do I do the following….

    1. Change the font family for the main menu sublevel links?
    2. Remove the vertical line separator between the main nav and the social icons in the header?
    3. Remove the vertical separator between the sidebar and main content?
    4. Get rid of the overlay on images that shows up and if you click it they show full size in a lightbox?
    5. Have the featured image in a blog post be after the title not before it? (see http://michaelhyatt.com/standing-while-you-sleep.html)

    Thanks!

    #424398

    How come no one is answering my posts and skipping over them?

    #424765

    Hey!

    We have a queue that goes from oldest post to the newest ones. As i checked, your first 3 questions are now answered.
    4- Please add following code to Quick CSS

    .image-overlay { display: none !important; }

    5- Please add following code to Functions.php file in Apperance > Editor

    
    function add_custom_featured(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('.page article').each(function(){
    jQuery(this).find('.entry-content-header').after(jQuery(this).find('.big-preview').detach());
    })
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_featured');

    Cheers!
    Yigit

    #424780

    Yigit,

    Thanks!

    #4 – That got rid of the overlay but I don’t the image to pop up in lightbox at all. I just want it to be a static image that if clicked goes into the blog post it belongs to.

    #5 – I’ve never edited that before. Is there a particular spot to put it? I’m nervous.

    #424819

    Hi!

    4- Please add following code to Quick CSS as well

    .big-preview.single-big { pointer-events: none !important; }

    5- You can add it right below following line

    	'bitcoin' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue92a'),
    
    ));

    Best regards,
    Yigit

    #424834

    4. Thanks all set but is there a way to make the image be a link into the respective blog post?

    5. That fixed it for when it’s in the blog roll but not for when you go into an individual blog post. Please be aware I’m using a child theme.

    #425454

    Hey!

    4- You can change the code to following to make it not clickable only on single post page

    .single .big-preview.single-big { pointer-events: none !important; }

    5- Can you please post the link to your website?

    Cheers!
    Yigit

    #425615

    4. That didn’t do what I wanted. I want it to be the way it is now except have the image be a hyperlink to the same place that the blog post header links to. Essentially, a second way to enter the post from the blog roll.

    5. http://www.strengthinnumberscoaching.com/test

    #426308

    Hi!

    4- Have you made any changes on theme files? It should work the way you want by default as you can see on demo site – http://kriesi.at/themes/enfold/blog/
    5- Have you removed the code? I cannot see the changes. If you have, please create a temporary admin login and post it here privately so we can add it again and apply the same changes on single post pages

    Regards,
    Yigit

    #426356

    4. I’m using a child theme but that’s it. The only tweaks I’ve made to that are what you said to do to Functions.php above. It doesn’t look like the demo. I want the image linking to work like the demo site but without the fade overlay/arrow animation thing.

    To see how I’d like it too look and operate see http://www.michaelhyatt.com

    On both blog roll and individual post page:
    – Header (that when clicked takes you into post)
    – Date/comment count/tags/author etc.
    – Featured image (that when clicked takes you into post)
    – Beginning of blog post body before excerpt link

    5. I’m not sure what you mean. Have I removed what code?

    #427954

    It’s been 3 days. Can I please have an update?

    #429014

    Hey!

    So your wanting the featured images that display in your blog page to link to the posts? That should be how it works by default, http://kriesi.at/themes/enfold/blog/blog-single-author-big/, have you done customizations?

    Let’s try the following.

    1. Deactivate all plugins.

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    Cheers!
    Elliott

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