Forum Replies Created

Viewing 30 posts - 30,571 through 30,600 (of 34,549 total)
  • Author
    Posts
  • in reply to: 3 column layout issue in tablet view #884401

    Hi,
    Do you have the equal height feature on? As stated above with equal height on the columns won’t collapse with that code. If not, try changing the width to match your screen, such as 770px or 998px for landscape.

    Best regards,
    Mike

    in reply to: Create different sidbar #884400

    Hey Christoffer,
    Yes, you can use different sidebar on each page. You can simply go to Appearance > Widgets and create a new widget area and add your widgets into it and then edit your page and under Layout section you can choose your sidebar – http://i.imgur.com/zuEKJk4.png

    Best regards,
    Mike

    in reply to: Page is flashing when anchor links are clicked #884397

    Hey amanda007,
    I tested in Chrome, Firefox, Edge & IE11 and couldn’t reproduce the issue. What browser are you using?

    Best regards,
    Mike

    in reply to: question about enfold theme #884396

    Hey missbluesky,
    I’m not sure if I understand correctly, If you are building with Enfold on a sub-domain and are ready to move your site to the main domain to go live, then Themeforest would not require another license, because it’s just one site being moved.
    If you are using the theme for a different project that is not related to the first one Themeforest would require you to purchase another license. If the two are related and are on the same domain then another license would not be necessary.
    Hope this helps.

    Best regards,
    Mike

    in reply to: Sort Options: Border around the "active" sort option #884392

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

    Best regards,
    Mike

    in reply to: Gravity Forms "Light transparent" styling #884391

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

    Best regards,
    Mike

    in reply to: Help with aligning content 3/5 and 2/5 #884390

    Hi,
    This is because the columns are created to be stacked at tablet screen width, but at desktop the bottom of the 2/3 is holding down the second 3/5. One solution is to have a 2/3 that is similar in height as the first 3/5, with code like this:

    .page-id-5139 div#cff.cff-fixed-height {
        max-height: 335px!important; 
    }

    Another solution is to make the “All” filter on your first 3/5 the default, as it has 67 items and is much longer.
    Or to put the news feed in a sidebar on that page.

    Best regards,
    Mike

    in reply to: How to Align Google Map correctly? #884385

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

    Best regards,
    Mike

    in reply to: IconBox Icon font only showing Chinese characters #884384

    Hi,
    In your screenshot you have the new url as http: where in the address bar it’s https:
    So that verifies the issue, please try one of the above solutions to correct.

    Best regards,
    Mike

    in reply to: invisible mobile menu #884383

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

    Best regards,
    Mike

    in reply to: Spalten werden untereinander dargestellt #884382

    Hi,
    After cloning and replacing a few times I was able to fix the issue, still not sure what happened though. Please check.

    Best regards,
    Mike

    in reply to: IconBox Icon font only showing Chinese characters #884368

    Hi,
    Depending on how you migrated, you may still have http: in your database which needs to be https:
    Two things you can do, one is to use Better Search Replace plugin and search “http:” replace “https:”
    The other option is to use Really Simple SSL plugin which dynamically does the same thing.

    Best regards,
    Mike

    in reply to: Gravity Forms "Light transparent" styling #884366

    Hi,
    You need to add your page id to each rule like this:

    
    .page-id-635 .gfield_required {
    color: orange!important;
    }
    .page-id-635 .gform_wrapper label {
    color: white!important; 
    }
    .page-id-635 .gform_wrapper input, .page-id-635 .gform_wrapper select {
    background: transparent!important;
    border: 2px solid white!important;
    color: white !important;
    }

    Let us know if this helps.

    Best regards,
    Mike

    in reply to: invisible mobile menu #884364

    Hi,
    Glad to see you found the issue, I’m not sure what that code was trying to fix in Chrome, perhaps an old issue and is not needed anymore. Shall we close this then?

    Best regards,
    Mike

    in reply to: How to Create Author Page Enfold #884244

    Hi,
    We will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Enfold blog issues/questions #884242

    Hi,
    Correct, you should add this to the child theme functions.php
    I believe that because you have the author meta is disabled it will not show, this function only calls it but the Enfold theme options decide if it will be shown or not.

    Best regards,
    Mike

    in reply to: Remover hove effect behind single menu item #884240

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

    Best regards,
    Mike

    in reply to: Sort Options: Border around the "active" sort option #884239

    Hi,
    To remove the “All” sort option, try this solution

    Best regards,
    Mike

    in reply to: Sort Options: Border around the "active" sort option #884237

    Hi,
    You will need to change the border to 0px and remove the !important; from your custom css in this rule:

    .av-sort-by-term a {
      color: black !important;
      font-size: 20px !important;
      border:1px solid #5d225b !important;
      padding: 10px !important;
    }

    The rule should look like this:

    .av-sort-by-term a {
      color: black !important;
      font-size: 20px !important;
      border:0px solid #5d225b;
      padding: 10px !important;
    }

    And add this rule:

    .av-sort-by-term a.active_sort {
    border: 1px solid #5d225b !important;
    }

    Best regards,
    Mike

    in reply to: Adding woocommerce to existing Enfold site #884233

    Hey Wolf,
    If you add a second WP to a subdomain you will also need to add a second Enfold to use the elements, but the first domain with your live Enfold will not be able to use the woocommerce elements from the second on the first. They will act as two separate sites.

    Best regards,
    Mike

    Hi,
    Your images are still 180px square, and there is also 50px right margin keeping it from going full width. But we can adjust with this css if you wish:

    @media only screen and (max-width: 426px) { 
    .single-post .single-small.with-slider .small-preview {
        width: 360px!important; 
        height: 360px!important; 
    }
    img, a img {
       max-width: 360px!important; 
    }
    .template-blog .blog-meta {
        margin-right: 0px!important; 
    }
    }

    2017-12-02_203929

    Best regards,
    Mike

    in reply to: invisible mobile menu #884231

    Hi,
    The issue is a css conflict in your General Styling > Quick CSS field, try removing all of the code and add it back line by line until you find the conflict.
    I removed all of the code and the mobile menu worked correctly, please see screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Remover hove effect behind single menu item #884226

    Hi,
    Odd, in my test it seems to work. Please see screenshot in Private Content area.
    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    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: Product Loops appear as h2 heading –> duplicate content #884225

    Hi,
    You are not harming anything by doing this, the h2 & h4 are only styles which can be changed with css should you have any styling issues. In the future if you find an issue let us know and we will be able to help.

    Best regards,
    Mike

    in reply to: How to Align Google Map correctly? #884224

    Hi,
    The google map centers on the first map marker in the list, but in your case they are too spread out to choose one that is centered. So I created a new map point in Mitchell and uploaded a custom transparent marker. Now your map is centered showing all 4 points at a zoom 7, and no one will know you have a fake marker in the middle.

    Best regards,
    Mike

    in reply to: Custom sort of posts #884223

    Hi,
    Thank you for sharing your solution, shall we will close this now?

    Best regards,
    Mike

    in reply to: Fullwidth Easy Slider Caption and arrows #884222

    Hi,
    I adjusted the code to a percentage so it will be the same for all slides.

    .page-id-475 .slideshow_align_caption{
    padding-left:15%!important;
    }
    .page-id-475 #full_slider_1 {
        padding: 70px 0!important; 
    }

    2017-12-02_190145
    Best regards,
    Mike

    in reply to: Category lists and other issues re search results #884221

    Hey s29ers,
    Navigate to Dashboard > Enfold > Blog Layout and for the blog style option select the “Single author, small preview pic” or the “Single author, big preview pic” styles.
    To exclude pages from the ajax search results try this solution

    Best regards,
    Mike

    in reply to: Burger menu displays page content #884219

    Hi,
    The extra text is in a menu field called Description. It was hidden by your screen options at the top of the page. I checked the Description box and now you can see it.
    2017-12-02_180653
    As this was developed in 2014, before the burger menu, it was most likely used for SEO. With the new burger menu I suggest clearing this field. If you wish to hide it from the burger menu, Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) { .avia-menu-subtext {display:none!important;}}

    Best regards,
    Mike

    in reply to: Edit function NOT working. #884217

    Hi,
    Sorry for the late reply, it seems your site is up and running, but the login is not working.
    Has this been resolved?

    Best regards,
    Mike

Viewing 30 posts - 30,571 through 30,600 (of 34,549 total)