Forum Replies Created

Viewing 30 posts - 2,521 through 2,550 (of 10,428 total)
  • Author
    Posts
  • in reply to: Extend Link Dialog with MediaLibrary for file downloads #932494

    Hi,

    Please use the regular button and add the pdf or zip file link. I have created a shortcode for you so you can just copy it and change the pdf link :)

    [av_button label='Download PDF' link='manually,http://www.pdf995.com/samples/pdf.pdf' link_target='_blank' size='large' position='center' icon_select='yes' icon='ue86f' font='entypo-fontello' color='green' custom_bg='#444444' custom_font='#ffffff' admin_preview_bg='']

    Let us know if you have any questions.

    Best regards,
    Vinay

    in reply to: All elements disappearing after updating changes #932492

    Hey mrgoodbeans,

    It is possible the theme is not updated correctly and some files are corrupt. Please access the “wp-content/themes” folder via FTP and delete it (Do not rename it as enfold.old) It should be completely deleted and then upload a fresh copy of the theme in the same location. This should fix the issue for you :)

    Please make sure to back up your files in case you need to restore it back.

    For more info please check the FTP INSTALL section in this link http://graphitivity.com/enfold/docs/how-to-install-enfold-theme/

    Best regards,
    Vinay

    Hi!

    This is a bit strange issue.
    To reproduce the issue just type a line of text and switch between the visual and text mode in the text editor to see some text disappear and extra inline styles being added.

    I suspect that some files are not updated properly which is causing this issue.

    The fix may be very simple please access the wp-content/themes/ folder via FTP or the file manager from the hosting control panel.

    Completely delete the “enfold” folder (do NOT rename the folder and leave it there) and upload a fresh copy of the theme.

    Please make sure you have a backup of the files just in case if you need to restore.

    Regards,
    Vinay

    in reply to: Media Query not working for me #932486

    Hey raulangeli,

    Please feel free to add the border and other styles to the below code and add it to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    @media only screen and (max-width: 1100px) {
    #top .cada-espacio {
    	font-size:3vw;	
    	line-height:100px;
    	display:flex;
    	justify-content:center;
    	align-items:center;
    
    }}
    
    @media only screen and (max-width: 767px) {
    #top .cada-espacio {
    	background:gold;
    	line-height:normal;
    }
    }
    

    Best regards,
    Vinay

    in reply to: fold down button #932483

    Hey diefleischerei,

    You can show/hide content with a little bit of custom code. Please refer to the “Show hide icon box content” section on this link http://graphitivity.com/enfold/docs/icon-box

    Best regards,
    Vinay

    in reply to: missing icons in iconlist – no HR-Element #932480

    Hi,

    Glad we could help!
    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: remove animation Icon #932479

    Hi,

    Did you get this sorted? I don’t see the issue you mentioned on the above link.

    Best regards,
    Vinay

    in reply to: Topbar and Burger Menu sticky on mobil #932476

    Hi,

    Sorry, I thought it was the logo area you were referring to but it appears you are using a slider to design the site header.
    It works nicely as it is right now. To make it sticky will be tricky because a fixed position element will let other elements around it take its place unless it is in a separate container it is not possible to perfectly align a fixed element in a relationship with its neighbour. (This will block the image below so you may have to manually add a white space element manually for each page).

    Add the below CSS to Enfold > General Styling > Quick CSS

    @media only screen and (max-width: 767px) {
    
    .av-logo-container {
    	position: fixed;
    	top:0!important;
    	background: #f66f00;
    	right:0;
    	left:0;
    	z-index:999999!important;
    }
    
    .avia-fullwidth-slider.avia-builder-el-0 {
        border-top: none;
        position: fixed;
        top: 50px;
        z-index: 99;
    }
    
    }

    If you don’t like the result please try adding the banner as a header background image from enfold options
    Enfold > General Styling > Logo area > Background Image

    Then Select a suitable header layout from
    Enfold > Header > Header Layout > Menu and Logo Position

    Set a custom height for the header from
    Enfold > Header > Header Layout > Header Size

    Best regards,
    Vinay

    • This reply was modified 7 years, 4 months ago by Vinay.
    in reply to: I can not import Enfold 2017 #932472

    Hi,

    The login credentials are incorrect. Please, install a plugin like “WordPress Database Reset” and remove the existing demo data. Using this plugin will clear all the pages/posts and reset your site. Please try importing the XML file again and it should work for you :)

    Best regards,
    Vinay

    in reply to: Sticky Special Header #932471

    Hi,

    To make the logo area sticky please select “Sticky Header” and “Shrinking Header” From Enfold > Header > Header Behaviour

    Best regards,
    Vinay

    Hi,

    As we discussed earlier touch device do not support hover feature. As soon as you click on the link the users will be re-directed to a different section of the page. If you see an example that you like on any site please share it and we will see what best we can do for you to create a similar effect :)

    Best regards,
    Vinay

    in reply to: Fullscreen menu with gaussian blur effect #931991

    Hey itransact,

    The blur filter will blur the elements inside the container to which you apply. If you apply it to the overlay which is “av-burger-menu-ul” it will blur the menu elements.

    If you are looking to blur the background when the navigation opens it requires custom js.

    Add this code to the Quick CSS section under Enfold > General Styling

    .blurMe{
      -webkit-filter: blur(4px);
              filter: blur(4px);
    }
    

    Add this at the very end of your themes / child theme’s functions.php file:

    
    
    function avia_custom_blurry(){
    ?>
     <script>
    jQuery('.av-hamburger').on('click', function () {
        jQuery("#main").toggleClass('blurMe');
    jQuery("#main, .logo").toggleClass('blurMe');
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'avia_custom_blurry');

    Best regards,
    Vinay

    in reply to: Image above header #931982

    Hi,

    The header widget images are really big to sit in there. Please hide one of them on the mobile device as Ismael suggested.

    I have added the below code to the existing media query please review the site.

    .responsive #top #wrap_all #header {
        margin-top: 655px!important;
    }
    
    .responsive #top #wrap_all #header .widget {
    	position: absolute;
    	margin-top: -655px;
    	left: 0;
    	right: 0;
            background:#fff;
    }

    Best regards,
    Vinay

    Hi!

    Thank you for the clarification. Even if we use custom CSS the hover feature will not be supported in touch devices due to the browser limitations. However, if you do not like the titles to show on the mobile device we can hide them using custom code.

    
    @media only screen and (max-width: 767px) {
    #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content {
    display:none;
    }}

    Best regards,
    Vinay

    • This reply was modified 7 years, 4 months ago by Vinay.

    Hi,

    I have activated the overlay from the masonry element options. Please review the site now :)

    The following code was removed from the quick CSS to avoid conflict.

    /* Masonry overlay */
    
    .av-masonry-entry:before {
    content: attr(title);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;
    text-align: center;
    line-height: 180px;
    opacity: 0;
    font-weight: bold;
    font-size: 18px;
    transition: all linear 0.4s;
    }
    
    .av-masonry-entry:hover:before {
    opacity:1;
    transition: all linear 0.4s;
    }
    .av-masonry-entry:hover .av-masonry-outerimage-container:before {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    content:'';
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: all linear 0.4s;
    }

    Best regards,
    Vinay

    in reply to: Portfolio grid text overlay #931612

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    /* Portfolio overlay with title */
    
    /* Disable default animation */
    #top .grid-entry  a:hover .image-overlay .image-overlay-inside {
        	animation: none;
        }
    
    /* Overlay */
    #top .grid-entry .image-overlay .image-overlay-inside:before {
    	content:'';
        position: absolute;
        background: #222;
        height: 100%;
        width: 100%;
        border-radius:0;
        top: 0;
        left: 0;
        margin: 0;
        }
    /* Remove default title below */
    .grid-content .avia-arrow,
    #top .grid-entry  .grid-content {
    	display: none;
    }
    
    /* Display title on hover*/
    .grid-entry a:hover:before {
    	content: attr(title);
    	position: absolute;
    	width: 100%;
    	z-index: 1000;
    	text-align: center;
    	opacity: 1;
    	font-size: 18px;
    	color: #ffffff !important;
    	top: 50%;
    	transform: translateY(-50%);
    	animation: avia-fadein 0.75s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)  !important;
    }
    

    Best regards,
    Vinay

    in reply to: Portfolio grid text overlay #931559

    Hey jojoba007,

    This modification requires some time. Please wait while I work on your ticket and update you with the results here.

    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Header Adjustments / Tweaks #931548

    Hi,

    We have added the below CSS to Quick CSS section. Please review the site :)

    /* Logo margin*/
    #top .logo,
    #top .logo a{
    	margin:15px 0;
    }
    
    /* Center menu */
    .av-main-nav-wrap ul {
        display: flex;
        justify-content: center;
    }
    /* Social icon size*/
    #top #header .social_bookmarks li a {
        font-size:18px;
    }

    Best regards,
    Vinay

    in reply to: missing icons in iconlist – no HR-Element #931529

    Hey Bernd,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Vinay

    in reply to: sticky menu and logo on mobile #931528

    Hey oscarmo,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    /* Sticky header on mobile */
    @media only screen and (max-width: 767px) {
      .responsive #top #main {
      	/* Margin top value should be equal to header height*/
        margin-top: 180px;
      }
      .responsive #top #wrap_all #header {
        position: fixed;
      }
    }
    

    Best regards,
    Vinay

    in reply to: Hide spinning wheel on slider background videos? #931525

    Hi,

    For testing purpose could you please delete the loading gif from wp-content/themes/enfold/images/layout/preload-dark-grey-big.gif via FTP or File Manager on your hosting control panel.

    Let us know if this works.

    Best regards,
    Vinay

    in reply to: Logo Area Transparency #931519

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    #top .header_bg {
        background: #FFF!important;
    }
    @media only screen and (min-width: 768px) {
    #top .header_bg {
        background: #FFF!important;
    }}
    

    Hope this helps :)

    Best regards,
    Vinay

    in reply to: icons in top bar (telephone+email) #931517

    Hi,

    Please add the correct phone/email info in the below HTML and paste(replace old code) it in Enfold > Header > Extra Elements > Phone Number or small info text:

    
    <a class="phone-info-top" href="mailto: (Email address hidden if logged out) "> Email us </a>
    <a class="phone-info-top" href="tel:5555555555">Call us 555-555-5555 </a>
    

    Add the below CSS for multiple phone numbers to show up on same a line.

     
    /* Phone info */
    .phone-info-top {
      display:inline-block!important;
      padding:4px 10px;
    }
    

    Best regards,
    Vinay

    in reply to: Break points #931512

    Hey Colin,

    I saw your site but it’s not clear what you are trying to achieve?

    To hide something on desktop please use the class “mobile-only”

    First, enable Custom CSS class name support.
    Create your desktop view with all the elements in place.
    Below the desktop view element which you want to replace in mobile go ahead and create your element that should be shown in the mobile view.
    Hide the desktop view element by using the CSS class name “mobile-only”.
    Hide the desktop element in mobile view by using the CSS class name “desktop-only”.
    Finally add the custom CSS in Enfold > General Styling > Quick CSS or in your child theme styles:

     /*----------------------------------------
    // CSS 
    // Toggle view
    //--------------------------------------*/
    
    /* Desktop */
    
    .mobile-only{
    	display: none;
    }
    .desktop-only{
    	display: block;
    }
    /* Mobile */
    @media only screen and (max-width: 767px) {
    .mobile-only{
    	display: block!important;
    }
    .desktop-only{
    	display: none!important;
    }}

    Let us know if you have any questions.

    Best regards,
    Vinay

    in reply to: Header visibility and transparency help #931496

    Hi,

    For testing purpose, I have unchecked “Unsticky top bar” option from Enfold > Header > Header behavior >

    Please review the site if it is ok for you now? If not are you ok to activate shrinking header? Only then the header will get a class “header-scrolled” which we can use to position the header top bar with social icons when the page is scrolled. It is not otherwise possible to target the top bar using CSS when the page is scrolled.

    Best regards,
    Vinay

    in reply to: ENFOLD – Completeley customized header #931481

    Hi,

    To create a header as per your screenshot

    1. Select “Logo above menu below” from Enfold > Header > Header Layout > Menu and Logo Position

    2. Create a header widget area and check the header widget position section on this link http://graphitivity.com/enfold/docs/header

    3. Enable debug mode https://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    4. Create a fullwidth submenu element with burger menu option enabled and copy the shortcode to the widget area.

    Best regards,
    Vinay

    in reply to: Add a Downloadable PDF to my site #931461

    Hey SheriG,

    Please add a button element and set the link manually with the pdf link.

    Best regards,
    Vinay

    Hi!

    In that case please add a button element and set the link manually with the pdf link.

    Regards,
    Vinay

    in reply to: Enfold API key for multiple site #931445

    Hi,

    Yes, that is correct, it is always a good approach to have multiple API keys in case one of the API fails you do not have to face an issue on all the sites.

    Best regards,
    Vinay

    in reply to: Addin a 6th colomn to a color section #931442

    Hey rvga,

    To create more than 5 columns please follow the below steps:

    Drag and drop a color section.
    Add six or more 1/5 Columns inside the color section
    Give this color section a custom ID “six-columns”.
    Add the below CSS in Quick CSS or child theme styles.

    /*----------------------------------------
    // Six Columns
    //--------------------------------------*/
    
    #six-columns .flex_column.av_one_fifth {
    width: 15%;
    margin-left: 2%;
    }
    
    #six-columns .flex_column.first {
    clear: none!important;
    margin-left: 0!important;
    }
    
    #six-columns .column-top-margin {
    margin-top: 0 !important;
    }
    
    /* Two columns in mobile */
    
    @media only screen and (max-width: 768px) {
    #six-columns .flex_column {
        width: 48%!important;
        margin-left: 2%!important;
        margin-bottom: 2%!important;
    }}

    Best regards,
    Vinay

Viewing 30 posts - 2,521 through 2,550 (of 10,428 total)