Forum Replies Created

Viewing 30 posts - 28,231 through 28,260 (of 34,945 total)
  • Author
    Posts
  • in reply to: Enfold child theme function.php #940138

    Hi,
    Did you Regenerate New Image Sizes? Please see this post: How to Regenerate Thumbnails or New Image Sizes

    Best regards,
    Mike

    in reply to: Phone # on Android Not Working Properly #940137

    Hi,
    Perhaps, as the reference site says this is the correct setup to use.

    Best regards,
    Mike

    in reply to: Team Member Link #940132

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Plain text instead of Logo (image) #940130

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: how to add template arrow on enfold? #940129

    Hi,
    That is great news! 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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: email notification problems #940128

    Hi,
    That is great news, I glad setting up a SMTP helped.
    I have not heard of ‘shopmagic for Woocommerce’ before, nor did I find a post about it, but it looks good. I would suggest running some tests during your “off hours” when your are at your slowest.
    I look forward to reading your resume

    Best regards,
    Mike

    in reply to: Disable hover opacity effect in gallery Enfold Medical #940125

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Disable hover opacity effect in gallery Enfold Medical #939846

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

    #top .avia-gallery .avia-gallery-thumb a:hover {
        opacity: 1!important; 
    }

    Best regards,
    Mike

    in reply to: Gallery when loading wrong image size #939784

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Plain text instead of Logo (image) #939781

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

    .logo {margin-top:3px!important; }

    Please adjust to suit.

    Best regards,
    Mike

    in reply to: Mailchimp Pop-Up code breaking site #939774

    Hi,
    Ok, I have tested on your homepage and I also created a “popup-test” page, and found that popup code has errors and that causes the page to stop working.
    The code is trying to get some “response text” from Mailchimp, but it is not getting it so it gives a 404. I imagine you got this code from Mailchimp, so please ask them if they have a solution.

    Best regards,
    Mike

    in reply to: how to add template arrow on enfold? #939543

    Hey keir2012,
    To start you will need to add a custom full width widget above your footer and give it the same background color as your footer, this will allow your arrow to be centered and look a part of your footer. Please see this post for guidance on creating the widget. (it talks about making two, but just make one)
    Then this is the code for the arrow, add it to a html widget:

    <div class="footer_arrow">
    								<div class="inner_content"><div class="arrow-left-small"></div><div class="arrow-right-small"></div><h3>Need help? <a href="https://kriesi.at/themes/replete/contact/">Mail Us!</a></h3></div>
    								<div class="footer_arrow_wrap">
    								<div class="arrow-left"></div><div class="arrow-right"></div>
    								</div>
    							  </div>

    Then this is the css for your General Styling > Quick CSS field:

    .footer_arrow {
    text-align: center;
    position: absolute;
    width:100%;
    top:-32px;
    overflow: hidden;
    display:none;
    }
    
    .footer_arrow{display:block;}
    
    .footer_arrow div{
    position: relative;
    }
    
    #top .footer_arrow .inner_content{
    display: block;
    padding: 0 30px;
    margin: 0;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    width:300px;
    height:32px;
    }
    
    #top .footer_arrow .inner_content h3{
    position: relative;
    padding:20px 0 0 0;
    }
    
    #top .footer_arrow .inner_content h3 a{text-decoration: underline;}
    #top .footer_arrow .inner_content h3 a:hover{text-decoration: none;}
    
    #top .footer_arrow_wrap{
    background: none;
    overflow: hidden;
    height:100px;
    display: none;
    }
    
    #top .footer_arrow_wrap,.footer_arrow .arrow-right-small, .footer_arrow .arrow-left-small {
    display:block;
    }
    
    .footer_arrow .arrow-right,.footer_arrow .arrow-left{
    width:50%;
    height:100px;
    position: absolute;
    top:-75px;
    }
    
    .footer_arrow .arrow-right{
    -webkit-transform : skew(0deg, 7deg);
    -moz-transform : 	skew(0deg, 7deg);
    -ms-transform : 	skew(0deg, 7deg);
    -o-transform : 		skew(0deg, 7deg);
    transform : 		skew(0deg, 7deg);
    left:1px;
    }
    
    .footer_arrow .arrow-left{
    -webkit-transform : skew(0deg, -7deg);
    -moz-transform : 	skew(0deg, -7deg);
    -ms-transform : 	skew(0deg, -7deg);
    -o-transform : 		skew(0deg, -7deg);
    transform : 		skew(0deg, -7deg);
    left:auto;
    right:1px;
    }
    
    .footer_arrow .arrow-right-small, .footer_arrow .arrow-left-small {
    width: 40px;
    height: 40px;
    position: absolute;
    top: -13px;
    -webkit-transform: 	rotate(-32deg) skew(0, 0);
    -moz-transform: 	rotate(-32deg) skew(0, 0);
    -o-transform: 		rotate(-32deg) skew(0, 0);
    -ms-transform: 		rotate(-32deg) skew(0, 0);
    transform: 			rotate(-32deg) skew(0, 0);
    left: -13px;
    }
    
    .footer_arrow .arrow-right-small{
    -webkit-transform: 	rotate(32deg) skew(0, 0);
    -moz-transform: 	rotate(32deg) skew(0, 0);
    -o-transform: 		rotate(32deg) skew(0, 0);
    -ms-transform: 		rotate(32deg) skew(0, 0);
    transform: 			rotate(32deg) skew(0, 0);
    right: -13px;
    left:auto;
    }
     .footer_arrow div, .footer_arrow .inner_content {
        background-color: #816a99;
        color: #fff; 
        border-color: #816a99;
        border-top-color: rgb(129, 106, 153);
        border-right-color: rgb(129, 106, 153);
        border-bottom-color: rgb(129, 106, 153);
        border-left-color: rgb(129, 106, 153);
    }
    

    Here is an example I quickly did using a code block element at the bottom of a page, which gives you the idea, but also made me realize that using a custom full width widget would work better.
    2018-04-09_213450

    Best regards,
    Mike

    in reply to: Gallery when loading wrong image size #939535

    Hey codecreative,
    I have found it is this code in your css, which maybe in your “General Styling > Quick CSS field” or in your child theme “style.css” please check and remove:

    .page-id-216 img {
      max-height:436px!important;
    }

    Best regards,
    Mike

    in reply to: Hide Horizontal Divider After Blog Post #939534

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

    Best regards,
    Mike

    in reply to: Enfold theme edit corrupt? #939533

    Hey lackformkleber,
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Phone # on Android Not Working Properly #939532

    Hey KellyKilgallon,
    On your page your phone is coded like this:

    <a href="tel: (732) 502 0100">732.502.0100</a>

    where in this case the ( & ) & spaces is braking the code, please try:

    <a href="tel:732-502-0100">(732) 502-0100</a>

    Please read this for more on this topic

    Best regards,
    Mike

    Hey Veaceslav,

    Best regards,
    Mike

    in reply to: Website Crashes after newest update #939528

    Hey mcraig77,
    As you pointed out, your site seems to be down. Can you ask your webhost to update your PHP to v7, as this may solve.
    Or can you ask your webhost to restore your site with the last backup?

    Best regards,
    Mike

    in reply to: Can not view or edit a Post in backend #939526

    Hi,
    Thank you for sharing your solution, We have seen other issues with Cloudflare, but your detailed report will help, Thank you.

    We will close this now. Thank you for using Enfold.
    For your information, you can take a look at Enfold documentation here
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Button styling #939521

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Plain text instead of Logo (image) #939519

    Hi,
    Please try either of the two solutions on this page: https://kriesi.at/support/topic/text-instead-of-logo-in-header-2/#post-486468

    Best regards,
    Mike

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Enfold child theme function.php #939504

    Hi,
    Try adding this to your functions.php

    
    function avia_change_image_size_array() {
    global $avia_config;
    $ avia_config ['imgSize'] ['widget'] = array ('width' => 36, 'height' => 36); // small preview pics eg sidebar news
    $ avia_config ['imgSize'] ['square'] = array ('width' => 920, 'height' => 690); // small image for blogs
    $ avia_config ['imgSize'] ['featured'] = array ('width' => 1500, 'height' => 430); // images for fullsize pages and fullsize slider
    $ avia_config ['imgSize'] ['featured_large'] = array ('width' => 1500, 'height' => 630); // images for fullsize pages and fullsize slider
    $ avia_config ['imgSize'] ['extra_large'] = array ('width' => 1500, 'height' => 1500, 'crop' => false); // images for fullscrren slider
    $ avia_config ['imgSize'] ['portfolio'] = array ('width' => 495, 'height' => 400); // images for portfolio entries (2.3 column)
    $ avia_config ['imgSize'] ['custom'] = array ('width' => 450, 'height' => 338); // images for portfolio entries (2.3 column)
    $ avia_config ['imgSize'] ['portfolio_small'] = array ('width' => 260, 'height' => 185); // images for portfolio 4 columns
    $ avia_config ['imgSize'] ['gallery'] = array ('width' => 920, 'height' => 690); // images for portfolio entries (2.3 column)
    $ avia_config ['imgSize'] ['magazine'] = array ('width' => 920, 'height' => 690); // images for magazines
    $ avia_config ['imgSize'] ['masonry'] = array ('width' => 920, 'height' => 690, 'crop' => false); // images for fullscreen masonry
    $ avia_config ['imgSize'] ['entry_with_sidebar'] = array ('width' => 920, 'height' => 690); // big images for blog and page entries
    $ avia_config ['imgSize'] ['entry_without_sidebar'] = array ('width' => 920, 'height' => 690); // images for fullsize pages and fullsize slider
    $ avia_config ['imgSize'] = apply_filters ('avf_modify_thumb_size', $ avia_config ['imgSize']);
    }
    add_action( 'init', 'avia_change_image_size_array');

    Best regards,
    Mike

    in reply to: Enfold child theme function.php #939154

    Hey forever_prodotti,
    Try to wrap your code into a function and use the init hook to add your thumbnail size to the avia_config array: overwrite the avia_config array after the main theme functions.php is loaded

    Best regards,
    Mike

    in reply to: Thumbnail is displayed in wrong format. #939152

    Hi,
    Thank you for the login, but please check the link as it doesn’t have a top-level domain, such as .com, which I can see isn’t yours as it is for sale.

    Best regards,
    Mike

    in reply to: Color sections disappears! Please help me fix it :-) #939148

    Hi,
    Thank you for your feedback, please let us know if you run into future issues that we can assist with.
    Have a great day!

    Best regards,
    Mike

    in reply to: Plain text instead of Logo (image) #939145

    Hi,
    Thank you for the login, but it doesn’t seem to have admin access, as I can’t see your theme options.
    When debugging, the source of the logo shows as (unknown) which tells me that a invalid value is probably set in the theme options.
    Please look at: Enfold Theme Options > Logo
    2018-04-09_065222
    and clear any value, or choose a new one.
    Also look at: Enfold Theme Options > Header > Transparency Options > Transparency Logo
    2018-04-09_065436
    and clear any value, or choose a new one.

    Best regards,
    Mike

    in reply to: Button styling #939134

    Hi,
    Please try:

    .main_color .avia_ajax_form input[type='submit'] {
    background-color: #1b1166!important; 
    }
    
    .main_color .avia_ajax_form input[type='submit']:hover {
    background-color: #d62a2a!important; 
    }

    Best regards,
    Mike

    Hi,
    Sorry our posts must have crossed, shall we close this then?

    Best regards,
    Mike

    in reply to: Enfold styles not loading #939127

    Hi,
    Glad to hear, we will close this now. Thank you for using Enfold.
    For your information, you can take a look at Enfold documentation here
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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

Viewing 30 posts - 28,231 through 28,260 (of 34,945 total)