Forum Replies Created

Viewing 30 posts - 62,371 through 62,400 (of 62,633 total)
  • Author
    Posts
  • in reply to: nav menu questions #119166

    Hi,

    What type of header are you using?

    1.) You can remove the magnifying glass via css, please add this on your custom.css or Quick CSS

    #menu-item-search {
    display: none;
    }

    2.) You can apply the menu font styling on this selector

    .main_menu ul:first-child > li > a {
    display: block;
    text-decoration: none;
    padding: 0 13px;
    font-weight: normal;
    font-size: 12px;
    font-weight: 600;
    font-size: 20px;
    }

    3.) What do you mean by “remove the current page from the menu”?

    Regards,

    Ismael

    in reply to: Icon box woth secondary color #118889

    Hi,

    You can target a specific iconbox. You can do that by adding the avia-builder selector.

    #top .iconbox.avia-builder-el-5 {
    background: rgba(110, 128, 128, 0.49) !important;
    }

    Please try to inspect each of your iconboxes and look for the avia-builder selector. I think it is the only way you can specify a different color for each iconbox.

    Regards,

    Ismael

    in reply to: Enfold Google Maps Widget: Info Bubble not showing #118639

    Hi,

    1.) Oh, my bad. I also tested it and it is really not working. Let me tag the rest of the support team.

    2.) Replace the code with this. Please remove browser cache then reload the page.

    .image-overlay .image-overlay-inside::before {
    background-color: green !important;
    }

    Regards,

    Ismael

    in reply to: Custom sidebar – Displayed Everywhere widget #119158

    Hi,

    Yes, please clear the displayed everywhere widget area. The widget settings are somehow getting stuck. Try to temporarily switch to a different theme then remove everything on the widget area. Switch back to Enfold theme.

    Regards,

    Ismael

    in reply to: Remove "In Category, By User" #118951

    Hey,

    Glad we could help. :)

    Regards,

    Ismael

    Hi,

    Please download the latest version of Enfold on your ThemeForest account. :)

    Regards,

    Ismael

    in reply to: button color #119222

    Hi,

    It is working fine on my end. Save the button settings then update the page too. If it doesn’t work, you can apply the button color to your custom.css or Quick CSS

    body div .avia-button {
    background-color: red !important;
    }

    Regards,

    Ismael

    in reply to: Slider issue on homepage #118868

    Hi,

    Go to LayerSliderWP > Select a slider > Global Settings > Basic > Layers Container, specify the width in pixels. This will constrain the elements at the center on a specific width. You may need to adjust the element position after.

    Regards,

    Ismael

    Hi,

    Did you adjust the width and height according to the logo size?

    Regards,

    Ismael

    in reply to: Header – Menu Points are in front of the logo #118896

    Hi,

    Go to Theme Options > Header > Select “Header with Social Icons and bottom Navigation”.

    Or add this on your custom.css to move the menu below.

    #menu-main-menu {
    margin-top: 45px;
    }

    .main_menu .menu ul {
    top: 70%;
    }

    .avia-menu-fx {
    top: 70px;
    }

    Regards,

    Ismael

    in reply to: header background image + fixed header. #118294

    Hi,

    No, you can pick any pattern or background you want on the admin panel. The code above fixes the header when you scroll down the page. It will display a white header with no image background or pattern. I’m still not sure why it is not rendering the background image when scrolled but at least you don’t have a transparent header when you scroll down.

    Regards,

    Ismael

    in reply to: Easy Slider size #117661

    Hi,

    Yes, that is true. EasySlider doesn’t have the Stretch image option. Use the Fullwidth EasySlider.

    Regards,

    Ismael

    in reply to: MAMP server transfer to webhost #118817

    Hey,

    @melonmelon: That is a huge help. I didn’t know there is a plugin like that. Do the images and configurations get exported after it’s done? :)

    Regards,

    Ismael

    in reply to: easy way to disable breadcrumbs #118967

    Hey,

    Thanks for the tip. It sure is much easier. :)

    Regards,

    Ismael

    in reply to: Fix css layout #118952

    Hi,

    Add this on your custom.css

    #easy_search_formular input {
    width: 100px !important;
    display: inline;
    }

    #easy_search_formular select {
    width: 220px;
    display: inline;
    }

    Regards,

    Ismael

    in reply to: Remove "In Category, By User" #118949

    Hi,

    Add this on your custom.css or Quick CSS

    .blog-categories.minor-meta, .blog-author.minor-meta {
    display: none;
    }

    To remove the separator, open includes > loop-index.php and find this code

    echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    echo $cats;
    echo '</span><span class="text-sep">/</span>';

    Replace that with

    echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    echo $cats;

    Again, find this code

    echo "<span class='comment-container minor-meta'>";
    comments_popup_link( "0 ".__('Comments','avia_framework'),
    "1 ".__('Comment' ,'avia_framework'),
    "% ".__('Comments','avia_framework'),'comments-link',
    "".__('Comments Disabled','avia_framework'));
    echo "</span>";
    echo "<span class='text-sep'>/</span>";

    Replace it with this

    echo "<span class='comment-container minor-meta'>";
    comments_popup_link( "0 ".__('Comments','avia_framework'),
    "1 ".__('Comment' ,'avia_framework'),
    "% ".__('Comments','avia_framework'),'comments-link',
    "".__('Comments Disabled','avia_framework'));
    echo "</span>";

    Regards,

    Ismael

    Hi,

    1.) Can you give us a link to the page?

    2.) Instead of video, insert the Image element. Edit it then set the Image Link? to Set Manually, insert the video URL.

    Regards,

    Ismael

    Hi,

    To remove the featured image, just add this on your custom.css

    .big-preview.multi-big {
    display: none;
    }

    Open includes > loop-index.php then find this code

    if(has_tag() && is_single())
    {
    echo '<span class="blog-tags minor-meta">';
    echo the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
    echo '</span></span>';
    }

    Replace that with

    if(has_tag() && is_single())
    {
    echo '<span class="blog-tags minor-meta">';
    echo the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
    echo '</span></span>';
    }

    edit_post_link();

    It will create a neat Edit this link at the bottom.

    Regards,

    Ismael

    in reply to: Enfold – FOOTER Fonts sizes & Flickr plugin #118606

    Hi,

    I haven’t tried using Flickr plugin within the theme but there are lots of plugins available. To name a few

    http://wordpress.org/extend/plugins/awesome-flickr-gallery-plugin/

    http://wordpress.org/extend/plugins/slickr-flickr/

    http://wordpress.org/extend/plugins/flickr-api/

    You can change the widget title with this

    #footer .widgettitle {
    font-size: 21px;
    }

    And the content with these

    .widget {
    font-size: 14px;
    }

    .minitext {
    font-size: 14px;
    }

    Adjust the value.

    Regards,

    Ismael

    in reply to: Open Sans – Very Light Weight #119022
    in reply to: Installing Bebas Neue for Slab & Slider #119018

    Hi,

    What slider are you using?

    Regards,

    Ismael

    in reply to: how to install? #118783

    Hey,

    Good thing you managed to make it work. :)

    Regards,

    Ismael

    in reply to: Default sidebar? #119009

    Hi,

    Glad it is fixed.

    Regards,

    Ismael

    in reply to: Duplicate blog page #117504

    Hi,

    This seems to be working. Please add this on your custom.css

    .cases .entry-content.clearfix.standard-content {
    padding-left: 131px;
    }

    Regards,

    Ismael

    in reply to: Enfold Portfolio widget date #119006

    Hi,

    Add this on your custom.css

    .news-time {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Shop styling #118909

    Hi,

    Older version of Enfold doesn’t include the config-woocommerce folder. You need to have Enfold 1.4. :)

    Regards,

    Ismael

    in reply to: Enfold Editor disappeared #118997

    Hi,

    Click the Advance Layout Editor button. That is the blue button at the top of the Add Media. If you are experiencing any trouble, we suggest to download the theme again.

    Regards,

    Ismael

    in reply to: Portfolio design aspect #118986

    Hi,

    It is not missing. Please check again. Download the latest version on your themeforest account.

    Regards,

    Ismael

    in reply to: Can I use the Demo-Pictures? #118982

    Hi,

    After installing and activating the Enfold theme, just Import the Dummy Data.

    Regards,

    Ismael

    in reply to: header background image + fixed header. #118290

    Hi,

    Add this on your custom.css

    .header_color .header_bg {
    background: white url(https://localhost/kriesi/enfold/wp-content/themes/enfold/images/background-images/dashed-cross-dark.png) top center repeat fixed;
    }

    Change the image url. This will render a white header when you scroll down.

    Regards,

    Ismael

Viewing 30 posts - 62,371 through 62,400 (of 62,633 total)