Viewing 30 results - 100,771 through 100,800 (of 106,423 total)
  • Author
    Search Results
  • #182690
    georgeorbelian
    Participant

    Hello,
    I have just started with the mega menu for the first time. I have watched the video, thanks for that! I can not get the image to display at the right size. It is 200×107 — I used this
    I’m wondering if there is any css I need to change to get the image to resize correctly — Any help would be great!

    Best regards — George

    Here is the url

    http://georgeorbelian.org/motorcycles/#aboutmotorcycles

    And it is the motorcycles mega menu

    #182686
    This reply has been marked as private.
    #182683

    Hi,

    You forgot a link to your website.

    Regards,
    Josue

    #182680
    This reply has been marked as private.
    #182672

    You are welcome :)

    Cheers!
    Josue

    I thought I would mention one other thing. Please do not use any of the images in that screen capture. They are not stock photos. I’m making a tribute gallery for my deceased dog and the photos are mine. I doubt anybody would use them, but I thought I would mention it because you never know what will show up in Avatars online. Thanks for respecting this.

    #182665

    That worked. Thanks!

    #182664

    Glad we could help, in the future remember to backup avia.js before updating :)

    Regards,
    
Josue

    #182663

    Hi,

    Try with this one instead:

    .single-post .post-entry .big-preview{ display: none !important; }

    Regards,
    Josue

    #182659

    Hi Josue,

    That code didn’t work. When I pasted that in, it removed the featured image from my blog roll. What I am trying to do is set a featured image that won’t show up on the actual blog post, but rather just in the blog roll. I am using a different image as a header image for the blog post so haven’t two images at the top of the blog post is not right.

    Any help on this?

    #182657

    Great, thank you so much! : )

    #182647

    Hey!

    It is done: http://greaterclarity.staging.wpengine.com/ (hosted on WPengine)

    I modified js/avia.js, replaced this (431-490):

    	   elements.each(function(e)
           {
                var link      = $(this), current = link.find('img:first');
    
                if(current.hasClass('alignleft')) link.addClass('alignleft').css({float:'left', margin:0, padding:0});
                if(current.hasClass('alignright')) link.addClass('alignright').css({float:'right', margin:0, padding:0});
                if(current.hasClass('aligncenter')) link.addClass('aligncenter').css({float:'none','text-align':'center', margin:0, padding:0});
    
                if(current.hasClass('alignnone'))
                {
                   link.addClass('alignnone').css({margin:0, padding:0});;
                   if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'inline-block'}); }
                }
            });
    
    		elements.on('mouseenter', function(e)
    		{
    			var link  		= $(this),
    				current	 	= link.find('img:first'),
    				url		 	= link.attr('href'),
    				span_class	= "overlay-type-video",
    				opa			= link.data('opacity') || 0.3;
    
    			overlay = link.find('.image-overlay');
    
    			if(!overlay.length)
    			{
    				if(current.outerHeight() > 100)
    				{
    				if(link.height() == 0) { link.addClass(current.get(0).className); current.get(0).className = ""; }
    				if(!link.css('position') || link.css('position') == 'static') { link.css({position:'relative', overflow:'hidden'}); }
    				if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'block'}); }
    
    				if(url)
    				{
    					if( url.match(/(jpg|gif|jpeg|png|tif)/) ) span_class = "overlay-type-image";
    					if(!url.match(/(jpg|gif|jpeg|png|\.tif|\.mov|\.swf|vimeo\.com|youtube\.com)/) ) span_class = "overlay-type-extern";
    				}
    
    				overlay = $("<span class='image-overlay "+span_class+"' style='opacity: 0;'><span class='image-overlay-inside'></span></span>").appendTo(link);
    				}
    			}
    
    			if(current.outerHeight() > 100)
    			{
    				overlay.css({left:current.position().left + parseInt(current.css("margin-left"),10), top:current.position().top + parseInt(current.css("margin-top"),10)})
    					   .css({display:'block','height':current.outerHeight(),'width':current.outerWidth()}).stop().animate({opacity:opa}, 400);
    			}
    			else
    			{
    				overlay.css({display:"none"});
    			}
    
    		}).on('mouseleave', elements, function(){
    
    			if(overlay.length)
    			{
    				overlay.stop().animate({opacity:0}, 400);
    			}
    		});

    With this (431-479):

    elements.each(function(e)
           {
                var link        = $(this),
                    current     = link.find('img:first'),
                    url         = link.attr('href'),
                    span_class  = "overlay-type-video",
                    opa         = link.data('opacity') || 0.3;
    
                if(current.hasClass('alignleft')) link.addClass('alignleft').css({float:'left', margin:0, padding:0});
                if(current.hasClass('alignright')) link.addClass('alignright').css({float:'right', margin:0, padding:0});
                if(current.hasClass('aligncenter')) link.addClass('aligncenter').css({float:'none','text-align':'center', margin:0, padding:0});
    
                if(current.hasClass('alignnone'))
                {
                   link.addClass('alignnone').css({margin:0, padding:0});;
                   if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'inline-block'}); }
                }
    
                overlay = link.find('.image-overlay');
    
                if(!overlay.length)
                {
                    if(current.outerHeight() > 100)
                    {
                    if(link.height() == 0) { link.addClass(current.get(0).className); current.get(0).className = ""; }
                    if(!link.css('position') || link.css('position') == 'static') { link.css({position:'relative', overflow:'hidden'}); }
                    if(!link.css('display') || link.css('display') == 'inline') { link.css({display:'block'}); }
    
                    if(url)
                    {
                        if( url.match(/(jpg|gif|jpeg|png|tif)/) ) span_class = "overlay-type-image";
                        if(!url.match(/(jpg|gif|jpeg|png|\.tif|\.mov|\.swf|vimeo\.com|youtube\.com)/) ) span_class = "overlay-type-extern";
                    }
    
                    overlay = $("<span class='image-overlay "+span_class+"' style='opacity: 0;'><span class='image-overlay-inside'></span></span>").appendTo(link);
                    }
                }
    
                if(current.outerHeight() > 100)
                {
                    overlay.css({left:current.position().left + parseInt(current.css("margin-left"),10), top:current.position().top + parseInt(current.css("margin-top"),10)})
                           .css({display:'block','height':current.outerHeight(),'width':current.outerWidth()}).stop().animate({opacity:opa}, 400);
                }
                else
                {
                    overlay.css({display:"none"});
                }
    
            });

    Final file: http://greaterclarity.staging.wpengine.com/wp-content/themes/enfold/js/avia.js?ver=1

    Cheers!
    Josue

    #182635
    chooseone
    Participant

    Hi
    V 2.4
    1.I created a gallery masonry page with some test images – looks fine..
    2.Then i found :) the portfilio masonry (dropdown) and created a portfolio masonry with the same
    images (sizes) like the gallery masonry. BUT the portfolio Masonry look terrible when i scale down the
    browser!!!
    The images gets a big white space around them and have 50 or mor pixels between….
    see image http://www.pizzeriainnsbruck.at/wp-content/uploads/XXXXX/1.jpg
    a much smaller window:
    http://www.pizzeriainnsbruck.at/wp-content/uploads/XXXXX/3.jpg

    3. Another Problem – on the right size of the masonry there is a space?????
    see http://www.pizzeriainnsbruck.at/wp-content/uploads/XXXXX/2.jpg

    4. When i use a gallery masonry and Portfolio Masonry on the same page – The second Masonry near the footer overlaps the fixed menu-bar and looks very bad when you scroll down….

    5. How can i change the order of the portfolio item in the masonry?

    I use Firefox the latest version and Chrome – the same!

    I USED two images sizes 282×400 and 282×200

    I use 1030px width BOXED layout – Fixed Header with social icons and additonal Nav

    i use ” Flexible Masonry: All entries get the same width but Images of each entry are displayed with their original height and width ratio”
    and NO GAP

    I can not provide access to the site – is not online… With this working speed it will finished at christmas :D

    Please help me out… and let me know if this is a bug…

    • This topic was modified 12 years, 5 months ago by chooseone.
    This reply has been marked as private.

    Hey!

    Can you post the link to your website as well? :)

    Regards,
    Yigit

    Hi Yigit!

    Thank you very much for the link on number 2 – perfect!

    Re Q 1: these are the images as they are on my site: http://imgur.com/M983YgR

    What I want to do is people to click on the ’email’ or telephone icon and it will take them to a different page. It’s important to me that there is no text next to the icon – so just a clickable button I guess. I tried making them into links but I think it only links the text next to the icons as they are not clickable.

    Thanks Yigit :0)

    #182615

    Topic: Product zoom

    in forum Enfold
    artspbseo
    Participant

    Hello!
    There is trouble with showing enlarged product image – I’m using cloud-zoom plugin for woocommerce – and it’s not working properly – I cant place the enlarged area of product above description. Please, help.
    Example – http://kino-casting.ru/product/lot-j000141-giatsint

    Hi lifeb00th!

    1) I am not sure if i understood you clearly. Can you post a screenshot?
    2) Please see this post https://kriesi.at/support/topic/footer-edit/#post-182430

    Regards,
    Yigit

    lifeb00th
    Participant

    Hi, I’m a complete novice to wordpress, but thanks to this great theme, I’m almost there with my new site :0)

    I’m stuck on two things though and was hoping someone could help please?

    1) The cool icons – I want to turn the actual icon images into links and not have text links next to them – is this possible please?

    2) Embarrassing question as I’m guessing it’s so easy – but how do I edit the contents of the footer please? I’ve looked everywhere and can’t seem to find a way of doing it?

    Any help gratefully appreciated!

    Many thanks!

    Mark

    #182601

    Hi!

    I tagged Josue in the topic. He can post his solution here :)

    Regards,
    Yigit

    #182598

    +1

    I am working on this exact same thing here.
    I do not have a website for you to login to because I’m developing on Localhost here.
    If you have code snippets you could paste here I will be able to figure it out. It’s irrelevant if the element ID’s and CSS properties relate to another site’s code – whether it involves PHP, Javascript, CSS, or a combination of these, I will probably be able to figure it out.

    Thanks.

    #182595
    This reply has been marked as private.
    #182594

    In reply to: iPhone Fuzzy Blog Text

    Hey Jonathan!

    Please refer to this post https://kriesi.at/support/topic/retina-images-and-fonts-in-portfolio-grid-theme-enfold/#post-164007
    and let us know if issue remains

    Regards,
    Yigit

    #182580

    Hi,

    Do you get any errors? can you create an administrator account and post it here as a private reply?

    Regards,
    Josue

    #182571
    awsystems
    Participant

    I’ve found a couple of posts here on how to disable the lightbox feature for images in the Enfold theme – I’ve commented out the two lines in the avia.js file (lines 53 & 54) and actually commented out the entire Lightbox activation function (at line 450). I cleared the site’s cache as well as the local cache and the lightbox is still showing. Is there another update that I need to make i order to turn this off?

    Thanks!

    #182568
    wss310
    Participant

    Hi – Is it possible to default all post titles and author info above the featured image for a post instead of below?

    #182539

    Hey!

    I found a way, can you create an administrator account and post it here as a private reply?

    Best regards,
    Josue

    #182536

    In reply to: post as a link

    Hi Mary!

    If you are using WordPress 3.6 (Post > Format: Link), you can, see image below:

    Regards,
    Josue

    #182522

    ? Is there something i can do to the php to modify the image overlay to always be there?

    #182521

    Topic: post as a link

    in forum Enfold
    marytalpas
    Participant

    I am trying to use post as a link to list news articles that link to a website. I want a blog type list with an image and title and when you click on the title it goes to the article. Can you advise?

    Mary

Viewing 30 results - 100,771 through 100,800 (of 106,423 total)