Viewing 30 results - 100,561 through 100,590 (of 106,424 total)
  • Author
    Search Results
  • #184642

    Hey Monsoon!

    Can you please give us a link to the actual article with the featured image? You can add this on your custom.css or Quick CSS to remove the featured image link:

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

    You can edit functions.php to control the size of the featured image.

    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider

    Change the width and the height then use this plugin to regenerate the thumbnails. http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    We had some issues with with max-width on the base.css file. Specifically, we have a script that automatically generates thumbnails for youtube videos with a ‘play’ button graphic. It also removes the ugly black bars with the thumbnails generated by Youtube for non-16:9 videos and then links the video into a lightbox style popup window to play them. Upon completion of the video, it automatically closes the lightbox window, so no nasty advertisement popups appear in your face. It does this automatically with no interaction by the website visitor. Smooth, nice and unobtrusive. So there are Ajax callbacks happening to refresh the page content at various stages. The play button graphic has difficulty appearing centered in the thumbnail image using the enfold template upon loading. Something that doesn’t occur when we hand-code a lot of Youtube video links in our own web page. We’ve loaded 40-50 Youtube thumbnails on a hand-coded page with no errors, picture perfect thumbnails and the play graphic dead centered in the thumbnail. And that’s working on Localhost too! Sniffing around your CSS, it may be narrowed down to the img CSS inside Enfold, but I haven’t completely nailed it down. In IE, the thumbnails simply wouldn’t show up, until I comment out the following line in base.css Line 152 max-width: 100%;

    So how important is this line to Enfold’s performance?
    Do you have the CSS properties set at 100% for a reason? Is it important for responsiveness perhaps?
    Curious. Commenting out that line cured the IE problems, but we still have the issue with our transparent play graphic not centering in the middle of the thumbs.

    I realize this is a site specific problem and probably not a major issue with 99% of the folks that have your template, but I would like some input about why the settings are set at 100% so we can look at options on our end. It would also be useful to know if we have overlooked some CSS properties inside the various Enfold files that may have an impact on what I’m describing. I apologize but I don’t have a link online for you to look at. I may be able to put up a test page on a server to illustrate what I’m talking about. It would also show you a rather nifty script that is far superior to the lightbox clone you’re using. It’s very full-featured, has it’s own Ajax library with lots of nifty functions for advanced webmasters and the documentation and support is like no other script online. It’s been around for a very long time too. I figure you folks are vested in your current lightbox script, so I haven’t brought it up, but this one is light years ahead of the one you’re using. Not even close. I changed the entire look of the lightbox to black with one property setting. I saw a thread asking about putting the “title” attribute into the caption area of your Masonry script.
    With this script, it’s one simple attribute/option to set and you’re done. No javascript to code inside your functions. It snags the title attribute and loads it into the caption area automatically. It’s good-to-go out of the box.

    Anyway, I thought I would expand on your question about max-width. This is one of the circumstances where we had issues with max-width, so if it’s not necessary for the performance of Enfold, then you folks might want to consider changing it due to it’s historical problems with IE.

    Cheers,
    Don

    insentra
    Participant

    Currently when an image and a text element are on the same line the elements aligin to the top, what css can we add so that if the text takes up more vertical space than the image the image is vertically aligned to the text. Also vice versa when the text takes up vertically less space than the image the text is vertically aligned to the image.

    #184626

    Hello,

    Hard to reproduce indeed, have you tried to deactivate all third party plugins to see if it gets fixed?

    Regards,
    Josue

    #184625

    Ugggg. Sorry back again. How can I only have this effect the homepage. I tried the .page-id-XX, but it’s not working.

    #184624

    It’s the same link. Only sometimes when i open the page arrows dont all show up or only some of them show up. Its random so hard to reproduce…

    #184621

    – I will add my request for being able to use Masonry in a fixed width…not sure why the only option was fullwidth
    – It would be nice to have as an option the same header option as on this site ie social icons right of menus
    – Customization of Feature Image as in previous themes like Corona where the Featured Image could be linked, not linked, custom url’ed and text captioned
    – in theme option to have a fixed sidebar when scrolling down to avoid wasting a lot of white space on long posts/pages
    – Accordion slider from corona option. This is enormously helpfull for websites that run many events as a simple way to show what s coming

    #184620

    We looking forward to hearing from you :)

    Regards,

    Josue

    #184619

    Hi Josue,
    Late to the party and getting back with you. Thanks for posting the code. I will look at it soon, but I’m up to my neck in some other parts of the site. When fandragon, gets back with you, feel free to close the thread.

    Thx.

    #184618

    Nevermind, I got to work.

    #184616

    Guess I spoke too soon. It just gives it a normal header.
    Link

    #184611
    smue
    Participant

    How do I disable enfolds default light box?
    I wish to use Justified image grid for my galleries.
    Actually what I want is to use photoswipe for my lightbox.
    Thank you !

    #184606

    Hey!

    You can alternatively just change the container size for the single product page in the theme files. Go to config-woocommerce>config.php and the search 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 grid units the single page elements are wrapped in can be changed there so that they are output either larger or smaller. Just make sure the two values equal twelve in total.

    Eg:

    
    echo "<div class='four units single-product-main-image alpha'>";
    echo "<div class='eight units single-product-summary'>";
    

    could be changed to:

    
    echo "<div class='six units single-product-main-image alpha'>";
    echo "<div class='six units single-product-summary'>";
    

    Cheers!
    Devin

    I created the “Media Elements test” page and added in a gallery with images. I had no issues on my end adding in anything or issues with the modal windows showing.

    Seems to be fixed from what I can tell. If you are having issues still, I would suggest trying a different browser with no extensions/add ons or from another computer.

    #184594

    Great. Thanks.

    #184566

    In reply to: About featured images

    Hi ilkoallex!

    1.) You can control the featured image for blog post on functions.php, find this code:

    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider

    You can use this plugin to regenerate the thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/

    2.) Again, edit functions.php, make sure that you have this line of code:

    $avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs

    Regenerate the thumbnails.

    3.) Do you want to disable it on the single post view or the blog post overview? You can use this on your custom.css or Quick CSS:

    Blog Overview:

    .small-preview, .big-preview.single-big {
    display: none;
    }

    Single Post:

    .single .small-preview, .single .big-preview.single-big {
    display: none;
    }

    Cheers!
    Ismael

    #184561

    Hey covaun!

    You can use the Fullscreen Slider or the LayerSlider then add this on your custom.css or Quick CSS to move the content upwards.

    .fixed_header #main {
    padding-top: 0;
    }

    You can change the transparency of the header using this:

    .header_bg {
    opacity: .1;
    filter: alpha(opacity=10);
    }

    Regards,
    Ismael

    I have already done, I have flushed the cache but it does not work. I told you already ” I can see it perfectly in a iPhone but I see the logo broken in a Windows Phone Nokia 925.”
    I works in a iPhone, but not in a Nokia which have IE. Perhaps IE has something to do whit this,…
    I insist, in your version 2.4.2. something is not working properly.
    I dont get this problem with version 2.3.2. You have seen the images I enclosed.
    Regards, Adolfo

    #184551
    dholowack
    Participant

    Here is the link for reference: http://crowdriff.com/blog/

    I would like to Display the title, date, comments, categories, author ABOVE the featured image, so:

    1. Title
    2. Author, etc.
    3. Featured Image
    4. Post content

    #184546
    This reply has been marked as private.
    #184538
    MichaelT1
    Participant

    hi,
    i have 2 remaining issues:

    1. the gallery post format is loading 80px by 80px thumbnail sizes though it shud be 180px.

    For some reason i cannot change the thumbnail size for the post galleries but its works fine on the page gallery function (meaning when i add a gallery to a PAGE, not a post i have a selection of the thumbnail size- in the post format for a gallery i have no way to set the image size and its loading the smallest thumbnail sizes?

    post format (no options to set size of thumbs and when i change the number of columns it doesnt work)
    http://www.heliproducts.com/webtest/aenean-vulputate-eleifend-tellus-aenean-leo-ligula/

    page format for gallery (thumbnail size is correct also though changing the number of columns doesnt work but not a big deal)

    http://www.heliproducts.com/webtest/photos/
    2. I am trying to make the mobile nav appear in the media queries for when the window is less than 1086px wide but for some reason the mobile version of the menu doesnt load until around 768px – where do i have to change this so it resizes to the mobile menu for anything below 1086px?

    thanks again for your help,m

    • This topic was modified 12 years, 4 months ago by MichaelT1.
    #184498
    covaun
    Participant

    I’m trying to create a single image landing page with the menu and logo on top image the image. Like this: (link)

    Can the be done?

    Thanks

    #184495

    Hi Fabienml!

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

    #wood .content { padding-bottom: 0; }

    Cheers!
    Yigit

    #184456
    ullastret
    Participant

    Hello,

    I would like to prevent the featured image from appearing on the blog post. I would like it to be visible only on the thumbnail on the main page where I have a horizontal post slider.

    The problem is that when I click on the post thumnail to view the post, the featured image shows on the blog post as well. I have a video on that post. I would like the featured image to show as a thumbnail and the video on the post (not both)

    Is that possible? Can you assist me, please?

    Thank you

    • This topic was modified 12 years, 4 months ago by ullastret.
    #184453
    Monsoon
    Participant

    i know that to remove the mouseover you can add this to the custom.css
    article .image-overlay{
    display: none !important;}

    I want to use the feature image just as a header image for some posts. Problem is that a mouseover the featured image gives a link to the larger version even after removing the image overlay and act as if the featured image was an image attachment. I can t find where the controls for the featured image are. I was playing with enfold and it had options for the control of the Featured image like Link, no link and even a custom link field.

    I need the equivalent and I am surprised you removed this feature…or is it hidden somewhere?

    Also it seems the Featured image gets a different size based on the size of the original instead of blowing up or making smaller the original image to fit a fixed size. For example if you have a tall image the featured image will still look like an image attachment instead of a header image ( which I think is what the feature image means).

    Can you control the size of the featured images to force it to be a certain width and height no matter the size of the original?

    Thanks in advance

    #184422

    That worked perfectly, thank you

    #184389
    This reply has been marked as private.
    #184383

    Topic: About featured images

    in forum Enfold
    ilkoallex
    Participant

    So, I first noticed your theme about couple of weeks ago, and thought it was awesome, but I’m happy I found it more than half an year after I started my wordpress homepage, because now I can appreciate how good it is!

    So, I have a few questions about the featured images, before I switch totally my website to Enfold from my previous theme I had installed it to a test theme just to see how it works, and I was pretty happy! After I installed it finally on the main page, and tried to get it like the test one, some of the things just didn’t appear the same:

    1. The featured image above the blog post, here is the same post in the test theme, and in the original theme
    Test Page Post
    Original Page Post

    You can see that although the featured image is absolutely the same size, it appears in different way, is there any way to control that?
    And one more thing there, below the post, there are thumbs of 5 related posts, the same thing happens there, on the test page they are squares, on the original rectangles!

    2. And another thing concerning the same thing, on the main blog view is that on the thumb on the test page it really fills the square, and on the original page it is not like that:
    Test Page
    Original Page

    I just wanna find out what might influence that difference so I know how to deal with them later!

    3. Last thing for now to ask, is there a way to just disable the featured images from showing in the blog posts?

    Best regards, and once again, awesome theme!

    Ilko

    Hi,Devin,
    Can you also tell me how to adjust the size of picture to original after I change it ?
    No matter I added “.image_size_widget .news-thumb img { width: 36px; height: 36px; }
    .image_size_widget .news-thumb { height: 44px; width: 44px; }” to Quick CSS or change it in plugin, I can’t restore it.
    Sorry for such more question.

    Best Regards,
    Neil

    #184359
    z2h
    Participant

    Hi Guys,

    I’ve recently finished a website, and now i’ve transferred it to another host. And now the padding between my menu items is of and so is the red bar below it when you hover.

    http://i.imgur.com/LkhyIdx.png

    Please check the image above to see what I mean… Is there anyway to fix it like it was?

    Thx,

Viewing 30 results - 100,561 through 100,590 (of 106,424 total)