Forum Replies Created

Viewing 30 posts - 25,021 through 25,050 (of 34,586 total)
  • Author
    Posts
  • in reply to: unable to udate to 4.4.1 #1007348

    Hi,
    Glad to hear, we will close this now. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: How do I make the Facebook icon blue? Like the hover effect #1007347

    Hey johnworfin,
    Please try this code in the General Styling > Quick CSS field:

    #top #wrap_all .av-social-link-facebook a {
        color: #fff !important; 
        background-color: #37589b !important; 
    }

    Best regards,
    Mike

    in reply to: Mobile Hamburger Icon not showing #1007346

    Hey 4colorflyers,
    The mobile menu was being hidden by some custom css in your custom css plugin, on line 279 – 286:

    @media only screen and (max-width: 1100px) {
    	nav.main_menu {
    		display: none !important;
    	}
    	#advanced_menu_toggle, #advanced_menu_hide {
    		display: block !important;
    	}
    }

    I commented it out for you.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: H3 heading that has a link in it is completely black #1007344

    Hi,
    You can replace the word “blue” with your custom color, like this:

    h3 a{
    color: #59c3c5 !important;
    }

    Best regards,
    Mike

    in reply to: Internal Server Error in staging website. #1007342

    Hi,
    We will close this now. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Change "Element Visibility" breakdown dimensions #1007341

    Hey Deanna,

    The easiest way to do this would be yo use a media query for your css, for example,
    you would first add a custom class to your element, (I assume that you have enabled Enfold Theme Options > Layout Builder > Show element options for developers) such as: “hide-on-desktop”
    then add the rule to your Quick CSS:

    @media only screen and (min-width: 1200px) {   
    .hide-on-desktop {
    display: none !important;
    }
    }

    Please give this a try, if you want assistance with a certain element on your site, please include a link to the element in question.

    Best regards,
    Mike

    in reply to: style.css in childtheme not recognized? #1007338

    Hey Asrada,
    I took a look at your site and tested by trying to make some of your text red, which didn’t work. So I realized that your Enfold Theme Options > Performance > JS & CSS file merging and compression was enabled.
    I disabled this setting and then your css worked fine.
    Please clear your browser cache and check.

    Please leave your merged css disabled until your are done creating your site. Merged files are meant to be used to make your site faster, once you are done creating the site.
    Also, please note that the theme serves your css dynamically though enfold-child.css in the /wp-content/uploads/dynamic_avia/ folder, and when you add css directly in your child theme style.css it is not updated until you save the theme settings.
    To force this, please save your theme settings (big blue button), if you can’t click this button, please add a blank space in the Enfold Theme Options > General Styling > Quick CSS field, then the blue theme settings button will be clickable.

    While you are developing, the easiest solution is to add your css into the Enfold Theme Options > General Styling > Quick CSS field, where the changes will show right away.
    Please let us know if we can assist further.

    Best regards,
    Mike

    in reply to: Destination Folder already exists? #1007336

    Hey l7network,
    If I understand correctly, you are trying to upload the newest version of Enfold though the WordPress > themes > add new option?
    This will not work to update the theme, We can help, but let me ask if you are using a child theme?
    When you refer to the developer customizing the theme, do you believe that core theme files were edited, or were the theme options used to customize your site? Such a colors, font formatting, general layout, images?

    If you are using a child theme and/or no core theme files were edited, then you can update your theme via FTP, basically you will, look for the “enfold” folder at /wp-content/themes/enfold/ and rename to “enfold-old” then upload the new version as the folder “enfold”
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.
    Once you have cleared your browser cache and tested that your site is working correctly, you can delete the old folder “enfold-old”.
    If for some reason you want to go back to the old version, simply remove the new folder and change the name of “enfold-old” back to “enfold”

    I would also recommend first making a backup of your site with the tools your webhost provides.
    Please let know if this helps, or if your situation is different, so we can assist further.

    Best regards,
    Mike

    in reply to: Theme Question #1007335

    Hey Brent,
    If I understand correctly, you are asking about the shortcodes used to create the demos.
    All of the shortcodes that create the demo layouts can be used with any of the demos, so if you like a certain element layout or styling that is in one demo, you can copy it to a different demo, you can mix & match.

    To copy the element layouts & stying from the demos, you can Enable the Avia Layout Builder Debugger and copy the shortcodes.

    I recommend using the advanced layout builder to delete all of the elements from a page until you are left with the one element you want to copy, and then copy the remaining shortcode.
    It might be easier than trying to judge the starting and ending tags in the shortcodes.
    I hope I explained this well, and this was helpful.
    If I miss-understood, please try explaining again.

    Best regards,
    Mike

    in reply to: Reduce Line Height on sub-menus #1007334

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

    .html_header_sidebar #header .av-main-nav > li ul.sub-menu li > a {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    Best regards,
    Mike

    Hi,
    Glad we were able to help, shall we close this then?

    Best regards,
    Mike

    in reply to: LayerSlider – Demo Slider Missing #1007332

    Hi,
    @hdurand
    I will post them here for 24 hrs, please reply when you have them so we can close this thread.

    Best regards,
    Mike

    in reply to: Datepicker Format in contact form #1007085

    Hi,
    Sorry, I was unable to reproduce the error on my localhost, do you want to try again with the newest version?

    Best regards,
    Mike

    in reply to: Enfold auto-update not working #1006873

    Hi,
    Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Delete items in Blog post gallery #1006872

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

    .slide-content .blog-categories.minor-meta,.slide-entry .entry-footer  {
    display: none !important;
    }
    a.more-link:before{
        content: "Läs mer" !important; 
        font-size: 16px !important; 
    }
    
    a.more-link {
        font-size: 0 !important; 
    }
    

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Hide Title Bar in Mobile View #1006866

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

    For your information, you can take a look at Enfold documentation 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: Content Slider Titles #1006863

    Hi,
    Please try this code in the General Styling > Quick CSS field, or in the WordPress > Customize > Additional CSS field:

    .avia-content-slider-element-container .slide-entry h3.slide-entry-title.entry-title {
    height: 35% !important;
    }

    Please see the screenshot in Private Content area.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Content lost when updating a page #1006861

    Hey Oli,
    Typically this is due to unclosed tags. I found that you have a unclosed “strong” tag in your special heading title:
    2018-09-06_201022
    Please try correcting this. Also check your other titles that you added html to.

    Best regards,
    Mike

    Hi,
    Please try this css:

    #top #wrap_all .header_color #menu-item-3363.av-menu-button-colored > a .avia-menu-text:after {
    content: ' ▾';
    background-color: #08336e !important; 
    }

    2018-09-06_180529

    Best regards,
    Mike

    in reply to: Datepicker Format in contact form #1006839

    Hi,
    Perhaps there is a caching issue, because when I visit your site and click your date field, the datepicker calendar displays.
    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Background Picture (Scroll) over whole page #1006837

    Hi,
    Thanks for sharing your solution, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Header transparency color #1006834

    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
    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: Responsive table / table on mobile device #1006832

    Hi,
    Glad we could help, we will close this now. This will be available for all users because it will be indexed and searchable via Google and the forum search.
    Have a great day!

    Best regards,
    Mike

    in reply to: Adjust subtitle testimonial #1006830

    Hi,
    Thanks great news!
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Header transparency color #1006828

    Hi,
    I added this css:

    #header_main,.container.av-logo-container{
        border-width: 0px !important; 
        border-style: none !important; 
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    To change the third link in the breadcrumbs to one of your choice,on all pages, no matter the category, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_breadcrumb_link(){
      ?>
      <script>
      jQuery(window).load(function(){
      jQuery(".breadcrumb-trail").find("span:nth-child(6) a").attr("href", "http://www.google.com/");
      });
      </script>
      <?php
      }
      add_action('wp_footer', 'custom_breadcrumb_link');

    2018-09-06_170002

    Please adjust the url to suit.

    Best regards,
    Mike

    in reply to: Enfold auto-update not working #1006818

    Hi,
    Please try updating via ftp.
    Please note that if you update via FTP, you will need to remove the old theme folder, at /wp-content/themes/ ( “enfold” ) first then upload the new “enfold” folder at /wp-content/themes/
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Another option is to rename the “enfold” folder at /wp-content/themes/ to “enfold-old” then upload the new version as the folder “enfold”
    Once you have cleared your browser cache and tested that your site is working correctly, you can delete the old folder “enfold-old”.
    If for some reason you want to go back to the old version, simply remove the new folder and change the name of “enfold-old” back to “enfold”

    Best regards,
    Mike

    Hi,
    The dev team has identified a possible issue with the Theme Forest updater and has released a fix.

    I would recommend updating via FTP, Please note that if you update via FTP, you will need to remove the old theme folder “enfold” first then upload the new “enfold” folder at /wp-content/themes/enfold/
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Best regards,
    Mike

    in reply to: Enfold update error #1006581

    Hi,
    Glad that this helped. As I understand it, the wordpress updater error seems to be due to a change with Envato, which will be included in the next update, but going forward, if updating via ftp please don’t try to overwrite the theme folder.

    *Short Answer*
    Yes, I would recommend updating via ftp.

    *Long Answer*
    I recommend updating via ftp, but if your sites are a few versions old, I would rename the “enfold” folder to “enfold-old” and then upload the new “enfold” folder. This way you can see how your sites behave with the new version and if there are any conflicts you can remove the new folder and rename the “enfold-old” back to “enfold”.

    But I also recommend saving a copy of your theme settings, and making a backup of your site via your webhost’s backup tool.
    I would also check your webhost to see if you have the one click staging site option, this is a option in most cPanels to create a staging clone of your site so you can test on it and your site will stay up and running. You can always ask your webhost to help you with setting this up if you want.

    Here are some screenshots of what it would look like:
    staging-1
    staging-2

    Hope this helps :)

    Best regards,
    Mike

    in reply to: Responsive table / table on mobile device #1006568

    Hi,
    Glad that we could help. But by default, for mobile the title row is supposed to be hidden and then the title is added via the “:before” to the cells because the columns are stacked. Please see the last table on the demo
    But I guess that it depends on how big a table will be & how someone would like to see it, I just wanted to show why it was setup that way.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

Viewing 30 posts - 25,021 through 25,050 (of 34,586 total)