Forum Replies Created

Viewing 30 posts - 25,831 through 25,860 (of 34,568 total)
  • Author
    Posts
  • Hi,
    Sorry you will not be able to allow other pages while in maintenance mode.
    But you can display content in modal windows, or lightbox popups.
    This will allow you to hide the content until someone clicks to see your legal texts and confirmations which will be stored in a code block element.
    First add this code to the end of your functions.php file in Appearance > Editor:

    function popup_inline() { ?>
    <script type="text/javascript">
    jQuery(window).load(function(){
    	jQuery('.open-popup-link').magnificPopup({
    	  type:'inline',
    	  midClick: true
    	});
    });
    </script>
    <?php }
    
    add_action('wp_head', 'popup_inline');

    Then add this code in the General Styling > Quick CSS field:

    .white-popup {
      position: relative;
      background: #FFF;
      padding: 20px;
      width: auto;
      max-width: 500px;
      margin: 20px auto;
    }

    you can adjust the max-width to suit your needs, but try this code to start with.

    Then in a code block on your maintenance page add this code:

    <a href="#test-popup" class="open-popup-link">Click this button to open form in lightbox</a>
    
    <div id="test-popup" class="white-popup mfp-hide">
    YOUR SHORTCODE GOES HERE
    </div>

    Notice that the first line is the link trigger to open the popup, and the popup is below. Just replace the text “YOUR SHORTCODE GOES HERE” with your text or advanced layout builder shortcode.

    To have more than one on a page, simply change the ID for each popup (id=”test-popup”) and trigger so it is unique.

    To get the advanced layout builder shortcodes Enable the Avia Layout Builder Debug and copy the shortcodes from the debug window.

    After you do this once or twice, you will see this is easy to do.

    Best regards,
    Mike

    in reply to: Removing Links from Images that create pages #988268

    Hey gatorfan02332,
    WordPress by default creates a single page for each attachment that you have on your site.
    The attachment page is not a true page that you will find listed with your pages, it is dynamically created.
    The css solutions above are only to keep users from clicking the links, not for SEO.
    Here is a option: How to Hide Media Attachment Pages in WordPress
    Here is another: How to Disable Image Attachment Pages in WordPress

    Best regards,
    Mike

    in reply to: Help creating a section #988266

    Hi,
    You would replace the 206 with 591:

    #top.page-id-591 .avia-content-slider-element-slider .image-overlay {
    background: #000000 !important;
    }
    
    #top.page-id-591 .avia-smallarrow-slider .avia-slideshow-arrows {
    width: 100% !important;
    top: 150px !important;
    }
    #top.page-id-591 .avia-content-slider-inner {
    margin: 0px 50px;
    }

    Best regards,
    Mike

    in reply to: Copyright a Post Image #988262

    Hi,
    Thanks for sharing your solution, Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: How to move logo to the left on the site? #988261

    Hey amikietiuk,
    Please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: Different color for bold text and links #988260

    Hi,
    I took a look at your site and found that the strong tag around the word “warning” is responding to the code above, where the code you added also includes other classes, which normally it should, but not in this case.
    Perhaps the “elementor” code is conflicting some. But it is working now.

    Best regards,
    Mike

    in reply to: pricing #988259

    Hey dave frucella,
    Thank you for contacting us, Enfold is $59, and only available at Theme Forest
    Please see the demos that are included
    If you would like to see Enfold in action, please see this user submitted video.
    Let us know if you have any other questions, and we look forward to seeing what you build with Enfold.

    Best regards,
    Mike

    Hi,
    I took a look at your page and found this only occurs with Chrome, and that adding a z-index to the slider seems to solve.
    Please try this code in the General Styling > Quick CSS field:

    #top.home .avia-slideshow {
    z-index: 0 !important; 
    }

    Or add this css to the WordPress > Customize > Additional CSS
    I wrote this to only work on your homepage, if you have other sliders with this issue please let us know.
    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    Hey bruwa,
    Your css looks correct, please try it in the WordPress > Customize > Additional CSS field, and clear your browser cache, if this doesn’t help please link to your site so we can test.
    I assume we can enter fake info to get to the screen you are talking about?

    Best regards,
    Mike

    in reply to: Video as button to subpage #988247

    Hey krzysztofkosz,
    Unfortunately this is not available because applying a link to another page on a video slide would interfere with the video cobecause. But as a alternative for your short video loops, try converting them to moving gif’s, you will be able to add the links and you won’t have the issue of videos not playing on mobile devices using the Chrome browser.

    Best regards,
    Mike

    in reply to: How to remove the line under the main menu items #988239

    Hey bruwa,
    Please try this code in the General Styling > Quick CSS field:

    .av-main-nav li:hover .avia-menu-fx, .current-menu-item > a > .avia-menu-fx, .av-main-nav li:hover .current_page_item > a > .avia-menu-fx {
        visibility: hidden !important; 
        background-color: transparent !important; 
        border-color: transparent !important; 
    }

    If this doesn’t help please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

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

    select option {
        background: #E07D37!important; 
        color: #fff!important; 
    }

    Please adjust the color to suit.

    Best regards,
    Mike

    in reply to: Scroll down arrow in LayerSlider #988232

    Hi,
    Please try this solution for adding a down arrow to a layerslider, I have just tested to ensure that it works.
    Please add a new html layer to your slide, and drag it into place and resize it to around 60px square, it doesn’t need to be exact.
    Then in the layerslider content box for the html layer, please add:

    <a href="#next-section" title="" class="scroll-down-link" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></a>

    and save.
    If you add any more layers afterwards, such as a overlay, ensure the html layer is on top so you can click it.
    2018-07-21_155943
    2018-07-21_160104

    Best regards,
    Mike

    in reply to: How do I duplicate Construction theme slider #988229

    Hi,
    To make your slideshow controls round, in the element, choose “minimal white” in the option “Slideshow control styling”
    and then add this code in the General Styling > Quick CSS field:

    #top .av-control-minimal .avia-slideshow-arrows a:before {
          border-radius: 100px !important; 
    }

    On my localhost the controls only show on hover when using “minimal white”, if this is not the case for you please link to your page so we can see and assist with some css.

    Best regards,
    Mike

    in reply to: Mobil fonts #988218

    Hi,
    I check your site on another Android, and found the text was a gray, but I have not seen this on other sites.
    Please try this css in your WordPress > Customize > Additional CSS

    .main_color p {color: rgba(0, 0, 0, 1) !important; }

    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: New homepage spacing & font size and weight issues #988201

    Hi,
    To reduce the gutter, Please try this code in the General Styling > Quick CSS field:

    #top.page-id-3370 .post-entry-3370 .av-flex-placeholder {
        width: 2% !important; 
    }

    currently it is set to 6% on your site, please adjust to suit.
    For the blue panels, we will add padding, so the text isn’t close to the edges.

    padding: 0 30px !important; 

    we will also add font weight to have the Lato light, I went to Google fonts to find the correct weight number:

    font-weight: 300 !important;

    This is your new css with these adjustments:

    #top.page-id-3370 .post-entry-3370 .av-flex-placeholder {
        width: 2% !important; 
    }
    #top.page-id-3370 .blue-head h3 {
    font-size: 30px !important;
    padding: 0 30px !important;
    font-family: Lato !important; 
    }
    #top.page-id-3370 .blue-text p {
    font-size: 20px !important;
    padding: 0 30px !important; 
    font-family: Lato !important; 
    font-weight: 300 !important; 
    }

    Best regards,
    Mike

    in reply to: Unexpected Image Link Hover Effect? #988194

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

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: New homepage spacing & font size and weight issues #988156

    Hey Rupert,
    For the column padding, Please try this code in the General Styling > Quick CSS field:

    #top.page-id-3370 #main .container {
    padding: 0px !important;
    }
    #top.page-id-3370 #main .container .content {
    padding: 0px !important;
    }

    For the blue sections, please go to and enable: Enfold Theme Options > Layout Builder > Show element options for developers
    so you can add a custom class to the text blocks for the headings & text, such as “blue-head” & “blue-text”
    Then you can use this code in the General Styling > Quick CSS field to adjust the font-size:

    .blue-head h3 {
    font-size: 30px !important;
    }
    .blue-text p {
    font-size: 20px !important;
    }

    Best regards,
    Mike

    Hey philippmosqueira,
    I took a look at your site and found that your file permissions were not correct, so I changed your folders to 755 & files to 644.
    Then I tried uploading the enfold theme, but the default permissions settings on the server creates folders with 705 & files with 604, so during the upload each directory is created with incorrect permissions that won’t allow a sub-directory, and this is why you are getting the error.
    While I did change the file permissions on the first level sub-directories, it would be too much to do so for every sub-directory, and I believe this will cause you issues in the future.
    Please ask your webhost to change the default file permissions for created folders & files, so you can upload the theme correctly.

    Best regards,
    Mike

    in reply to: How do I duplicate Construction theme slider #988099

    Hi,
    The Constriction Demo uses the Fullwidth Easy Slider. Here is the screenshots of the settings;
    2018-07-20_220832
    2018-07-20_220950

    Best regards,
    Mike

    in reply to: remove margin on easy slider #988098

    Hey Adi,
    Please try this code in the General Styling > Quick CSS field:

    #top.home #main .container,#main main {
    padding: 0px !important;
    }
    #top.home .avia-slideshow-inner .slide-1 {
    margin: 0px !important; 
    }

    Best regards,
    Mike

    in reply to: Mobil fonts #988097

    Hi,
    I have taken a look at your site with Android and found that the test is a darker color than your screenshot.
    It looks as though you are using iPhone, and I suspect that this is a device setting.
    First you cab try this code in the General Styling > Quick CSS field:

    p {
    color: #000 !important;
    }

    If this doesn’t help, please try going to Settings > Accessibility > Increase Contrast on your device and look for “Darken Colors”

    Best regards,
    Mike

    in reply to: Remove category #988096

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

    .blog-categories.minor-meta {
    display: none !important;
    }

    Best regards,
    Mike

    in reply to: Error under Design – Themes #988095

    Hi,
    Thanks for the login, it looks like you are missing some stylesheets or the file permissions are incorrect.
    Please include FTP access in the Private Content area, so we can take a closer look.

    Best regards,
    Mike

    in reply to: 1px Space left and right of full width Slide-Show #987819

    Hey caweint,
    I have taken a look and I believe I see it, it’s very hard to see.
    but I examined all of the elements, and found everything is 100%.
    Could it be in the svg? Please try testing with a jpg or try trimming the edges off of the svg

    Best regards,
    Mike

    in reply to: Problems with Blog #987808

    Hi,
    Your image is wider than high, and the mobile screen is the opposite. If you created an image that used the same ratio as the mobile screen it would be better.
    Then we could use it css to force the background-image to contain:

    @media only screen and (max-width: 767px) { 
    #top.home .avia-slideshow-inner .av-mobile-fallback-image {
        background-size: contain !important; 
        background-repeat: no-repeat !important; 
    }
    }

    Best regards,
    Mike

    in reply to: transparent menu #987781

    Hi,
    To replace the h2 tag in your slider with h1, try adding this code to the end of your functions.php file in Appearance > Editor:

    function slider_h2_to_h1(){
      ?>
      <script>
      jQuery(window).load(function(){
      var el = document.querySelector('.avia-caption-title');
            el.outerHTML = '<h1 class="avia-caption-title ">' + el.innerHTML + '</h1>';
      });
      
      </script>
      <?php
      }
      add_action('wp_footer', 'slider_h2_to_h1');

    then add this code in the General Styling > Quick CSS field to style your new h1:

    .avia-caption-title {
    color: #fff !important;
    font-size: 50px !important;
    }

    please adjust to suit.

    Best regards,
    Mike

    in reply to: Sidebar on all shop category pages #987679

    Hey soundstrat,
    Please set a sidebar at Enfold Theme Options > Sidebar Settings > Sidebar on Archive Pages
    If this doesn’t help, please include a admin login and ftp access in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: How to make same page link work on open burger menu #987678

    Hi,
    Sorry, I’ve been trying different scripts and methods to solve this, and I have not found one to work.
    I will ask the rest of the team for ideas.
    Thanks for your patience.

    Best regards,
    Mike

    in reply to: Image full width on ONE side of the content #987677

    Hi,
    Yes at 1440px and larger the image will not fill the width of the box, because the image is not wide enough.
    Such as if your screen is 1920px the image will not fill the width, it will fill the height.

    Best regards,
    Mike

Viewing 30 posts - 25,831 through 25,860 (of 34,568 total)