Forum Replies Created

Viewing 30 posts - 62,191 through 62,220 (of 62,379 total)
  • Author
    Posts
  • in reply to: Text and code disappears from page editor #118224

    Hey,

    Glad you fixed it.

    Regards,

    Ismael

    in reply to: Text and code disappears from page editor #118222

    Hi,

    Do they disappear when you switch to a different language? You have to modify the website for each language.

    Regards,

    Ismael

    in reply to: Images look blurred !! #116656

    Hi,

    It uses this thumbnail size.

    $avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)

    Change that to

    $avia_config['imgSize']['gallery'] = array('width'=>666 , 'height'=>539 ); // images for portfolio entries (2,3 column)

    This will resize it same size with the slider container assuming you have the same layout as this link http://kriesi.at/themes/enfold/portfolio-item/slider-two-third/.

    Regenerate the thumbnails. Don’t use images smaller than the 666x539px.

    Regards,

    Ismael

    Hi,

    Yeah, I noticed it now. It becomes a bit blurry then adjust to the accurate size in a matter of point blank seconds. I’m running out of ideas. Let me tag the rest of the support team to help us out.

    Regards,

    Ismael

    Hi,

    Just add the #footer selector. :)

    Regards,

    Ismael

    in reply to: Problem Installing Theme – 'Template Missing' #118295

    Hi,

    What did you change on style.css? Please try to deactivate the theme on Appearance then activate it again.

    Regards,

    Ismael

    in reply to: background shows when clicking on a post. #118307

    Hi,

    I can’t reproduce the issue on my end. Can you give us a link to your website?

    Regards,

    Ismael

    in reply to: How to disable "You maight also like" #118318

    Hi,

    Edit single.php then find this code

    get_template_part( 'includes/related-posts');

    Replace that with

    //get_template_part( 'includes/related-posts');

    Regards,

    Ismael

    Hi,

    1.) You can use this

    #top .main_menu .menu li {
    float: right;
    }

    2.) To make the header fixed, you use this

    #header {
    position: fixed;
    }

    #main {
    padding-top: 155px;
    }

    3.) You increase the icon size with this

    .social_bookmarks .avia-font-entypo-fontello {
    font-size: 16px;
    }

    Regards,

    Ismael

    Hi,

    Please add this on your custom.css or Quick CSS.

    This is for the links.

    .main_color a {
    color: #8BBA34 !important;
    }

    This is for the bold text.

    .main_color b {
    color: #8BBA34 !important;
    }

    Regards,

    Ismael

    in reply to: User navigation for portfolio items (prev / next) #118186

    Hi,

    Please add the code on Theme Options > Styling > Quick CSS, located at the bottom.

    Yes, you can hide the arrows using this code. Again, put this on your custom.css, access via FTP, or on the Quick CSS.

    .avia-post-nav {
    display: none !important;
    }

    Regards,

    Ismael

    in reply to: Changing seperator in breadcrumbs #118226

    Hi,

    Open functions-enfold.php then find this code

    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/'));

    Change that with

    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '»'));

    Regards,

    Ismael

    in reply to: Advanced Layer Slider gone? #118251

    Hi,

    Check LayerSliderWP, see if it still have the sliders. If not, you can create your own.

    Regards,

    Ismael

    in reply to: Child Theme #118141

    Hi,

    No, you have to create one yourself.

    Thanks,

    Ismael

    in reply to: How to remove featured image inside single post? #117980

    Hi,

    Can you give us a link to your website? Did you add anything other than Devin’s code?

    Regards,

    Ismael

    in reply to: Accordion bug #118212

    Hi,

    Please download the latest version of Enfold which 1.4 on your themeforest account. Override the old files via FTP.

    Regards,

    Ismael

    in reply to: Facebook Like button #117635

    Hi,

    Your facebook like button looks ok. Is this fixed ?

    Regards,

    Ismael

    Hi,

    Devin is correct you can use the Color Section element then insert all the columns, media, etc inside it. Edit the color section, insert image as background then under Background Repeat, select stretch to fit. Use a fairly large image for this one, maybe, 1600x 1000px.

    Regards,

    Ismael

    in reply to: Single Portfolio #118340

    Hi,

    Go to Appearance > Menu > Page, click the “View All” tab. You can also start from scratch. Create the Portfolio page again and make sure you remember the page name.

    Regards,

    Ismael

    Hi,

    You can add this on your custom.css

    .widget .news-content .news-thumb, .news-time {
    display: none;
    }

    You can find the widget code on framework > php > class-framework-widgets.php.

    Regards,

    Ismael

    in reply to: Updating to 1.4 #117925

    Hey,

    Sure. No problem. :)

    Regards,

    Ismael

    in reply to: Easy slider title and text background color #118371

    Hey,

    Glad you fixed it. :D

    Regards,

    Ismael

    in reply to: Small logo #118167

    Hi,

    Please remove browser cache then reload the page. It works fine on my end.

    Regards,

    Ismael

    Hi,

    Edit js > avia.js then find this code

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/2)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/2;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Replace that with

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/1.5)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/1.5;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    It will reduced the header a bit more taller.

    Regards,

    Ismael

    in reply to: Homepage Image #118255

    Hi,

    Suggested image size is 1600x470px if you are talking about the LayerSlider background.

    You’re website is under maintenance mode.

    Regards,

    Ismael

    in reply to: Images and Text jumps when moused over #118382

    Hi,

    Might as well remove the circle because it is nested inside the box. You can add this on your custom.css

    .image-overlay.overlay-type-extern {
    display: none !important;
    }

    Regards,

    Ismael

    Hi,

    The selector use for the very top header is

    #header_meta {
    border-top: none;
    box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
    z-index: 400;
    min-height: 30px;
    background: white;
    }

    If you want to remove it you can use this

    #header_meta {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Got problems during installation #117998

    Hey,

    Glad it is fixed.

    Regards,

    Ismael

    in reply to: Small logo #118165

    Hi,

    Please edit js > avia.js then find this code

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/4)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/2;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Replace it with

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/1.5)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/1.5;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Regards,

    Ismael

    Hey,

    No problem. Please give us an update if it works.

    Regards,

    Ismael

Viewing 30 posts - 62,191 through 62,220 (of 62,379 total)