Forum Replies Created

Viewing 30 posts - 32,311 through 32,340 (of 34,859 total)
  • Author
    Posts
  • in reply to: Layer Slider Missing #838080

    Hi,
    LayerSlider > Slides > Import
    See the screenshot above

    Best regards,
    Mike

    in reply to: Underline in tabs on hover #838078

    Hi,
    Sorry, it’s a border so it would always be full width.

    Best regards,
    Mike

    in reply to: Post arrows don't show on all pages #838077

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

    Best regards,
    Mike

    in reply to: Keep images centered with CSS #838076

    Hey ccyran,
    Try removing your padding around the image (200px 150px 150px 150px)
    and try this code:

    .homepage {
    max-width: 50%!important; 
    left: 25% !important;
    padding-top: 200px !important; 
    padding-bottom: 200px !important; 
    margin: 0 auto;
    }
    @media only screen and (max-width: 1023px) { 
    .homepage {
    max-width: 100%!important; 
    left: 0px !important;
    padding-top: 100px !important; 
    padding-bottom: 100px !important; 
    margin: 0 auto;
    }}
    

    Best regards,
    Mike

    in reply to: Underline in tabs on hover #838072

    Hi,
    Try:

    .header_color div {border-color: transparent!important; }

    Best regards,
    Mike

    in reply to: Post arrows don't show on all pages #838071

    Hi,
    Try:

    .avia-post-nav .entry-image img {
        border-radius: 0px!important; 

    Best regards,
    Mike

    in reply to: Infinit Shrinking Header #838070

    Hey Bert2,
    Can you please share the code you are using, and the URL to the site.
    Including a admin login in the private content area might also be helpful.

    Best regards,
    Mike

    in reply to: Screen Options Not Breaking Correctly #838069

    Hi,
    I was not able to login, please check info

    Best regards,
    Mike

    in reply to: Right sidebar showing under conten #838067

    Hey iedigitaldesign,
    This was due to a conflict with JetPack plugin, I tried disabling it at the error was resolved.

    Best regards,
    Mike

    in reply to: Contact Form Sending animation color #838057

    Hi,
    You could try this code, I’ve changed the blue to orange to match your site:

    .main_color input[type='submit']:hover {
        background-color: #F57F20!important; 
        color: #ffffff;
        border-color: #F57F20!important; }
    
    .main_color .button.av-sending-button {
        background: #F57F20!important; 
        background-image: linear-gradient(-45deg, #d9701a 25%, #F57F20 25%, #F57F20 50%, #d9701a 50%, #d9701a 75%, #F57F20 75%, #F57F20)!important; }

    Best regards,
    Mike

    in reply to: Underline in tabs on hover #838038

    Hi,
    I don’t see the black lines on your site right now, can you make the change that produces them so we can offer a fix?

    Best regards,
    Mike

    in reply to: Post arrows don't show on all pages #838037

    Hi,
    I was able to fix it by adding this code to the end of your functions.php file in Appearance > Editor:

    add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
    function avia_remove_fullwidth_slider_check($settings)
    {
    $settings['is_fullwidth'] = false;
    return $settings;
    }

    Enfold deactivates the post navigation on pages with fullwidth sliders or some elements to avoid that the slider buttons overlap the post navigation and vice versa.
    When editing functions.php you should use the child theme, Read about it & Get it here Your next update will lose this mod.

    Best regards,
    Mike

    in reply to: Change Link Hover Highlight Color #838028

    Hi,
    I removed all of your inline style and added a class to your link like this:

    <a class="saw" href="http://www.ccyran.com/work/">See All Work</a>

    Then I added this css to the end of your Quick CSS:

    a.saw:link { 
        color: #f9f9f9!important; 
        text-decoration: underline!important; 
    }
    a.saw:hover {
        color: #dedede!important; 
    }

    Note that the colors are not too different, but you can see a slight change.
    Please clear your cache :)
    Best regards,
    Mike

    in reply to: H1 is forced uppercase #838007

    Hi,

    @Guenni007
    thanks for your input.

    @gardenstateloans
    did you find this to be your solution? Shall we close this then?

    Best regards,
    Mike

    in reply to: Secondary menu: remove underline on li on hover #838005

    Hi,
    I don’t see a underline for your sub-menu links, please see screenshot in Private Content area, perhaps I’m looking at the wrong element.

    Best regards,
    Mike

    in reply to: Enfold Theme #838004

    Hi,
    Have you found the menu sizing that your were looking for? Please see screenshot in Private Content area for what I see.

    Best regards,
    Mike

    in reply to: Background for home page #838002

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

    .html_entry_id_203 #av_section_1 {
    background-image: url(https://kidsclubparty.com/kidsclub/wp-content/uploads/2017/08/kids-bg_1300-5.png);
    }

    Best regards,
    Mike

    in reply to: Change Link Hover Highlight Color #838001

    Hi,
    Did you add your style inline with your link code?
    Try removing the inline style and using this css:

    .hover a { 
        color: #f9f9f9;
        line-height: 1.4em;
        text-decoration: underline;
    }
    .hover a:hover {
        color: #dedede
    }

    Best regards,
    Mike

    in reply to: Disable Link Preview – Link Embed #837998

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

    function my_deregister_scripts(){
    wp_dequeue_script( 'wp-embed' );
    }
    add_action( 'wp_footer', 'my_deregister_scripts' );

    It worked on my localhost

    Best regards,
    Mike

    in reply to: Opening a newsletter subscribe form in modal window #837995

    Hi,
    Here is a solution, use this code as your button:

    <a href="http://yoursite.com/newsletter-signup/?iframe=true&width=100%&height=100%" rel="prettyPhoto[iframes]"" class="avia-button   avia-icon_select-no avia-color-light avia-size-large avia-position-center "><span class="avia_iconbox_title">SUBSCRIBE</span></a>

    For other links change the url, but leave the ?iframe=…
    Then on the page that the url points to hide the Header, Footer & Title Bar:
    2017-08-12_131046
    Then to make the Code Block button align center I added the custom class “lbb”
    2017-08-12_132629
    And added this code in the General Styling > Quick CSS field:

    .avia_codeblock.lbb {text-align: center;}

    2017-08-12_132923
    2017-08-12_133629

    Best regards,
    Mike

    Hey dennishjmiller,
    Please try adding an offset to your anchors by first adding a class like this:

    <a class="anchor" name="chocolate"></a>

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

    .anchor {
      display: block!important; 
      height: 100px!important;
      margin-top: -100px!important;
      visibility: hidden;
    }

    Best regards,
    Mike

    Hi,
    Sorry, that feature is not available yet, but Please feel free to request – or vote if already requested – such feature on Enfold feature request form.
    Another option instead of the fly out menu is to show the sub menu items always:

    ul.sub-menu {
        position: relative !important;
        left: 0px !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 10000;
        box-shadow: none !important;
        border-bottom: 1px solid #e1e1e1;
        width: 100%;
    }
    .sub-menu li, .sub-menu li a{
        float: none !important;
        display: block !important;
    }
    .sub-menu a{
        background: transparent !important;
        border: 0 !important;
    }

    Please see screenshot in Private Content area

    Best regards,
    Mike

    in reply to: Third level sidebar menu item color #837956

    Hey 1lizcollins,
    I believe your answer is found in the Ubermenu docs, that state:

    Current Menu Item: To highlight the current menu item red (regardless of level), you could use this style

    It is the top style on this page: http://sevenspark.com/docs/ubermenu-current-menu-item
    the Page Hierarchy (parent) style you are now using will highlight when either that item or a submenu item is selected.
    If you need further assistance with Ubermenu, please try their support fourm: http://sevenspark.com/support
    as supporting third party plugins is beyond the scope of support we can provide here.

    Best regards,
    Mike

    in reply to: Limit Blog Preview Copy #837946

    Hi,
    I have added Ismael’s code to your functions.php and the “read more” links are now showing.
    Please clear your cache and review, you can adjust the except length to suit.

    Best regards,
    Mike

    in reply to: search result site #837944

    Hi,
    Try this code in the General Styling > Quick CSS field to hide the “comments” tab:

    div.widget_tab_comments {display:none !important;}

    Best regards,
    Mike

    in reply to: Center adjustment of button in easy slider full width #837940

    Hi,
    Thank you for sharing your solution, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Please try this CSS for the black mobile band in Chrome and Edge, once it is transparent the video shows as full screen:

    @media only screen and (max-width: 767px){
    .html_header_top.html_header_sticky #top #wrap_all #main {
        margin-top: -143px;
    }
    .responsive #top #wrap_all #header {    
        background: transparent!important; 
    }
    .av_header_transparency #advanced_menu_toggle {
        background-color: transparent!important; 
    }}

    Best regards,
    Mike

    in reply to: Layer Slider Missing #837929

    Hi,
    I have tried in import the 2017 demo for layerslider from my install, but you have this error:

    The PHP ZipArchive extension is required to import .zip files

    This is probably why it didn’t install the first time, please contact your host and ask to have the PHP ZipArchive extension installed.
    Then you can import the 2017 demo I have linked in the Private Content area.
    It is true that if you re-import the whole demo it it will over-write all the current work, but using just the slider demo if not.
    2017-08-12_095407

    Best regards,
    Mike

    in reply to: Transparent header on mobile #837923

    Hi,
    I have added Vinay’s code to your Quick CSS, and it is working now. Please clear your cache and check. Please see the screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Replace Instagram Logo and Fix Fontello Error Message #837921

    Hi,
    I couldn’t login, please check and add new info in the Private Content area.

    Best regards,
    Mike

Viewing 30 posts - 32,311 through 32,340 (of 34,859 total)