Viewing 30 results - 104,401 through 104,430 (of 106,449 total)
  • Author
    Search Results
  • #26662

    Topic: Bullet Point Alignment

    in forum Enfold
    500Webmaster
    Participant

    Hi, when you use the bullet point/numbering formatting options in a text element and the text runs into the next line, is it possible to align it so that the text lines up with where it originally started after the bullet point and not right at the beginning of the line? Such as in the images in this example? http://photoshopcafe.com/cafe/showthread.php?39705-aligning-lines-of-text-when-using-bullets

    Thanks

    #129868

    Hi,

    Can you please recreate the Easy Slider from scratch? I can easily add 3 or more images on the Easy Slider on my end without it stopping or causing issues.

    Please increase the wordpress php memory limit:

    http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,

    Ismael

    #130797

    Hi,

    You can see all image thumbnail size on functions.php

    /*
    * Register additional image thumbnail sizes
    * Those thumbnails are generated on image upload!
    *
    * If the size of an array was changed after an image was uploaded you either need to re-upload the image
    * or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
    */

    $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']['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']['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
    }

    The one use for the portfolio featured image is this:

    $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

    Regards,

    Ismael

    #129822

    I have 1.7.1 and the problem persists. The author image is a grey circle, the image is only visible in the author page, not in the post.

    #131046

    Try following – open up wp-contentthemesenfoldjsshortcodes.js and replace

    gallery.on('mouseenter','.avia-gallery-thumb a', function()
    {
    var _self = this;

    big_prev.attr('data-onclick', _self.getAttribute("data-onclick"));
    big_prev.height(big_prev.height());
    big_prev.attr('href', _self.href)

    var newImg = _self.getAttribute("data-prev-img"),
    oldImg = big_prev.find('img').attr('src');

    if(newImg != oldImg)
    {
    var next_img = new Image();
    next_img.src = newImg;

    big_prev.stop().animate({opacity:0}, function()
    {
    big_prev.html(next_img);
    big_prev.animate({opacity:1});
    });
    }
    });

    with

    gallery.on('click','.avia-gallery-thumb a', function()
    {
    var _self = this;

    big_prev.attr('data-onclick', _self.getAttribute("data-onclick"));
    big_prev.height(big_prev.height());
    big_prev.attr('href', _self.href)

    var newImg = _self.getAttribute("data-prev-img"),
    oldImg = big_prev.find('img').attr('src');

    if(newImg != oldImg)
    {
    var next_img = new Image();
    next_img.src = newImg;

    big_prev.stop().animate({opacity:0}, function()
    {
    big_prev.html(next_img);
    big_prev.animate({opacity:1});
    });
    }
    return false;

    });

    #130880

    1) You can try to center the logo with

    .logo.bg-logo{
    left: 50%;
    margin-left: -100px;
    }

    and instead of -100px insert a custom negative value. You need to calculate it by dividing the image width by 2.

    3) We use the standard wordpress oembed api: http://codex.wordpress.org/Embeds and afaik it does not support any additional parameters for the url. You can try to insert the iframe directly though.

    4) Yes by default Enfold will always “stretch” the columns to fill out the entire width. The thumbnail size will only change the image inside the column and the thumbnail may look distorted if it’s too small. You can try following code css code:

    #top div .avia-gallery img {
    width: auto;
    }

    it will overwrite the default width:100% code and the thumbnail shouldn’t re-size if the column width is bigger than the thumbnail width.

    #26520
    jamfreefall
    Participant

    Hi,

    Thanks for the theme firstly.

    I am having a problem with my Portfolio grid not showing correctly. When the page loads you can briefly see the outline of where each box should be and then once the page is fully loaded it looks like they are all on top of each other meaning you can only see one at a time.

    The page I am talking about is http://www.dogtech.com.au/dogtech-trainers

    Things I have already tried –

    – I upgraded with the latest version of Enfold last week. It seemed to fix the problem until I added more portfolio items

    – deactivated all my plugins

    – tried all the settings for display size, both manual and automatic

    Thanks

    1) No, this is not possible. Just one slug is supported

    2) Insert following code into the quick css field

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

    3) Enfold displays a headline on all tag archive pages. By default it’s “Tag Archive for: XX”. If it doesn’t work on your website please post a link to the tag archive page. The taxonomy pages (portfolio categories) also display a headline – see: http://kriesi.at/themes/enfold/portfolio_entries/css/ (Category “CSS”)

    4) Please insert following code into the quick css field

    #top .avia-slideshow-arrows a {
    text-indent: -600%;
    }

    #130242

    Hey!

    If you’re using the streched layout try the “header background image option”. Go to Enfold > Styling > Header and search for “Custom Background Image”. There you can upload your custom image.

    Best regards,

    Peter

    #130438

    The only solution I can think of is to try a different thumbnail sizes (or maybe even define a new one with: http://wordpress.org/plugins/simple-image-sizes/ ) and to use small & cropped thumbnail images for portraits and landscape images. Then WP would crop the portrait images and the images would have the same dimensions like landscape images.

    thank you!

    #130971

    In reply to: Portfolio 6 columns

    In wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesportfolio.php search for

    switch($columns)
    {
    case "1": $grid = 'av_fullwidth'; if($preview_mode == 'auto') $image_size = 'large'; break;
    case "2": $grid = 'av_one_half'; break;
    case "3": $grid = 'av_one_third'; break;
    case "4": $grid = 'av_one_fourth'; if($preview_mode == 'auto') $image_size = 'portfolio_small'; break;
    case "5": $grid = 'av_one_fifth'; if($preview_mode == 'auto') $image_size = 'portfolio_small'; break;
    }

    and define a new case for “6” columns:

    switch($columns)
    {
    case "1": $grid = 'av_fullwidth'; if($preview_mode == 'auto') $image_size = 'large'; break;
    case "2": $grid = 'av_one_half'; break;
    case "3": $grid = 'av_one_third'; break;
    case "4": $grid = 'av_one_fourth'; if($preview_mode == 'auto') $image_size = 'portfolio_small'; break;
    case "5": $grid = 'av_one_fifth'; if($preview_mode == 'auto') $image_size = 'portfolio_small'; break;
    case "6": $grid = 'av_one_sixth'; if($preview_mode == 'auto') $image_size = 'portfolio_small'; break;
    }

    #26646
    Mkieling
    Participant

    Hello Guys,

    I added an easy slider to my index. There are 3 images that are supposed to be rotating, but they’re not. Only the first two show and then it stops. When it stops, I can’t click next or previous. It’s locks.

    All 3 images are the same exact size: 1200 x 430 px.

    Any ideas what’s causing it?

    Thanks!

    #130229

    In reply to: Adding images to table

    Hi Isamel,

    Thanks for your response.

    Where should I be adding this code? I want to add the images into a single column rather than an entire row.

    Thanks, Siobhan

    #130896

    Hi,

    Please add this css to /css/custom.css

    #top .ls-nav-prev, #top .ls-nav-next {
    display:none !important;
    visibility:none !important;
    }
    .ls-bottom-nav-wrapper {
    display: none;
    }

    Thanks,

    Nick

    `

    #126665

    Hi,

    I first added 50% to the layer container, the slider just disappeared. Than i tried giving 1600px(its the width of the background image of the slider), the slider disappeared again, so now i replaced it back to the default value 0.

    Thanks

    #131095

    In reply to: Enfold LayerSlider

    This is still a problem but I fixed it with a work around. I removed the links from the images and text and created a new layer with a blank div (using a span) to create a link in the correct location. I think the problem is that when you put a link on an image or a text field, the link is on the outside of the item and therefore has precedence (which ends up as default because the transition you set in the field is attached to the field not the outer link).

    #130796

    One more thought.

    Is the image that gets reduced for the portfolio images the one that is attached as the featured image for the portfolio item?

    php.ini file updated. All plugins deactivated. Problem persists.

    On a side note, the information is being called and presented. Its just not visible. I can highlight and copy the text and moving the mouse over the section leads to each URL in the slider. Just can’t see it.

    #26626
    progenki
    Participant

    Hey I have an issue where a new visitor does not see the image buttons appear on the first time they visit the page. It does not happen to the homepage but rather the navigation pages. They need to reload the page in order for the image to appear. Is this a known issue?

    #130795

    Awesome thanks. This helps a ton!

    One other question about the sizes (it might have the same answer).

    What about the sized for the AJAX slides how or gallery. I’m not too worried about the sizes on the actual portfolio page since there is plenty of room. But since the AJAX portfolio opens a window within the page to show a sideshow/gallery images that are too large seem to really distort the AJAX display. I don’t think the theme resizes those images, so is there a best practice for image sizes there?

    Thanks!

    -Chris

    #130936

    Well the site is live you can see it from this address http://bilgin-group.com/

    #130935

    Hi murattemel,

    We would need to see the site live to inspect the code and see whats going on.

    Regards,

    Devin

    #130413

    Glad we could help :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    #130945

    Hi Colin,

    First make sure that you are using the most up to date version of Enfold. That should be 1.8.1 or .1.8.2 if Kriesi has pushed that out when you read this.

    I just tested the read more tag on my personal site and didn’t have any issues with it so as long as its added in and showing the line with the little more image it should work without issue.

    Regards,

    Devin

    #26618
    chadlewine
    Participant

    how do I switch the portfolio thumbnail action from “hover” to “click”?

    (So it changes the big image on click, instead of on hover – while keeping the effect when you do hover on the thumbnail.)

    so close to perfect, thank you!!

    #130794

    Hi Chris,

    There isn’t really a “best size” since the theme will create re-sized thumbnail images for the various grids and columns. Starting with something like 900×600 will give you a large enough size that it will never get stretched to fit a too-large area as long as its in a column.

    The demo for the ajax portfolio uses images that start at 988×642. See: http://kriesi.at/themes/enfold/files/2013/04/dash-iphone2.jpg . Which generates http://kriesi.at/themes/enfold/files/2013/04/dash-iphone2-495×400.jpg for the three column view http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/ .

    So starting with a large enough image size to fit the smaller uses will give you the best result but how big to start with is up to you and what you have available.

    For additional reference on all the image sizes the theme creates you can view the functions.php file starting at line 63.

    Regards,

    Devin

    #130819

    Hi wcolwell,

    Upgrading doesn’t change your theme settings no.

    The issue with your slider is actually that the image paths are not correct. My guess is you have built the site on a temporary domain before going live and the slider image paths just need to be updated. IE, right now its trying to pull your images from something like http://www.paradisechild.com/~paradjg3/wp-content/uploads/2013/07/youslider4.jpg instead of http://www.paradisechild.com/wp-content/uploads/2013/07/youslider4.jpg.

    Just re-building those slides pointing to the correct images should do it.

    Regards,

    Devin

    #129158

    I hope that sorts you out Pete… it also fixes the issue with uploading media.. drove me nuts as the media would look like it was there – there was a thumb you could add to gallery.. but the gallery would not show those images and instead choose the first ones uploaded to the page, not even added… these things are sent to try us.. I am hoping for some help with my issues here:

    https://kriesi.at/support/topic/some-help-with-a-new-install-formatting ;-)

    #130848

    In reply to: SEO Issue

    Tbh I don’t think this is issue is theme related. I just found one occurrence of “http://happREMOVEyvalleREMOVEyfoundation.com/” in the source code which points to an image:

    <img class='avia_image avia-builder-el-4 el_after_av_hr avia-builder-el-last avia-align-left ' src='http://happREMOVEyvalleREMOVEyfoundation.com/wp-content/uploads/Ping-Fred-487x430.jpg' alt='' title='' />
    Maybe you changed the blog url in the past and some “hardcoded” urls in the database still point to “http://happREMOVEyvalleREMOVEyfoundation.com/&#8221; instead of “http://www.happREMOVEyvalleREMOVEyfoundation.com/&#8221;. You can use: WP MIGRATE DB to replace all occurrences of “http://happREMOVEyvalleREMOVEyfoundation.com/&#8221; with “http://www.happREMOVEyvalleREMOVEyfoundation.com/&#8221; and to export the database with the new paths. Then delete your old database and import the new database file which was generated by WP MIGRATE DB.

Viewing 30 results - 104,401 through 104,430 (of 106,449 total)