Forum Replies Created

Viewing 30 posts - 31,591 through 31,620 (of 34,859 total)
  • Author
    Posts
  • 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

    in reply to: Can't change background image on boxed theme #861406

    Hi,
    Shall we close this then?

    Best regards,
    Mike

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

    Hey Darren,
    When checking your contact page, I only see the recaptcha size issue in tablet mode (768px) so try this code in the General Styling > Quick CSS field to target just that size:

    @media screen and (max-height: 769px){ #rc-imageselect, .g-recaptcha {transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;} }

    Please clear your cache and review.
    2017-10-07_122239
    2017-10-07_122151
    Best regards,
    Mike

    in reply to: Style sheet could not be loaded fault #861401

    Hey Darren,
    I went to your contact page, but didn’t get that error in the console, how can I reproduce the error?

    Best regards,
    Mike

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

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

    Best regards,
    Mike

    in reply to: Change Table Header Color #861398

    Hey HendyZone,
    Here is an example css for your site:

    .postid-2338 td.avia-center-col:nth-child(1) {background-color: red !important;}
    
    .postid-2338 td.avia-center-col:nth-child(2) {background-color: yellow !important;}
    
    .postid-2338 td.avia-center-col:nth-child(3) {background-color: blue !important;}

    2017-10-07_113321
    You can change the colors to suit, and change the postid for each page or post if you use several different tables, but this will effect all tables on the same page.

    Best regards,
    Mike

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

    Hi,
    I added the above code and flushed your site cache, Please clear your browser cache and review
    2017-10-07_111649

    Best regards,
    Mike

    in reply to: Assign post breadcrumb category to page #861390

    Hey Sigmund,
    The category links to a archive page that displays all posts in that category, are you asking to have a shorter url to the same page without the “/category/”? Can I ask what purpose this would achieve?

    Best regards,
    Mike

    in reply to: Custom CSS playing havoc with my home page #861386

    Hi,
    Try using a code block element instead of a text block element.

    Best regards,
    Mike

    in reply to: Enfold > Background image > Remove on mobile #861382

    Hi,
    Try:

    @media only screen and (max-width: 426px) { div#archi-workshop- { background-image: none!important; } }

    Best regards,
    Mike

    in reply to: Logo height #861381

    Hi,
    It looks like you have this custom css controlling the height:

    /* fine */
    #top #header_main > .container, #top #header_main > .container .main_menu ul > li > a, #top #header_main #menu-item-shop .cart_dropdown_link {
        height: 100px !important;
        line-height: 80px !important;
        position: relative;
    }

    Can you please add a screenshot to point out how you would like to see it?

    Best regards,
    Mike

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

    Hi,
    To move the items to the right try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 480px) {.responsive #top #wrap_all .main_menu {right: -50px!important; }
    }

    Best regards,
    Mike

    in reply to: Vimeo Autoplay / Design Question #861378

    Hey mrjohnson2,
    It could be due to the multiple requests, although I reloaded your page several times with no issues, so I can’t really point to one cause or another.

    Best regards,
    Mike

    in reply to: Error: "ReferenceError: LS_MCE_l10n is not defined" #861375

    Hey mgyura,
    Please try to flush the cache, are you using minfication? If yes, you might want to disable that and enable later.
    Try disabling your other plugins. If that resolves the issue, reactivate each one individually until you find the cause.

    Best regards,
    Mike

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

    Best regards,
    Mike

Viewing 30 posts - 31,591 through 31,620 (of 34,859 total)