Forum Replies Created

Viewing 30 posts - 9,061 through 9,090 (of 10,428 total)
  • Author
    Posts
  • Hey!

    The script targets the most common breakpoint for portable devices at 768px (tablet portrait) and 480px (mobile portrait) mode.

    For other breakpoints like iPad landscape etc please use CSS media Queries

    https://css-tricks.com/snippets/css/media-queries-for-standard-devices/

    for example

    /* Portrait and Landscape */
    @media only screen 
      and (min-device-width: 768px) 
      and (max-device-width: 1024px) 
      and (-webkit-min-device-pixel-ratio: 1) {
    
    .logo img {
         width:200px!important;
         height:auto!important;
    }
    
    }

    Best regards,
    Vinay Kashyap

    in reply to: Added Pages, But Not Showing in the Right Place #594733

    Hi!

    FTP account is different from WP account.

    You have to login to your hosting control panel and create a FTP access.

    Please check the link below for more info
    https://my.bluehost.com/cgi/help/ftpaccounts

    hope this helps :)

    Regards,
    Vinay Kashyap

    in reply to: Color Section Background Image Issue #594732

    Hey suemaguire!

    To make the background image fit the whole space please select “stretch to fit” in background repeat option :)

    Regards,
    Vinay Kashyap

    in reply to: LayerSlider purchase code #594729

    Hi laptophobo!

    Please ignore that message.

    Layerslider is bundled up with the theme and it get’s updated when you update the theme :)

    Best regards,
    Vinay Kashyap

    in reply to: Autoresponder text not working #594727

    Hey asherbarrett!

    We are working on your ticket please wait while we update the results here soon.

    We created a new page and tested the autoresponder is working but the autoresponder email is getting delivered in my spam box in my gmail . Please contact your hosting provider to know how you can get their email server recognised as not a spam mail :)

    Cheers!
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Calendar block is not totally displayed #594726

    Hi Elsa!

    Please share the link to the page where we can see the element in question so we can help you better :)

    Cheers!
    Vinay Kashyap

    in reply to: Trouble with Background Color of Mega Menu Sub Menu #594725

    Hi!


    @begrafiks
    thank you for your help! we really appreciate it :)


    @phylicia
    please let us know if you have any questions we are happy to help you.

    Best regards,
    Vinay Kashyap

    in reply to: Child Theme has no effect #594723

    Hi!

    Glad we could help you with this. Please check it out when you have time and let us know if you have any questions.

    Thank you for using Enfold :)

    Regards,
    Vinay Kashyap

    in reply to: Limit the excerpt length for all portofolio items #594532

    Hey!

    Sorry for the delay we have been crazy busy off late.

    Glad you got it sorted. jQuery is amazing isn’t it :)

    Please feel free to get in touch with us if you have any questions.

    Thank you for using Enfold :)

    Regards,
    Vinay Kashyap

    in reply to: 3 column layout issue in tablet view #594523

    Hey!

    Ok please add the original code back…. we would like to take a closer look and fix it for you please create a temporary user with ‘administrator’ role and share in private content with permission to deactivate all plugins and add custom code if necessary to help you resolve this issue.

    Best regards,
    Vinay Kashyap

    in reply to: Child Theme has no effect #594498

    Hey!

    We are working on your ticket please wait while we update the results here soon.

    You don’t need to add any code in child theme for it to work only in special cases you need to add a function’s code.
    The code Yigit gave is to connect the shortcode.js with child theme but there was some plugin which was not allowing the child theme to work properly. We uploaded a new Child theme that did not make any effect but after disabling the plugins the child theme works fine…

    For testing purpose we added this code in child theme styles.css via appearance > editor > styles.css

    
    #top .main_color input[type="text"], #top .main_color input[type="password"], #top .main_color textarea {
        background-color: #FFEB3B!important;
    }

    The above code will change the contact form input field to gold color.

    To find the plugin in conflict please follow the below steps

    1. Goto plugins page > Deactivate all active Plugins
    2. Updated WordPress and Enfold to latest version if you have not.
    3. Activate one plugin at a time… refresh the page and check for the issue.
    4. Make sure the plugins are all updated

    Regards,
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Contact Form doesn't work #594389

    Hi DamarisBQ!

    Couple of troubleshooting steps you need to do to find a solution…

    1. test it with email ID’s that end with gmail or yahoo if you get it delivered correctly in inbox.
    2. Test it with email ID’s that end with your domain.com for example if you have a website by name DamarisBQ.com test it with email@DamarisBQ.com and other emails that don’t get delivered to you which domain name it ends with?
    3. Did you check the spam folder?

    Chances are your hosting company is rejecting the emails from selected domain names please check with the hosting company with the information which domain names are not getting delivered to you.

    Regards,
    Vinay Kashyap

    in reply to: Google icons #594378

    Hey!

    If you like to upload custom svg icons feel free to use a plugin like https://wordpress.org/plugins/svg-support/ upload it to WP media library and use it like an image ;)

    Glad we could help you!

    Thank you for using Enfold :)

    Regards,
    Vinay Kashyap

    in reply to: thumbnail pop-up picture #594377

    Hey Ivne!

    please use the below CSS in Enfold > General Styling > Quick CSS

    Change the background image link and add more nth-child(X) if you have more menu items.

    .nested_nav .page_item a:hover::after{
      position:absolute;
      z-index:100000; 
      left:0px;
      top:50%;
      transform:translateY(-50%);
    } 
    
    .nested_nav .page_item:nth-child(1) a:hover::after{
      content:url('http://kriesi.at/themes/enfold-construction/files/2015/10/urban-development-36x36.jpg'); 
    } 
    .nested_nav .page_item:nth-child(2) a:hover::after{
      content:url('http://kriesi.at/themes/enfold-construction/files/2015/10/urban-development-36x36.jpg'); 
    } 
    .nested_nav .page_item:nth-child(3) a:hover::after{
      content:url('http://kriesi.at/themes/enfold-construction/files/2015/10/urban-development-36x36.jpg'); 
    } 
    .nested_nav .page_item:nth-child(4) a:hover::after{
      content:url('http://kriesi.at/themes/enfold-construction/files/2015/10/urban-development-36x36.jpg'); 
    } 
    

    Regards,
    Vinay Kashyap

    in reply to: Image Caption Overlay #594354

    Hi!

    Glad we could help!

    Thank you for using Enfold :)

    Cheers!
    Vinay Kashyap

    Hey!

    Glad you got this sorted :)
    please feel free to contact us if you have any questions.

    Regards,
    Vinay Kashyap

    in reply to: SPAM when contacted from website contact page #594350

    Hey Jihad!

    SPAM is controlled by your hosting provider the theme only send the message in the email to the email server. The rest of the job is done by the email server please contact your hosting provider. Your hosting company might have black listed some internet providers due to which this might be happening.

    Regards,
    Vinay Kashyap

    in reply to: How to style div #594346

    Hey Elsa!

    Please try this code in Quick CSS

    
    .woocommerce-password-strength.bad {
      color:red!important;
    }

    Please feel free to replace red with your own color :)

    Best regards,
    Vinay Kashyap

    Hi mazeika!

    To hide the button please add display:none css property to the button class

    .button-class-name {
        display: none;
    }

    If you have any question please get back to us with the link to the page where we can inspect the element in question.

    Cheers!
    Vinay Kashyap

    Hey!

    The portfolio filters won’t show if the portfolio catogery is empty. but you have added a minimum of 1 item in each of 38 portfolio catogery and all of them are visible here

    Looks like you got it sorted please let us know if you have any questions.

    Best regards,
    Vinay Kashyap

    in reply to: Change color on captions #594337

    Hi Charlotte!

    To make all the caption white please use the below code in Quick CSS

    
    .slideshow_inner_caption h2 {
        color:#FFF!important;
    }

    Cheers!
    Vinay Kashyap

    in reply to: Custom CSS in Color Section vs. in Column element #594335

    Hey!

    No you don’t have to do any thing other than setting up the ID’s in color section and menu items. I would like to take a closer look please create a temporary user with ‘administrator’ role and share in private content with permission to deactivate all plugins and add custom code if necessary to help you resolve this issue.

    Cheers!
    Vinay Kashyap

    Hi!

    We cannot say for sure until we see as it can be included in more than one way…

    But try this

    Goto Appearance > Widgets > footer (check for the facebook like code)

    If it’s not there

    Goto Enfold options > Footer > Copyright (See if any code is added here)

    If it’s not there it might have been hard coded we will need access to check it on your site.

    Cheers!
    Vinay Kashyap

    in reply to: Enfold – 2 Column Portfolio in Mobile View #594333

    Hi ramirezo!

    Please use the below css to have 2 col portfolio in mobile view

    @media (max-width: 480px) {
    #sb_instagram.sbi_col_4 #sbi_images .sbi_item, #sb_instagram.sbi_col_5 #sbi_images .sbi_item{
        width: 50%!important;
    }}

    Best regards,
    Vinay Kashyap

    in reply to: Hide a color box background image on smartphone #594329

    Hi!

    Don’t worry at all enfold is so easy to use you will get around these options in no time :)

    Drag and drop a color section then click on it to see the below screen and add you ID in the ID section

    in this line ” background: #000 url(image.jpg); ” only replace image.jpg with the image path example if your image is on path http://kriesi.at/wp-content/themes/kriesi/images/logo.png

    The code for it will be

    ” background: #000 url(http://kriesi.at/wp-content/themes/kriesi/images/logo.png); ”

    Regards,
    Vinay Kashyap

    in reply to: Remove Grey Box on Posts #594324

    Hey!

    Please use this code

    .blog-meta .small-preview {
         background-color:transparent!important;
    }
    

    Regards,
    Vinay Kashyap

    in reply to: Google Font #594320

    Hi!

    To easily manage google fonts please use one of the available plugins here https://wordpress.org/plugins/search.php?q=google+font

    this one is good too https://wordpress.org/plugins/wp-google-fonts/

    Cheers!
    Vinay Kashyap

    in reply to: Sale Badge Align Problem #594317

    Hi kyagi!

    We don’t see any sale badge on the links you have provided. Once you have the sale badge on the page appear let us know we can help you with some custom CSS to align it as per your request.

    Best regards,
    Vinay Kashyap

    in reply to: Video Lightbox linked to Icon Box #594313

    Hey!

    Please note the css should be as below you missed the URL before the image path :)

    Request you to create new tickets for new issues sow e can keep the focus on main topic.

    .single-product{
        background-image: url("http://www.femina-plus.com/wp-content/uploads/2016/03/Orchids-100dpi-55.jpg");
        background-size:cover;
    }
    

    Regards,
    Vinay Kashyap

    in reply to: Banner as logo #594311

    Hey!

    To move the menu away from the logo please add the below CSS in Quick CSS adjust value 10 to suit your design.

    .html_header_top.html_bottom_nav_header .main_menu {
        margin-top: 10vh!important;
    }
    

    Best regards,
    Vinay Kashyap

Viewing 30 posts - 9,061 through 9,090 (of 10,428 total)