Forum Replies Created

Viewing 30 posts - 31,681 through 31,710 (of 34,963 total)
  • Author
    Posts
  • in reply to: Menu Lines same width as Container #861606

    Hi,
    The element that has the border now is full width, but if you remove that border you can add a border to the content element which will give you the look you want.

    .template-page.content {border-top: 3px double!important; }

    Best regards,
    Mike

    in reply to: Can't update enfold #861600

    Hi,
    What kind of message are you getting at what stage, I use this setup very often with the free version.
    You can manual update with FTP as I pointed above, but some people had issues with the new menu changes.

    Best regards,
    Mike

    in reply to: Buddypress Problem #861597

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

    .buddypress main {
      border-right: 0 none !important;
      max-width: 100% !important;
      width: 100% !important;
    }
    .buddypress aside {
      display: none !important;
    }
    .buddypress .main_color main {
    border-color: transparent!important; 
    }

    Best regards,
    Mike

    in reply to: Custom Excerpt length for Posts from Avia Blog Element #861592

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

    Best regards,
    Mike

    in reply to: Google Map API not working #861588

    Hi,
    Ah, Google says I took too long, I would have to try again :)
    Please check your api fields for a blank trailing space and try making it unrestrected for now so we can get it up and running.

    Best regards,
    Mike

    in reply to: How can change the space between Rating Stars and Price ? #861586

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

    Best regards,
    Mike

    in reply to: Can't update enfold #861584

    Hi,
    You can test on your desktop with a localhost app, such as the free version of MAMP for Mac or XAMPP for Windows, or LAMP for Linux
    I use the portable UwAmp on Windows 10
    Once you have installed one of these you can clone (backup) your site with the plugin Duplicator and install it on your localhost, which is the same as if you were using FTP and your browser only your address is http://localhost
    Then you can update, test, make changes, etc with no risk to your live site.

    Best regards,
    Mike

    in reply to: Grid Row Box won't go away #861580

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

    Best regards,
    Mike

    in reply to: Google Map API not working #861579

    Hey siteraum,
    Please check your email for a verification code for google map api

    Best regards,
    Mike

    in reply to: Can't update enfold #861576

    Hey riwas222,
    Try to update manually via FTP: https://vimeo.com/67209750
    Or: http://kriesi.at/archives/the-complete-guide-to-updating-enfold
    I recommend backing up with: https://wordpress.org/plugins/duplicator/
    Please note that there are a lot of changes from v4.0.2 to v4.1.2, I recommend creating a clone of your site with: https://wordpress.org/plugins/duplicator/ and testing on a localhost before updating your live site.
    Let us know if you would like some advice on doing that.

    Best regards,
    Mike

    in reply to: Grid Row Box won't go away #861574

    Hi,
    I was able to remove the rouge box from the end of your page by adding the debug to your functions.php Enable Avia Layout Builder Debug :
    I removed the debug function from your functions.php afterward.

    Best regards,
    Mike

    in reply to: Assign post breadcrumb category to page #861573
    in reply to: Logo height #861568

    Hi,
    OK, thanks

    Best regards,
    Mike

    in reply to: Landing Page Help #861566

    Hi,
    That page uses a color section with some element on top, and the contact form element with only one field, here is a screenshot of the backend:
    2017-10-08_083830
    Here is the debug code so you can copy it into your site (Enable Avia Layout Builder Debug )

    Best regards,
    Mike

    in reply to: Logo height #861563

    Hi,
    Sorry, I don’t understand what “voices” means, and I can’t match your screenshot to your site.
    Perhaps a larger screenshot that shows context and points out how you would like to see your site.

    Best regards,
    Mike

    in reply to: Breadcrumb Style #861561

    Hi,
    I added this code to the end of your functions.php file in Appearance > Editor:

    //* Changing excerpt more - only works where excerpt IS hand-crafted
    function manual_excerpt_more( $excerpt ) {
    	$excerpt_more = '';
    	if( has_excerpt() ) {
        	$excerpt_more = ' <a href="' . get_permalink() . '" rel="nofollow">[Read more]</a>';
    	}
    	return $excerpt . $excerpt_more;
    }
    add_filter( 'get_the_excerpt', 'manual_excerpt_more' );

    Please review.

    Best regards,
    Mike

    in reply to: Increase Size and Move Check Box on Contact Form #861558

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

    Best regards,
    Mike

    in reply to: Adjust the height of the Fullscreen Slider #861556

    Hi,
    When you say that it is correct after scrolling down, is this because the transparent header is not transparent anymore?
    Can you please add a screenshot to point out how you would like to see it?

    Best regards,
    Mike

    in reply to: Captcha is off the page? #861553

    Hi,
    I re-wrote it so it will not change mobile view:
    2017-10-08_074700
    Scale by 40 for Tablet:
    2017-10-08_074856
    and scale by 55 for everything above:
    2017-10-08_075038

    @media only screen and (min-width: 844px) { div.g-recaptcha {transform:scale(0.55)!important; -webkit-transform:scale(0.55)!important; transform-origin:0 0;-webkit-transform-origin:0 0;}}
    
    @media only screen and (min-width: 768px) and (max-width: 843px) { div.g-recaptcha {transform:scale(0.40)!important; -webkit-transform:scale(0.40)!important; transform-origin:0 0;-webkit-transform-origin:0 0;}}

    One of the issues with this plugin is that it is pulled in as a iframe so it may be hard for your css to control it depending when the iframe is loaded. Perhaps a better solution would be to allow your contact form to have 1/2 of the page instead of 1/4, you could put the “Thank you” paragraph below the contact form.

    Best regards,
    Mike

    in reply to: Breadcrumb Style #861456

    Hi,
    I added this code to the end of your functions.php file in Appearance > Editor:

    // Force manual except for default editor 
    add_filter( 'the_content', 'replace_content_with_excerpt', 100 );
    function replace_content_with_excerpt( $content )
    {
        if ( is_singular() )
        {
            return $content;
        }
            remove_filter( 'the_content', __FUNCTION__, 100 );
        $excerpt = apply_filters( 'the_excerpt', get_the_excerpt() );
        add_filter( 'the_content', __FUNCTION__, 100 );
        return $excerpt;
    }

    Look for the excerpt box under your post in editor, if you don’t see it look at the very top of your page for “Screen Options” and check the excerpt box.
    Best regards,
    Mike

    in reply to: Adding content (image) beneath post-title #861454

    Hey erwin_m,
    Try:

    h2.post-title.entry-title::after {
      content:url(https://mydomain.nl/wordpress/wp-content/themes/enfold-child/images/rule.jpg)!important;height:auto;margin-bottom:0px!important;
    }

    Best regards,
    Mike

    in reply to: How to approach the text button? #861452

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

    .avia-builder-el-17 .avia_textblock {padding-bottom: 0px !important; }
    .avia-builder-el-21 {margin-top: 0px !important; }

    Best regards,
    Mike

    in reply to: Increase Size and Move Check Box on Contact Form #861448

    Hi,
    I added !important; to Ismael’s code and added some to make the check box larger, and it seems to be working.
    Please clear your cache and review.

    #element_avia_2_1 {
        float: left!important; 
        clear: none!important; 
        width: auto!important; 
        top: -10px!important; 
      -ms-transform: scale(2); /* IE */
      -moz-transform: scale(2); /* FF */
      -webkit-transform: scale(2); /* Safari and Chrome */
      -o-transform: scale(2); /* Opera */
    }
    
    .acknowledge + p {
        width: auto!important; 
        float: right!important; 
        margin-top: -25px!important; 
    }

    Best regards,
    Mike

    in reply to: Sidebar pages list #861441

    Hi,
    Perhaps I don’t understand the question correctly, but have you tried adding a custom menu and then using the custom menu widget in the page sidebar area, then you can add additional widgets below it?

    Best regards,
    Mike

    in reply to: Logo height #861433

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

    #menu-item-search.menu-item-search-mod {margin-top: 20px !important; }

    Best regards,
    Mike

    in reply to: Landing Page Help #861432

    Hey stewroids,
    To build a landing page use the Template: “Blank – No Header, no Footer” and No Sidebars.
    To collect email address you can use the contact form element and save the emails that are sent to you or the Mailchimp Signup element and have them sign up in your Mailchimp account, or use a plugin such as Easy Sign Up

    Best regards,
    Mike

    in reply to: Mobile View: the logo and menu icons are overlapping #861430

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

    Best regards,
    Mike

    in reply to: URGENT – Layer Slider without licence #861427

    Hi,
    The LayerSlider that comes with Enfold is a bundled version that the Layer Slider team has provided, which they have disabled a few premium features. Should you wish to use the premium features you can simply purchase a copy of the layerslider on codecanyon, upload it as a plugin and activate it. It will then overwrite the bundled version, and then you are in full control of LayerSlider updates and premium features.
    There is no need to deactivate the bundled version, it automatically detects if the plugin version is active and disables itself.
    To fix your slide timing, open your slider and change the “Slide Timing” to something like 7000
    2017-10-07_140752
    Read more here: https://support.kreaturamedia.com/docs/layersliderwp/documentation.html#slider-builder

    Best regards,
    Mike

    in reply to: YouTube Video Not Showing #861425

    Hi,
    I have used the debug mode to copy your page to a clean install and the video showed fine, this leads me to believe you have a plugin conflict, Try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.

    Best regards,
    Mike

    in reply to: Mobile View: the logo and menu icons are overlapping #861413

    Hi,
    I changed your code to this:

    @media only screen and (max-width: 426px){ 
    .responsive #top #wrap_all .logo a > img {width: 183px !important;}
    .responsive #top #wrap_all .main_menu {right: -50px!important; }}

    it seems to be working on all pages now, please check.
    Best regards,
    Mike

Viewing 30 posts - 31,681 through 31,710 (of 34,963 total)