Forum Replies Created

Viewing 30 posts - 62,191 through 62,220 (of 62,365 total)
  • Author
    Posts
  • 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

    Hey,

    You can actually change style.css look for Version then change it to 1.4 if it really bothers you. :)

    Regards,

    Ismael

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

    Hi,

    My suggestion is to change the background color then increase the z-index. Please add this on your custom.css or Quick CSS.

    .avia-post-nav {
    z-index: 9999 !important;
    background: rgba(174, 198, 44, 0.5) !important;
    }

    Regards,

    Ismael

    in reply to: Gallery: singular caption not appearing #118183

    Hi,

    Please try to add this on your custom.css

    .isotope-item .grid-content {
    height: 46px !important;
    }

    See if it fix the issue.

    Regards,

    Ismael

    in reply to: Can't upload theme to WordPress? #117954

    Hi,

    I visited this link http://www.arcconcepts.co.uk/ but I don’t see any multiple titles.

    Please watch some video tutorials here https://vimeo.com/channels/aviathemes.

    Regards,

    Ismael

    in reply to: Ability to create custom homepage #118202

    Hi,

    Just create a page then go to Enfold > Theme Options > Frontpage Settings, select the page you created.

    Regards,

    Ismael

    in reply to: Images look blurred !! #116652

    Hi,

    Yes, maybe that’ll work. Try it and update us on the result.

    Regards,

    Ismael

    in reply to: Contact form will not send message to default email #118168

    Hi,

    Please edit the Contact Form element then fill up “Your Email Address” Enter the Email address where mails should be delivered to. See if it works.

    Regards,

    Ismael

    in reply to: Header not resizing to menu #118061

    Hi,

    Checking your website again, I think you manage to decrease the header height. What did you do?

    You can use shortcodes to insert the slider. Something like this [layerslider id=”1″]. Go to LayerSlider WP, you can find what shortcode to use beside the slider name.

    Regards,

    Ismael

    in reply to: Small logo #118163

    Hi,

    You can’t create a new logo for the shrink header. Can you give us a link to your website? Maybe we can fix the issue with CSS modification.

    Regards,

    Ismael

    in reply to: Enfold Styles not working #117965

    Hi,

    Can you give us a link to your installation? It shouldn’t look that way.

    Regards,

    Ismael

    in reply to: Updating to 1.4 #117870

    Hi,

    No, you will not lose any configuration.

    Regards,

    Ismael

    Hi,

    Haven’t tried using any of these plugins but maybe you should try this http://wordpress.org/extend/plugins/revision-control/. It says “The plugin allows the user to set a site-global setting (Settings -> Revisions) for pages/posts to enable/disable/limit the number of revisions which are saved for the page/post. The user may change this setting on a per-page/post basis from the Revisions Meta box.”

    Regards,

    Ismael

    in reply to: social icons in footer socket #118075

    Hi,

    Open footer.php then find this code

    <?php

    echo "<div class='sub_menu_socket'>";
    $args = array('theme_location'=>'avia3', 'fallback_cb' => '', 'depth'=>1);
    wp_nav_menu($args);
    echo "</div>";

    ?>

    Replace it with this

    <?php $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => ''); avia_social_media_icons($social_args); ?>

    <?php

    echo "<div class='sub_menu_socket'>";
    $args = array('theme_location'=>'avia3', 'fallback_cb' => '', 'depth'=>1);
    wp_nav_menu($args);
    echo "</div>";

    ?>

    Edit custom.css then add this code

    #top #socket .social_bookmarks {
    position: absolute;
    right: 0;
    }

    Regards,

    Ismael

    in reply to: No Header in Portfolio and Post Category #117546

    Hi,

    Please send the login details on ///.

    Include this thread on your email.

    Regards,
    Ismael

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