Forum Replies Created

Viewing 30 posts - 31,291 through 31,320 (of 33,828 total)
  • Author
    Posts
  • 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

    in reply to: Tabs Section Issues on Mobile #837918

    Hey tivo_designs,
    I’ve taken a look at your tab section and they seem to be working in mobile Chrome on Android, what browser are you seeing the error in? Is it the tabs or the images that don’t show? Please see screenshot in the Private Content area, can you explain how the padding seems to be off?

    Best regards,
    Mike

    in reply to: Internet Explorer and Enfold Gym #836599

    Hi,
    I have taken another look and I could not find an issue with your slider images, please see the screenshot in the Private Content area.
    Are you still having the issue, or shall we close this?

    Best regards,
    Mike

    Hey UweHof,
    Sorry for the late reply, I found that in Edge & IE 11, the image is loading as a square, where your image is not a square. Is has been noted by Layersider as an issue with Edge and IE 11 a few times and their solution is to add this code in Custom > CSS in the Customizer (or in the General Styling > Quick CSS field):

    @media (max-width: 1920px) {
        .ls-inner, .ls-container, .ls-slide  {
            width: 100% !important;
        }
    }

    Also check your image sizes in Layerslider to see if they are set to auto, or that they are not set to 600px X 600px
    gzWq1.jpg
    Let us know if this helps you

    Best regards,
    Mike

    in reply to: Portfolio rendering issue on Windows 10, Chrome #836570

    Hi,
    Sorry for the late reply, I have checked in Windows 10, Chrome Version 60.0.3112.90 with different screen resolutions, but I could not reproduce the error.
    I have also tried http://browsershots.org with 6 older Chrome versions with no errors.
    2017-08-09_130251
    I also tested in Edge and Firefox, even though you said they were fine, and I tried Disabling JavaScript, just in case.
    I do note you have a 404 on /wp-content/themes/edgebuildings/js/dist/autocompleteoff.js but don’t think that is the issue, unless it was working before and it was causing a conflict.
    I assume your client has cleared their cache and disabled any browser addons?
    I do question your statement that “The client is on Windows 10 using Mac.” are they using a virtual box on a Mac, or did I misunderstand that statement?
    Can you ask what Chrome version they are using? Sorry that I was not more help.

    Best regards,
    Mike

    in reply to: Sticky Header with Contact Info #835172

    Hey enfold4phil,
    I was able to get your icons to go inline with your text, in your header extra bar.
    You can review your Enfold Theme Options > Header > Extra Elements > Phone Number or small info text and your Quick CSS for the exact code I used, but to help other people I will show the redacted info here:
    In Enfold Theme Options > Header > Extra Elements > Phone Number or small info text:

    <ul class="contact"><li class="phone"><span class="in1">[av_font_icon icon='ue854' font='entypo-fontello' size='20px'][/av_font_icon]</span> (555) 555-5555  </li>  |  <li class="mail">  <span class="in1">[av_font_icon icon='ue805' font='entypo-fontello' size='20px'][/av_font_icon]</span>  (Email address hidden if logged out)  </li>  |  <li class="local"> Bussiness in the Greater Metro Area </li> - <u>Call Us Today: (555) 555-5555</u></ul>

    In Quick CSS:

    .in1 {display: inline-block !important; }
    .contact ul {list-style: none!important; list-style-type: none!important;}
     ul li { display: inline!important;}

    Best regards,
    Mike

    in reply to: Transparency #835162

    Hey mihYY77gvf,
    Firefox and Chrome seem to have the same Transparency for me, perhaps I’m looking at the wrong area, please check my screenshot.
    2017-08-06_174846

    Best regards,
    Mike

    Hey jessy_websites,
    I’m sorry I don’t see the category description on your page, can you please include a screenshot to show what you would like to see?

    Best regards,
    Mike

    in reply to: Stop Gallery animation when hovering #835159

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

    .avia_transform .avia-gallery-thumb img.avia_start_animation {
        -webkit-animation: avia_appear 0s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)!important; 
        animation: avia_appear 0s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)!important; 
        animation-duration: 0s!important; 
        
    }

    Best regards,
    Mike

    in reply to: Title #835157

    Hi,
    shall we close this then?

    Best regards,
    Mike

    in reply to: Titles getting clipped in portfolio Ajax preview #835156

    Hey marieilene,
    I didn’t see any clipping, please see in Private Content area.
    But if you want to adjust the font-size Try this code in the General Styling > Quick CSS field:

    .grid-entry-title.entry-title a {font-size: 10px !important; }

    adjust to suit.

    Best regards,
    Mike

    in reply to: Menu settings #835149

    Hey cappers,
    In your menu settings uncheck “Automatically add new top-level pages to this menu” If some are already showing, just delete them.
    2017-08-06_171543

    Best regards,
    Mike

Viewing 30 posts - 31,291 through 31,320 (of 33,828 total)