Forum Replies Created

Viewing 30 posts - 64,201 through 64,230 (of 64,319 total)
  • Author
    Posts
  • in reply to: page text editing tools disappear #117786

    Hi,

    Everything well now?

    Regards,

    Ismael

    in reply to: header option #117818

    Hi,

    Open header.php and find this code

    $phone = avia_get_option('phone');
    $phone_class = !empty($nav) ? "with_nav" : "";
    if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";

    Move that code at the bottom of this code

    $extraOpen = $extraClose = "";
    if(strpos($headerS,'bottom_nav_header') !== false){ $extraClose = "</div></div><div id='header_main_alternate' class='container_wrap'><div class='container'>"; }

    Edit custom.css or go to Quick CSS then add this code

    .social_header .phone-info {
    right: 140px;
    top: 40px;
    position: absolute;
    float: none;
    }

    Adjust the top and right position.

    Regards,

    Ismael

    in reply to: Page not showing on mobile devices #117777

    Hi,

    I checked the website but it is not showing anything not only in mobile view. Seems like reloading on an infinite loop. I have no idea what is causing this. Let me tag the rest of the support team. Can you still access the wp admin?

    Regards,

    Ismael

    in reply to: page text editing tools disappear #117782

    Hi,

    Try to create a fresh installation of WP then place the Enfold folder on wp-content/themes.

    Activate the theme on Appearance.

    Regards,

    Ismael

    in reply to: Phone Number or small info text – Change Color? #117260

    Hey,

    Glad it is working now. :)

    Regards,

    Ismael

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

    Hi,

    You can only specify a sidebar on the actual portfolio item. Edit the portfolio item, look for Layout > Layout, choose right or left sidebar > Sidebar Setting > Select the sidebar. You can create a custom sidebar on Appearance > Widgets.

    Regards,

    Ismael

    in reply to: Problem with Comment Form, urgent, all templates #117576

    Hi,

    Please remove browser cache then reload the page to see the effect.

    Regards,

    Ismael

    in reply to: How to make glitchy scrolling smoother #117712

    Hi,

    Can you be more specific about being glitchy? Can you point us to the areas where you see some issues?

    Regards,

    Ismael

    in reply to: Logo container height #117535

    Hi,

    Try this one on your custom.css

    .page #layerslider_1 {
    padding-top: 75px;
    }

    Regards,

    Ismael

    in reply to: Posting: Bild mit Lightbox öffnen #117772

    Hi,

    Let me tag Kriesi and Peter.

    Regards,

    Ismael

    in reply to: How to add hover to logo #117774

    Hi,

    I tested this using the enfold logo however this is only going to work on a non-fixed header. Please try to import the dummy data and test this one. Put this code on your custom.css

    .logo a:hover {
    display: block;
    width: 192px;
    height: 88px;
    background: url(../images/layout/logo2.png) no-repeat;
    padding: 0 !important;
    }

    .logo img:hover {
    padding: 0 !important;
    position: absolute;
    left: -9999px;
    }

    .logo img {
    padding: 0 !important;
    }

    Regards,

    Ismael

    in reply to: Align menu text closer to bottom #117397

    Hi,

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

    #top .main_menu .menu li a {
    padding-top: 20px;
    }

    Regards,

    Ismael

    in reply to: Changes to blog grid template #116567

    Hi,

    You got a lot of thread opened and I checked the link you provided, none of them show the enfold theme on the website. Just the default homepage for a blank website like Devin said. :D

    Regards,

    Ismael

    in reply to: Mega menus #116589

    Hi,

    @Devin: When you clicked on the link provided by @yardena, can you see the Enfold theme?

    Regards,

    Ismael

    in reply to: Blog option #117383

    Hi,

    2.) You can add a border radius on the container of that image. You can do something like this for example, just inspect the container of the image.

    .img_container {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    overflow: hidden;
    }

    Can you give us a link to your homepage so that we can inspect it?

    Regards,

    Ismael

    in reply to: Coming Soon and Maintenance Pages #116270

    Hey,

    Glad Devin fixed it.

    Regards,

    Ismael

    in reply to: Layer Slider Issues Header Text Alignment Off #117427

    Hi,

    Edit the layer , go to Styles > Layout and Positions. Try to specify a certain width on the text block.

    Regards,

    Ismael

    in reply to: Mobile layout issue #116645

    Hi,

    I already sent an email to Kriesi about the 1210px layout issue. Let me tag this to Kriesi and the rest of the support team.

    Regards,

    Ismael

    in reply to: Changes to blog grid template #116564

    Hi,

    I’m being directed to a blank page. No enfold theme whatsoever. :)

    Regards,

    Ismael

    in reply to: Icons before the title menu #116561

    Hey,

    Glad we could help. :)

    Regards,

    Ismael

    in reply to: Multi-Author Blog Images #116822

    Hi,

    You should set the featured image on your blog posts not on the Blog page itself.

    Regards,

    Ismael

    in reply to: Header Settings #116291

    Hi,

    Can you give us a link to your blog?

    Regards,

    Ismael

    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

Viewing 30 posts - 64,201 through 64,230 (of 64,319 total)