Forum Replies Created

Viewing 30 posts - 63,361 through 63,390 (of 63,457 total)
  • Author
    Posts
  • Hi,

    Edit js > avia.js and 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();
    }

    Remove it.

    Or another way is to add this on your custom.css or Quick CSS

    #header_main .container, .main_menu ul:first-child > li a {
    height: 88px !important;
    line-height: 88px !important;
    }

    Height and line-height will depend on the size of your logo.

    Regards,

    Ismael

    in reply to: Tabs responsive issue #116615

    Hi,

    I’m not sure if this is going to work but please add this on your custom.css

    .noborder_tabs.sidebar_tab_left .tab {
    border-left: 1px solid #E1E1E1;
    }

    Regards,

    Ismael

    Hi,

    Do you have any plugins installed that might actually cause this facebook hover effect?

    Regards,

    Ismael

    in reply to: Layout feature request of bug? #116931

    Hi,

    You could actually fix that with a little css modification. You can use this for the meantime. Add this on your custom.css or Quick CSS

    .single .blog-meta {
    display: none;
    }

    .big-preview {
    display: block;
    padding: 0 50px 10px 0px;
    }

    Regards,

    Ismael

    in reply to: Footer & Widgets #117036

    Hey,

    Glad it is fixed. :)

    Regards,

    Ismael

    in reply to: Center Logo Vertically in Fixed Header #117046

    Hi,

    We would like to have an idea about how your logo looks like. Can you give us a link to your website?

    Regards,

    Ismael

    in reply to: Header background image #115666

    Hi,

    Nick’s solution does work. Select a background image on the Theme Options > Styling > Header tab then add this on your custom.css or Quick CSS.

    .header_color .header_bg {
    background-color:initial;
    }

    Regards,

    Ismael

    in reply to: Enfold Permalinks %postname%/ Errorpage 404 #116795

    Hey,

    I hope you’ll be able to fix it. Keep us posted. :)

    Regards,

    Ismael

    in reply to: Responsive slider partly responsive… #116970

    Hi,

    Go to LayerSlider WP > Select “Enfold – most beautiful theme ever” slider > Global Settings > Basic > Layers Container. It will constrain the elements to a specified width and keep it centered. Suggested width is 800. You may have to adjust the position of some layers.

    Regards,

    Ismael

    in reply to: Slider + Testimonials problem #117027

    Hey,

    Glad you fixed it.

    Thank you for the compliments. Kriesi worked hard to create this awesome theme. :)

    Regards,

    Ismael

    in reply to: Blog Single Author Full Width #117047

    Hello,

    Just edit the page then insert the Blog Posts element under Content Element tab. Edit the Blog Posts element, under Blog Style > select Multi author blog.

    Suggested blog posts featured image size to recreate the demo is 1030x360px.

    Regards,

    Ismael

    in reply to: Title style #117050

    Hey,

    @melonmelon: Thanks for the tip. :)

    Regards,

    Ismael

    in reply to: Installing Demo #117034

    Hi,

    Yep, you can Import the Dummy Data to get some idea how things get done. :)

    Regards,

    Ismael

    in reply to: Portfolio thumbs overlapping thumbnail titles above #116600

    Hi,

    Other users also reported this issue. I already sent an email to Kriesi and the support team.

    Regards,

    Ismael

    in reply to: Menu Align #116427

    Hi,

    You can add this on your custom.css or Quick CSS.

    div .logo {
    float: left;
    position: relative;
    left: 0;
    display: block;
    }

    .main_menu {
    clear: none;
    position: relative;
    left: 0;
    }

    Regards,

    Ismael

    in reply to: Blog layout problem #115824

    Hey,

    Glad it worked. :)

    Regards,

    Ismael

    in reply to: Add widget to error404.php page #116224

    Hi,

    Sorry my bad. Please do this instead. On functions.php place this code at the very bottom.

    function new_widgets_init() {

    register_sidebar( array(
    'name' => '404 Widget',
    'id' => '404_sidebar',
    'before_widget' => '<div>',
    'after_widget' => '</div>',
    'before_title' => '<h2 class="rounded">',
    'after_title' => '</h2>',
    ) );
    }
    add_action( 'widgets_init', 'new_widgets_init' );

    Now edit error404.php and find this code

    <h3 class=''><?php _e('Feel like browsing some posts instead?', 'avia_framework'); ?></h3>

    Below add this code

    <?php
    if ( dynamic_sidebar('404_sidebar') ) :
    else :
    ?>
    <?php endif; ?>

    Go to Appearance > Widget and add some widgets on 404 Widget Area.

    Regards,

    Ismael

    in reply to: Enfold Permalinks %postname%/ Errorpage 404 #116793

    Hi,

    I maybe wrong but you mentioned the used of WPML. How many languages do you have? Are you aware that you need to edit the site for each language including the Theme Options. Say you create a Homepage for the English language, you also need to create another Homepage for the Spanish language. To make it easier check your translation options.

    Regards,

    Ismael

    in reply to: Change color of icons #116866

    Hi,

    Sure, just add this on your custom.css or Quick CSS.

    .header_color .social_bookmarks a {
    color: orange;
    }

    Regards,

    Ismael

    in reply to: Icons before the title menu #116559

    Hi,

    My bad. I thought that is your site. You can do something like this. First, inspect the menu then look for the unique menu list id. In my example I use this on my Quick CSS or custom.css.

    #menu-item-1390 a {
    background: url(../images/layout/loading.gif) left no-repeat;
    padding-left: 20px;
    }

    #menu-item-1390 a is the unique id of my home menu.

    Regards,

    Ismael

    in reply to: Backwards Compatibility (from Replete to Enflold) #116867

    Hi,

    Unfortunately, a lot have changed since Enfold was released. It is a totally different theme compare to Replete theme. You might need to redo the website. Sorry for the inconvenience. Let me tag the rest of the support team.

    Regards,

    Ismael

    in reply to: Slider items not centered. #116851

    Hi,

    @jwferne: Thanks for the tip.

    @Nuv: I already told you the solution. Please go to LayerSliderWP > General Settings > Basic > Layers Container. Adjust the width of the slider container. It will constrain the slider elements to a specified width. You might need to adjust the position of the elements.

    Regards,

    Ismael

    Hi,

    Try this on your Quick CSS or custom.css

    .menu-item a {
    font-size: 20px!important;
    }

    Regards,

    Ismael

    in reply to: Visual Editor inserting random code #116858

    Hi,

    Text entries are always enclose on the paragraph tag <p> and when you create a line break it will insert the code <br> tag.

    Does it bother you?

    Regards,

    Ismael

    in reply to: LayerSlider will not load on homepage #116913

    Hi,

    Edit the ABOUT page. Go to Advanced Layout Editor then insert the Advanced LayerSlider. Then click Content Elements tab and insert the Blog Posts element. It is up to you to arrange the layout. It works on my end.

    Regards,

    Ismael

    in reply to: How to change the title "Blog" #116904

    Hi,

    You can create a new page then name it to something else other than Blog. Go to Enfold > Theme Options > And where do you want to display the Blog? > Choose the newly created page.

    Regards,

    Ismael

    in reply to: Lightbox close button is cut off #116086

    Hey,

    Glad it is fixed now. :)

    Regards,

    Ismael

    in reply to: Changing the 'Icon List' icon size animation #116778

    Hi,

    You can make it smaller with this code

    .avia-icon-list .iconlist_icon{height:64px; width:64px; line-height: 60px; font-size: 30px; text-align: center; border-radius: 500px; position: relative; float:left; margin-right:30px; margin-left:2px; z-index: 5; border-style:solid; border-width:2px; color:#fff;}

    Change the values of height, width, line-height and font-size properties. Something like this.

    .avia-icon-list .iconlist_icon{height:50px; width:50px; line-height: 50px; font-size: 20px; text-align: center; border-radius: 500px; position: relative; float:left; margin-right:30px; margin-left:2px; z-index: 5; border-style:solid; border-width:2px; color:#fff;}

    Regards,

    Ismael

    in reply to: Hover Overlay #116634

    Hi,

    1.) Edit css > base.css and find this code.

    .image-overlay .image-overlay-inside::before{content:"E744"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}

    You can change it to something like this.

    .image-overlay .image-overlay-inside::before{content:"E744"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"E723";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"E723";}

    Change the “content” property using Entypo. Refer to this link. http://www.entypo.com/characters/

    Regards,

    Ismael

    in reply to: Multi-Author Blog Images #116819

    Hi,

    Please try to setup a test installation and import the dummy data. It works fine on my end. Featured image full width on blog posts if the layout is set to No Sidebar.

    Can you give us a link to your website?

    Regards,

    Ismael

Viewing 30 posts - 63,361 through 63,390 (of 63,457 total)