Viewing 30 results - 8,311 through 8,340 (of 10,095 total)
  • Author
    Search Results
  • #256588

    Hey!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .template-blog .blog-meta, .multi-big .post_author_timeline, .single-small .post_author_timeline { display: none; }

    It will remove the thumbnail and timeline from blog posts

    Regards,
    Yigit

    #256561

    Hi!

    1- Please go to Appearance > Menus and add your menu item as a new link with # for URL so it will not be clickable http://i.imgur.com/9I3QF9j.jpg

    2- Can you post a screenshot and show the issue you are having?

    Regards,
    Yigit

    #256554

    Hi Yigit,

    thank you for your response.

    1) When I enter the code you gave me, I can’t see the rest of my dropdown menu. To be more precise, I want to unlink a Parent page and some other pages in my Dropdown Menu so that they appear, but I don’t want them to be clickable.

    2) As I still work on my localhost, unfortunately I don’t have a link to my site. In few words, when I enter .avia_transform .avia-gallery-thumb img { height: 125px; } , my thumbs become 125px high but I can’t set their width which goes too wide.

    Thank you in advance!

    Cheers!

    #256544

    Hi David, not sure this applies to my question? It’s not the size of the image i’m looking to change. It’s how the image is scaled / cropped. If you check the examples i posted above you’ll see what I mean.

    Thanks

    Hey!

    It works now. The code changed a bit with the last theme update and I had to insert:

    
    add_filter('avf_avia_builder_masonry_lightbox_img_size', 'avia_change_gallery_thumbnail_link', 10, 1);
    function avia_change_gallery_thumbnail_link($size)
    {
        return "full";
    }
    

    into the functions.php file.

    Best regards,
    Peter

    #256516

    In reply to: Featured Images

    Hey!

    Thank you for the info.

    Please edit functions.php, find this code on line 110:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    

    Replace it with:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>400, 'crop'=>false);		                 // big images for blog and page entries
    

    Upload the image again or regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

    Hi!

    Install this plugin: http://wordpress.org/plugins/simple-image-sizes/ and change the thumbnail size of the “Masonry” thumbnails (go to the Settings > Media option page). Then regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Peter

    #256413
    jahson78
    Participant

    Hello – I could use your expert eyes and help,

    The Enfold Gallery I’ve created at http://easter.mtnchurch.tv/#photos is not loading properly on Internet Explorer (Version 11.0.9600.17041).

    The “Thumbnail fade in effect” does not load the pics smoothly with either option chosen. Also, the pics are not stacked neatly on top of and beside each other, but are stacked in an odd arrangement.

    I do not experience either issue using Chrome (Version 34.0.1847.116 m) – the Gallery functions as expected.

    WordPress v3.9
    Enfold v2.7

    Hello,
    This is the URL of the page:
    http://m3dent.com/

    #256099

    Thanks Yigit and Peter for you awesome support,
    You guys are great hope you have a fantastic weekend!

    Cheers!
    M

    #256091

    Hi!

    Please add following code to Quick CSS

    span.news-time {
    display: none!important;
    }
    #top .image_size_widget .news-thumb { margin-right: 30%; }
    .news-headline {
    overflow: visible;
    margin-left: 17%;
    font-size: 14px;
    }

    Cheers!
    Yigit

    Hey radoslavmitov!

    Thank you for using the theme!

    Do you mind if we take a look at the actual page with the issue? Do you have another lightbox plugin enabled ? Please post the page url here. We would like to check it.

    Best regards,
    Ismael

    #256086

    Thank you so mutch Peter!

    How can i get the news-headline center and maby a bit bigger under the picture and remove the date?

    Cheers!

    #255959

    Hi!

    I fixed it. I replaced the code in functions.php with:

    
    add_action('after_setup_theme','avia_change_image_sizes');
    function avia_change_image_sizes(){
    global $avia_config;
    $avia_config['imgSize']['widget'] = array('width'=>122,  'height'=>122); // small preview pics eg sidebar news
    }
    

    and changed the css code to:

    
    #top .image_size_widget .news-thumb {
    height: 130px;
    width: 130px; 
    }
    
    #top  .image_size_widget .news-thumb img {
    width: 122px;
    height: 122px;
    }
    

    Best regards,
    Peter

    radoslavmitov
    Participant

    Hello,
    I have the following problem.
    When I click on gallery or content slider thumbnail it opens tree fullscreen sliders. How to reduce them?
    This opens when I click on the content slider:

    This remains when I close the first one:

    Thank you

    • This topic was modified 11 years, 11 months ago by radoslavmitov.
    #255695

    Hey Derek!

    You can try this in your functions.php to change the thumbnail size:

            add_action('avia_backend_theme_activation', 'avia_set_thumb_size');
    	function avia_set_thumb_size()
    	{
    		update_option( 'thumbnail_size_h', 80 ); update_option( 'thumbnail_size_w', 120 );
    	}

    You’d need to regenerate the thumbnails after.

    Regards,
    Josue

    #255645

    Ismael, thank you but I just used a plugin to recreate/regenerate the thumbnails and that did the trick although I would prefer to make them all 120×80 since all my feautured images are landscape. Any idea how I can make all the related post images 120×80?

    Thanks

    Derek

    #255578

    Hey!

    Thank you for the update.

    The related post or You might also like section post items use the same image size. They should be aligned correctly. You can set a min and max height on the thumbnails if you want:

    div.related_entries_container .related_column {
    max-height: 101px;
    min-height: 101px;
    }

    Cheers!
    Ismael

    #255483

    Hi!


    @BrendaSarg
    : You’re using a very old version of the theme and if I am not mistaken, there are the same number of thumbnail size on Enfold version 2.4.5. Where do you see the 4 options for the images? Do you mind providing a screenshot? Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

    #255366

    Hello Josue,

    Don’t see how Devin’s response answers my question. I would simply like to know the Quick CSS to make the related post image sizes all the same size.

    #255322

    Hey Derek!

    Refer to Devin response:
    https://kriesi.at/support/topic/size-of-related-posts-images/#post-137382

    Regards,
    Josue

    #255301

    Hi brendymullan!

    There is a way to customize the size of the images so to give you an example, on the functions.php file roughly line 93 you will find this code,

    
    // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );	
    

    You can customize the width / height of your images here and in this case these is going to be the default for feature images.

    In this way you can avoid having to do this by hand.

    Cheers!
    David

    #255100
    derek62
    Participant

    Can i add some code to the Quick CSS to get all related post thumbnails to display the same size?

    As you can see at the bottom of this post they are all different.
    http://howdoidate.com/dating/men-usually-prefer-butterface-women-for-brief-sexual-liaisons/

    Thanks

    Derek

    #255028
    This reply has been marked as private.
    #255026

    Hi Yigit,
    I did everything as instructed but it didn’t work. :-( any idea?

    Cheers!
    M

    #254845
    Jason
    Participant

    Hi there,
    Prior to the latest theme update I was able to specify what the thumbnail of a post from a particular category (displayed on the homepage in a grid) linked to – now I cannot – it links to the post, which is not what I want it to do – I want it to (on 90% of occasions) link to a PDF file, or somewhere else on the site – like a page.
    I’m currently getting around this by setting up a redirect – but that’s only a short term solution, somehow I need to be able to control the link destination of the thumbnail.
    Here’s a screenshot to help explain.
    A = the thumbnail generated from the Featured Image, which links to the post.
    B = excerpt text – which allows me to link to a PDF file, or a page etc.
    What I want to do is have that same level of control over the thumbnail link.
    Any ideas how I might do that?
    If there’s any other way I can achieve this – please let me know. Displaying posts (from a particualr category), using the excerpt (only) to link to (whatever) as well as have the ability to display the featured image as the thumbnail – seemed the easiest/best solution.
    Any thoughts greatly apprciated :)

    • This topic was modified 11 years, 11 months ago by Jason.
    #254526

    Hi!

    Please add following code to Quick CSS in Enfold theme options under Styling tab
    1-

    #menu-item-2829 { pointer-events: none; }

    You can right click on Chrome or Firefox to inspect elements to find menu item ID http://i.imgur.com/HyPTCRg.jpg
    2-Can you post the link to your website so we can take a look?
    3-

    .widgettitle { text-align: center; }

    Cheers!
    Yigit

    #254384

    Hey!

    It looks like your website is currently down – http://www.downforeveryoneorjustme.com/http://hyrenhunk.sokonline.se/
    Please try adding following code to Quick CSS in Enfold theme options under Styling tab

    .news-thumb {
    height: 130px;
    width: 130px; }
    .news-thumb img, .news-thumb img {
    width: 122px;
    height: 122px;
    }

    Then go to Appearance > Editor and open functions.php file and find

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news

    and change width and height to 122px and regenerate thumbnails using – http://wordpress.org/plugins/regenerate-thumbnails/
    Regards,
    Yigit

    #254363

    Hi!

    Designing a responsive website is quite challenging and one of the hardest part of this is correcting the images. All of the properties, from the way they resize, to their dimensions and file size can give even the most experience developers a headache. It is true that not every users know how to use the image editor that’s why we added thumbnail sizes to take care of different orientations and layout sizes. You can find all sorts of thumbnail sizes on functions.php:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider
    
    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    	$avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );					// images for portfolio entries (2,3 column)
    	$avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            // big images for blog and page entries
    	$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );					// images for fullsize pages and fullsize slider
    }

    You can adjust the width and height attribute, you can even tell wp not to crop the images by setting the crop parameter to false. If you could tell us what image size you’re having trouble with, we might find a way to fix it. Note that the thumbnail image sizes for woocommerce can be found on config-woocommerce > config.php. Look for this code on line 13:

    //product thumbnails
    $avia_config['imgSize']['shop_thumbnail'] 	= array('width'=>120, 'height'=>120);
    $avia_config['imgSize']['shop_catalog'] 	= array('width'=>450, 'height'=>450);
    $avia_config['imgSize']['shop_single'] 		= array('width'=>450, 'height'=>999, 'crop' => false);

    You can change the dimension then easily regenerate 2000+ thumbnails or more using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    If you can explain to us your specific problem, we will be happy to assist you.

    Best regards,
    Ismael

Viewing 30 results - 8,311 through 8,340 (of 10,095 total)