Viewing 30 results - 97,501 through 97,530 (of 106,492 total)
  • Author
    Search Results
  • Hey!

    Have you tried uploading it directly to the layer slider? You can create a layer then click on the Image layer field to upload an image.

    Regards,
    Ismael

    #216702

    Hi saundra!

    1.) Are you talking about the image placeholder? You can edit config-templatebuilder > avia-shortcodes > postslider.php, find this code on line 305:

    $thumbnail = "<span class=' fallback-post-type-icon' ".av_icon_string($format)."></span><span class='slider-fallback-image'>{{thumbnail}}</span>";

    2.) Edit js > avia.js, find this code on line 54:

     //activates the prettyphoto lightbox
            $(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});

    Replace it with:

     //activates the prettyphoto lightbox
            //$(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});

    3.) This is possible but it won’t look as good as the original layout. Edit postslider.php again, find this code on line 366:

    $output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";

    Cut it then place it below this code on line 388:

    $markup = avia_markup_helper(array('context' => 'entry_content','echo'=>false));

    Cheers!
    Ismael

    #216692
    taliwalt
    Participant

    1. What’s the easiest way to hide related products on a single product page?

    2. I’d like the images on single-product pages to be a bit smaller. The product images currently have a class of .four.units.single-product-main-image.alpha. I was playing around with the developer tools, and I changed the class to .three.units, which looks a lot better for my site. How can I make that permanent? found the answer here: https://kriesi.at/support/topic/product-image-size-6/

    3. This question is an offshoot of question 1; my related products don’t seem to have anything to do with the product being viewed. Do you know how WooCommerce determines which products are related?

    • This topic was modified 12 years, 2 months ago by taliwalt. Reason: Located the answer to one of my questions

    Hi!

    This is the correct and intended effect. What the image size selection does is let you choose what image size gets loaded in to that container. It will always be 2/3 the width of the content area because its in a 2/3 column.

    If you want to change the size the image is viewed on the page then you would need to change its container size.

    Best regards,
    Devin

    #216678

    Hey!

    Yes, there is something interfering, a style declared by the theme, but you can disable it if you want, open css/base.css and look for the images section, around line 147:

    	img, a img {
    		border:none;
    		padding: 0;
    		margin:0;
    		display:inline-block;
    		max-width: 100%;
    		height:auto;
    		width:auto;
    		image-rendering: optimizeQuality;
    	}

    Change it to:

    	img, a img {
    		border:none;
    		padding: 0;
    		margin:0;
    		display:inline-block;
    		max-width: 100%;
    		image-rendering: optimizeQuality;
    	}

    Regards,
    Josue

    #216671
    siws
    Participant

    Hello,

    I have problem with my ajax portfolio. My page is http://tinyurl.com/lzxgk7q. So I have 3 columns ajax portfolio when i click on first thumbnial we see opening portfolio big image with thumbnial above . Image size in gallery is 650×805 but looks not good poor quality, When you click on it in lightbox that image looks very good (size is extactly the same)

    And second problem after upgrade wordpress when you resize window to 320px lightbox looks not good

    Best Regards
    Michal

    #216657

    Hi Josue,

    Thank you for getting back to me so quickly.

    1. The CSS distorted the image dimensions. I’m not sure why because I check the dimensions in Photoshop and they are proportionally correct. I even changed it to another proportionally correct dimension 200×80 and the same problem occurs.

    2. Why would I have to add Quick CSS? Every time I am going to make an image change I need to add Quick CSS? Is there a way to get it to work the way it is designed to work in the layout builder? Is something interfering with it working correctly without CSS?

    Thanks, Jas

    • This reply was modified 12 years, 2 months ago by Jasmer.
    #216655

    Hey!

    Try adding this code to the Quick CSS:

    .wp-image-2791 {
        width: 144px;
        height: 58px;
    }

    Cheers! 
    Josue

    #216648
    This reply has been marked as private.
    #216646
    Munford
    Participant

    HI again
    trying something out on this page:
    http://thisistouch.com/background-test/
    but I want the text blocks to be at the top of the image
    instead of the middle – what am I setting wrong?
    thanks

    #216637

    Hey!

    The two image links aren’t working but from your description its because the resolutions are different. So the display of the content is different between the two devices.

    Cheers!
    Devin

    #216636
    saundra
    Participant

    Hello there! I have painstakingly gone through to add a featured image to all of my blog posts (back to 2006). However I can’t get them all done. I have several questions if you can help in Enfold theme (which is awesome-tastic by the way)

    NOTE: I use a child theme and would love to make these changes in Quick CSS if possible:

    1. Can i replace the current default image (white with an arrow) with my own image when NO feature photo has been selected? I want the site to look cleaner and branded.
    2. Can I turn off the lightbox or click on image to increase it’s size? This is only for FEATURE image ( I have disabled other photos from reading posts here).
    3. How can I have the featured photo underneath the header? So it would be
    Header Title
    Date / category / author
    Featured Image

    Thank you in advance! http://planningforever.com/blog

    This reply has been marked as private.
    #216633

    In reply to: Product image size

    You can change the grid wrappers for the image and summary in config-woocommerce>config.php. Look for:

    #
    # wrap single product image in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2);
    add_action( 'woocommerce_before_single_product_summary',  'avia_close_image_div', 20);
    function avia_add_image_div()
    {
    	echo "<div class='four units single-product-main-image alpha'>";
    }
    
    function avia_close_image_div()
    {
    	global $avia_config;
    	$avia_config['currently_viewing'] = "shop_single";
    	get_sidebar();
    	echo "</div>";
    }
    
    #
    # wrap single product summary in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25);
    add_action( 'woocommerce_after_single_product_summary',  'avia_close_div', 3);
    function avia_add_summary_div()
    {
    	echo "<div class='eight units single-product-summary'>";
    }

    The div class wrapper is what gives the content its width within the layout in units that equal a total of twelve. So you can change the image from being four units and instead make it six but you would then also have to change the summary unit class name from eight to six as well so the total still equals twelve.

    #216627

    Oh I’d be interested in this, only if you can update in the child theme.

    Hi!

    just wanted to take another look but your links turn 404 error. Can you post the link to a page where we can see an example?

    Best regards,
    Yigit

    #216615
    5fold
    Participant

    Hi,

    How can i have the background image on the color section move to left only when it’s on a tablet device portrait. Basically just need to see more of the background image in the color section.

    http://azbestpests.wpengine.com/termite-control (hosted on WPengine)

    Thanks!

    #216604
    prayaga
    Participant

    Fantastically flexible theme! I encountered one issue though. I see that full screen mode for Royal Slider was able to be fixed by rectifying a z-index issue:

    .html_boxed #main, .unit, .units,  .content {
        z-index: auto !important;
    }

    This works on a normal page, but not from within tabs. The same issue of the image getting trapped within the tab also happens with other plugins (leaflet, etc.) that use native full screen mode. Could just put the galleries on separate pages, but this is a peculiar issue that might need debugging.

    Also, from within tabs, the width is initially wrong, but when resizing the window, it fits. Wondering if this hinges on when the function is called.

    #216580

    Hi,

    Can you post the link to the actual Page please?

    Regards,
    Josue

    #216566

    Your child theme style.css has a missing bracket so all the css after it is not actually being executed. You can, in the future, inspect your color section with dev tools in the browser and if the css isn’t showing as effecting the element then the css file has an issue.

    In your case, look for this block:

    /*fix header dissapearing on ipad */
    @media only screen and (max-width: 1024px) {
    /* Add your Mobile Styles here */
    h1 {
    font-size: 24px;
    padding-right:30px;
    }
    

    It needs to have a closing bracket on the media query.

    #216557

    Hey!

    Try adding this code to the Quick CSS:

    .portfolio-preview-image {
        width: 39% !important;
    }
    .portfolio-preview-content {
        width: 61% !important;
    }

    Cheers! 
    Josue

    #216551

    It isn’t something that has ever come up and while it seems handy I can’t see a real need for it since it would be better in almost all cases to set it up manually. Even if the user is an extremely active partner they would be putting up a few videos a day and the screenshots/featured image would be the only thing that would need to be created. Then its just adding a new post to WordPress with that featured image and a link to the video.

    You can add the idea for support of a specific plugin to the feature request topic however.

    #216550
    Fiorilla
    Participant

    Hello,

    I am having a problem with a 3 column portfolio – all the images are exactly the same size when the portfolio is set to 4 columns, but when I choose a 3 column portfolio, some of the image have a different height and are not cropped – how do I change this? Or what are the exact measurements that my pictures should have so that I can crop them manually?

    Thanks for your help,

    Daria

    #216547

    Ahh…thanks!!

    Also, is there a way to make the ajax popup not scale up my featured image from the 400 pixel width it’s at now?

    http://covert-ross.com/investment-banking/#toggle-id-1

    #216537

    Thank you!

    #216524

    Hi,

    Just tested in main browsers:

    Screenshot: http://www.ri-web.com/images/icons.jpg

    Chrome: Not working
    Safari: Not working
    IE: Working
    Firefox: Working
    Opera: Working

    I’m running Windows 8.

    Any idea why it’s not working in certain browsers?

    Ryan

    #216512

    In reply to: Logosize stretch

    Hi!

    I have just tried on my installation and it resizes 550x156px logo to 374x116px. You can refer to this topic to change the initial header size to make it 156px in height https://kriesi.at/support/topic/change-logo-image-for-scrolled-header/#post-188003
    Simply insert 156 instead of 200

    Cheers!
    Yigit

    #216497

    Hi Snerp!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    .grid-entry .inner-entry {
    margin-right: 20px; }

    Best regards,
    Yigit

    Hi!

    No, it’s not possible at the moment, the only way to do this custom sliders would be to use LayerSlider, if you need some insight, please refer to this video:

    Cheers!
    Josue

    #216485

    In reply to: Image Quality

    Hi, that didn’t seem to help any other ideas?

Viewing 30 results - 97,501 through 97,530 (of 106,492 total)