Forum Replies Created

Viewing 30 posts - 28,951 through 28,980 (of 34,552 total)
  • Author
    Posts
  • in reply to: Menu height problem on mobile #913237

    Hey gmgurgen,
    On Android the menu is full screen, Please see screenshot in Private Content area.
    Are you using iPhone? Can you please add a screenshot of what you see?

    Best regards,
    Mike

    in reply to: Tag cloud Instagram #913227

    Hi,
    For the text excerpt under the image, you have this custom css setting the size:

    .entry-content p {
    font-size: 14px;
    }

    But the text in the text block under the words “UNSER BLOG” the theme is using “font-size: 16px;”
    If you want all the text the same try changing to custom css to this:

    p {
    font-size: 14px!important; 
    }

    Best regards,
    Mike

    in reply to: Color section with slanted border issues #913223

    Hi,
    The custom functions I was talking about were in his functions.php file in Appearance > Editor
    If you didn’t add any to your functions.php then Try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.
    Also check that your webhost is using PHP v7.

    Best regards,
    Mike

    Hi,
    Thanks for sharing @tesspaine, this is a good tip.

    Best regards,
    Mike

    in reply to: Woocommerce price suffix #913221

    Hi,
    Please try adding this for the grouped products

    #top .product-type-grouped .woocommerce-Price-amount.amount:nth-child(2):before {
    content: "";
    }

    Best regards,
    Mike

    in reply to: Placing a div over the full width slider #913218

    Hi,
    Oh I see now, you can use negative margin to move a element up and on top of your slider.
    Try adding your element to your page right under your slider, and give it a custom ID “myid” (or any other). Then add following code to Quick CSS in Enfold theme options under Styling tab

    #myid {
    background-color: transparent!important;
    margin-top: -55px;
    z-index: 55;
    border: none!important;
    }

    Please adjust the negative margin to suit.

    Best regards,
    Mike

    in reply to: Placing a div over the full width slider #913121

    Hi,
    In your slider when editing, click the “Add New” then you will get a drop down, then choose HTML
    2018-02-15_223210

    Best regards,
    Mike

    in reply to: Menu behaviour issue #913098

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

    Best regards,
    Mike

    in reply to: Mobile view – Enfold #913093

    Hey rmavila,
    Sorry I’m not seeing that issue on Android, are you using iPhone?

    Best regards,
    Mike

    in reply to: Enfold Shortcode Parser will not switch off #913090

    Hey zimbo,
    If you are seeing the Enfold Shortcode Parser, then your Avia Layout Builder Debugger is enabled correct? Please try disabling it.

    Best regards,
    Mike

    in reply to: Manin Menu, submenu transparency? #913085

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

    .av_header_transparency .av-main-nav > li > ul * {
        background: transparent!important;
        border: none;
    }
    .av_header_transparency .av-main-nav > li > ul {
        background:transparent!important;
        border: none;
        border-bottom:transparent;
    }

    Best regards,
    Mike

    in reply to: Add top padding to Special Heading #913081

    Hi,
    Glad Yigit was able to help, unless there is anything else we can assist with shall we close this then?

    Best regards,
    Mike

    Hi,
    Sorry I don’t see the extra blank line, Please see screenshot in Private Content area.
    To add a screenshot please try using https://postimages.org/ and pasting the image URL in your post.

    Best regards,
    Mike

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

    #footer .container {
    max-width: 1350px !important; 
    padding: 0px !important; 
    }
    #footer {
    padding: 0px !important; 
    }

    Please adjust the max-width to suit.

    Best regards,
    Mike

    in reply to: Blurry Woocommerce thumbnails #913073

    Hey isaaccolavecchio,
    Please tell us the name of your draft page or link to it directly. Your link above points to the login screen.

    Best regards,
    Mike

    in reply to: Menu behaviour issue #913072

    Hey ofekw,
    This is correct, When using a mobile platform, there is no mouse hover functionality. The correct action is to expand the menu item. To have the parent menu item open in mobile please go to Enfold Theme Options > Main Menu > Burger/Mobile Menu > Clone title menu items to submenu.

    Best regards,
    Mike

    in reply to: Title Not Appearing on Page #913069

    Hi,
    The page title will not show if your page Header visibility and transparency is set to transparency. But this solution may work:
    https://kriesi.at/support/topic/breadcrumb-w-shortcode-only-appears-if-header-no-transparency/#post-469042

    Best regards,
    Mike

    in reply to: givewp styling button #913068

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

    #top.page-id-884 .avia-builder-el-3 {
        display: flex;
        justify-content: center;
    }

    This code is meant to only work on the one page, please let us know if you want it to work other pages.

    Best regards,
    Mike

    in reply to: Mobile Parent Items Not Clickable #913066

    Hey projectt_co_uk,
    I don’t think that you can have the parent item open on click and expand on click, this would give two events to one action. For the other option, Since there is no hover in mobile you would need to use a long press for the expand option, but this would require some considerable scripting to make it reliable across all browsers.

    Best regards,
    Mike

    in reply to: Customize Category pages #913063

    Hey iveyeng,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'single-small';
    return $layout;
    }

    Best regards,
    Mike

    in reply to: Social icons with a custom background image on hover #913060

    Hi,
    Please include the url to the page in question and a link to the image to be used as the background.

    Best regards,
    Mike

    in reply to: Enfold Photo Gallery Thumbnail Issues #913058

    Hi,
    Your image link is opening the image itself not a lightbox, please ensure the option at Enfold Theme Options > Theme Options > Lightbox Modal Window is checked.
    Your images also appear to have a opacity of 0.1, please check your options and change to 1
    If you still have issues please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Placing a div over the full width slider #913055

    Hey HostageMedia,
    Try adding a new layer using the html layer choice which should allow a div container.

    Best regards,
    Mike

    in reply to: Private Post not visible in Post Category #913049

    Hi,
    Perhaps using a function like like this will assist: Display Private Posts to Logged in Users

    Best regards,
    Mike

    in reply to: Which multi language plugin? #913048

    Hi,
    That is great news, unless there is anything else we can assist with, shall we close this then?

    Best regards,
    Mike

    in reply to: Can't Drag and Drop Widgets #913047

    Hi,
    Thank you for clarifying, but I made no changes, I only tested if these were working correctly and they showed that they were.
    I would still recommend disabling your plugins and custom function codes to test your woocommerce site. But I also recommend backing up your site,should disabling your plugins lose any settings. Typically this doesn’t occur, but it does to some plugins. Perhaps another approach would be to clone your site to a localhost and test there, if your woocommerce site can’t have any downtime. I recommend https://wordpress.org/plugins/duplicator/ for doing this.

    Best regards,
    Mike

    in reply to: Woocommerce price suffix #912786

    Hi,
    It looks like “huurprijs” is the word you used in the code above, can you explain if you want to hide only on some pages and which one of them as the word “huurprijs” is on the page many times.
    Also perhaps if you could explain if and when the code is working correctly and when you want to hide it so we can adjust it better. Thank you.

    Best regards,
    Mike

    in reply to: Fullwidht button and it's outline #912784

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

    a.avia-button.avia-button-fullwidth .avia_iconbox_title {
    font-size: 10px !important;
    }

    Please adjust the number ten in the code to the size you wish.

    Best regards,
    Mike

    in reply to: Icon Problem #912782

    Hi,
    Can you please include a admin login and FTP access in the private content area so we can take a closer look.
    To post us your login credentials (in the “private data” field), please:

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Mike

    in reply to: Footer link #912781

    Hi,
    I have repaired your footer.php so the error is gone, I also fixed your quick css, as it was missing a }
    I then added your copyright section of footer which included a link, but please note that you should make sure the link is pointing to the right website. If you wish, add the link here and we can adjust it for you.
    Also the link color was going to be white, as set by your theme options so I added some css to make it black with this code, so you can see it.

    span.copyright a.xandria { color: #000000;}

    If you tell us what color you want it, and what on-hover color we can adjust it for you, unless you can do yourself.
    Please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 28,951 through 28,980 (of 34,552 total)