Forum Replies Created

Viewing 30 posts - 30,391 through 30,420 (of 34,859 total)
  • Author
    Posts
  • in reply to: Shop Banner Image #894326

    Hi,
    I believe that to use different shop banners for pages and categories you will need to use a plugin such as: Woocommerce Category Banner Management Please review the plugin video to see if this is what you had in mind.

    Best regards,
    Mike

    in reply to: Please Help with Side Menu #894266

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Can I turn off the rollover effect on my blog images? #894265

    Hey Dandelion222,

    Try this code in the General Styling > Quick CSS field:

    .avia_desktop .av-hover-overlay-active .av-masonry-image-container {
        opacity: 1!important; 
    }
    
    .avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
        -webkit-transform: none!important; 
        transform: none!important; 
    }

    Best regards,
    Mike

    in reply to: Issue with Blog Posts and advanced layout builder #894262

    Hey gb,
    Please check the manual excerpt box to ensure it is empty.

    Best regards,
    Mike

    in reply to: Mobile Menu shows page content #894258

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: CSS for Breadcrumbs #894257

    Hi,
    Oh, I had gone to the projects page.
    Unfortunately your breadcrumbs plugin doesn’t contain the class that their document says to use for your css “.breadcrumbs”
    this means that the links can be adjusted but not the arrows >
    You can see by adding this code in the General Styling > Quick CSS field:

    #main .container span  {float: right !important; }

    Please ask the developer how you can add the class as in their document.

    Best regards,
    Mike

    in reply to: How to underline link text in lists with CSS #894254

    Hi,
    I added the custom classes option to your child theme for the layout builder, by adding this code to your child theme functions.php file in Appearance > Editor:

    add_theme_support('avia_template_builder_custom_css');

    Then I went to the bottom of your text block element and added “costumes” as the css class.
    2018-01-06_161449
    Then I added this code in the General Styling > Quick CSS field:

    .costumes a {
        color: #155563 !important;
        text-decoration: underline !important;
    }
    .costumes a:hover {
        color: #155563 !important;
        text-decoration: none !important;
    }

    I wasn’t sure if you wanted to use the same colors, so you can change that if you like.

    Best regards,
    Mike

    in reply to: Sidebar with page background #894240

    Hi,
    You can Try this code in the General Styling > Quick CSS field
    or in the child theme style.css in Appearance > Editor

    Best regards,
    Mike

    in reply to: Mobile Menu shows page content #894238

    Hey harebranedesign,
    I believe it is showing the menu description, please go to your menu at click the “screen options” at the top, within the drop down check the “description” box. You will then see a description text area for each menu item. You can remove the text to not show it on your menu.
    2018-01-06_154726

    Best regards,
    Mike

    in reply to: Habitat theme #894236

    Hey Ondrej Suchomel,
    Sorry it is no longer available: https://themeforest.net/item/habitat-blog-and-portfolio-theme/125365?ref=Kriesi
    as it is 8 years old and has not been updated for WordPress 4.9.1
    We do offer these themes: https://kriesi.at/theme-overview
    And the Enfold theme comes with these demos: https://kriesi.at/themes/enfold-overview/

    Best regards,
    Mike

    in reply to: Linking a whole grid in a grid row element #894230

    Hi,
    We could fix that with:

    .avia-button-wrap.avia-button-center {
    max-height: 100px !important; 
    }

    But it will not have the link cover the whole grid because of your image and text elements push it down, I had thought the image was added to the background of your grid and not a element.
    Please try to make a image of each icon with the text below it, so the text is apart of the image, then add this image as the background of the grid and your button with be on top, covering the whole grid.
    Or make a image of each icon with the text below it, so the text is apart of the image, then add this image to the image element you have with the link. Then add this css to make the image link cover the whole grid, no need to use a button.

    #services .flex_cell_inner a.avia_image {
    height: 400px !important; 
    }
    

    Best regards,
    Mike

    in reply to: Sidebar with page background #894223

    Hi,
    Yes you can with this css:

    #main .container_wrap {
    background-image: url(https://your-site.com/your_image.jpg) !important; 
    }

    Best regards,
    Mike

    in reply to: Menu in der copyright zeile #894219

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Add a google font Abril fatface #894217

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Shop Banner Image #894215

    Hi,
    I found the issue was happening on mobile and tablets, and I couldn’t adjust it enough to solve.
    So I tried a new solution, I removed your shop banner and uploaded a cropped version for mobile, then added this css:

    @media only screen and (min-width: 1440px) { 
    div.av-section-color-overlay-wrap {
        background-image: url(https://site.de/wp-content/uploads/2017/12/shop-header-alleweine.jpg);
        background-repeat: no-repeat;
        background-size: contain !important;
        background-position: 50% 2%;
    }
    .avia-section-large .content {
        padding-top: 40px!important; 
        padding-bottom: 80px!important; 
    }
    }
    @media only screen and (min-width: 1024px) and (max-width: 1439px) { 
    div.av-section-color-overlay-wrap {
        background-image: url(https://site.de/wp-content/uploads/2017/12/shop-header-alleweine.jpg);
        background-repeat: no-repeat;
        background-size: contain !important;
        background-position: 50% 2%;
    }
    .avia-section-large .content {
        padding-top: 20px!important; 
        padding-bottom: 80px!important; 
        margin-top: -20px !important; 
    }
    }
    @media only screen and (min-width: 768px) and (max-width: 1023px) { 
    div.av-section-color-overlay-wrap {
        background-image: url(https://site.de/wp-content/uploads/2017/12/shop-header-alleweine.jpg);
        background-repeat: no-repeat;
        background-size: contain !important;
        background-position: 50% 30%;
    }
    .avia-section-large .content {
        padding-top: 20px!important; 
        padding-bottom: 80px!important; 
    }
    }
    @media only screen and (max-width: 767px) { 
    div.av-section-color-overlay-wrap {
        background-image: url(https://site.de/wp-content/uploads/2018/01/shop-header-655-300x65.jpg);
        background-repeat: no-repeat;
        background-size: contain !important;
        background-position: 50% 1%;
    }
    .avia-section-large .content {
        padding-top: 0px!important; 
        padding-bottom: 0px!important; 
    }
    }

    It seems to work for mobile, tablet, laptop & desktop
    please see screenshots in Private Content area.
    Please clear your browser cache and check, if you don’t like it we can go back.

    Best regards,
    Mike

    in reply to: Center align Product category above products #894189

    Hi,
    Try this code in the General Styling > Quick CSS field:

    #top .woocommerce-Tabs-panel--description span,#top .woocommerce-Tabs-panel--description strong {
    font-size: 30px!important;
    line-height: 1.6em!important;  }

    Adjust to suit.

    Best regards,
    Mike

    Hi,
    That is the tooltip for the button, which doesn’t have a click action. On a desktop it is the on-hover action, on mobile it shows on the button click but after the new window opens in the foreground. Essentially the tooltip does nothing.
    So I understand that on iPhone X, clicking the share button is not opening a new window to share, but double tapping will open the new window?
    Does the iPhone X typically block popups? Is there a popup blocker setting?
    Try this code in the General Styling > Quick CSS field:

    .av-share-box .avia-related-tooltip {
      display: none !important;
    }

    Best regards,
    Mike

    in reply to: Problems with Layer Slider Plugin #894181

    Hi,
    @DesignIt, Please open a new ticket with more detail about your issue so we can assist.

    Best regards,
    Mike

    in reply to: Add a google font Abril fatface #894180

    Hi,
    Glad we were able to help, shall we close this then?

    Best regards,
    Mike

    in reply to: Mobile menu not working on one specific page #894178

    Hi,
    I have tested the page with and without the plugin and see the issue, but the page gives no errors in the console so it’s hard to tell why there is a conflict.
    I am afraid you’ll need to contact the plugin author for more info about the issue. Making third-party plugins compatible with the theme is unfortunately beyond the support scope we offer. Sorry for that!

    Best regards,
    Mike

    in reply to: Sidebar with page background #894175

    Hey denisj77,
    I’m not sure I understand, do you mean have a image background span the whole page and behind the sidebar, or have a background color? Can you include a screenshot of what you would like to see?

    Best regards,
    Mike

    in reply to: Change all links to be shown as a button #894172

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: CSS for Breadcrumbs #894171

    Hey hfhf,
    Is the plugin currently active? Because your site and the demo look the same right now.
    2018-01-06_115311
    2018-01-06_115333

    Best regards,
    Mike

    in reply to: Enfold 2017 Demo will not upload #894169

    Hi,
    I have viewed you site and it seems that it is already built, so I hesitate investigating the 2017 Demo import issue as I wouldn’t want to overwrite your current site and lose any settings or design.
    Are you planing to start over?
    I would also recommend disabling your plugins and clearing your cache plugin before importing the demo.

    Best regards,
    Mike

    Hey goldengate415,
    I have tried to recreate this issue on a Windows desktop & Android mobile at Social Share Button Element but they both behave the same. Does this element behave the same for you? What devices are you using?

    Best regards,
    Mike

    in reply to: why this page does not work ? #894153

    Hey bcorraini,
    I tried to login but I get the error: Cela a été désactivé
    The page did load so I’m not sure which error you referring to because your screenshot is not linking correctly.
    I do see in the console you have Mixed Content not served over HTTPS on the page and that you have icon shortcode in the page title:

    <title>[av_font_icon icon='ue80b' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='' custom_class='' admin_preview_bg=''][/av_font_icon]Espace Patients – Cardiauvergne</title>

    Please check the login and include a screenshot of your error.

    Best regards,
    Mike

    in reply to: Page Featured Image using custom layout element #894134

    Hi,
    I haven’t tried this myself, but I found some resources on the subject that may help point out where your error is.
    Adding a custom element to the Enfold Avia Builder
    Add a new avia layout builder element
    Add Custom Element in Enfold Avia Layout Builder
    Add new or replace Advanced Layout Builder elements from Child Theme
    Here is a active member of the forum that has built a impressive set of elements, Kahil:
    Custom Enfold Layout Elements

    Best regards,
    Mike

    in reply to: Menu in der copyright zeile #894126

    Hi,
    I found that your function had “//” in front of the first part of it, making it not work. I removed it and your widget is now working. Please check.

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Open your footer.php and go to line 70, which will look like this:

    <!-- ####### END FOOTER CONTAINER ####### -->
    				</div>

    Then add your shortcode, I suggest also adding a div so you can style it better. Your footer should now look like this:

    <!-- ####### END FOOTER CONTAINER ####### -->
    				</div>
    				<div class="instacode"> instagram feed shortcode </div>

    2018-01-05_225750
    You can then add some css to your stylesheet to center it, add background-color, etc.

    Best regards,
    Mike

Viewing 30 posts - 30,391 through 30,420 (of 34,859 total)