Forum Replies Created

Viewing 30 posts - 25,111 through 25,140 (of 34,585 total)
  • Author
    Posts
  • in reply to: reference a custom class within another custom class #1004677

    Hi,
    To reduce your repeating css rules, you can add several classes to one rule by separating with a comma, like this:

    .imagecustomclass01,.imagecustomclass02,.imagecustomclass03 {…}

    Best regards,
    Mike

    in reply to: STOP COLUMNS BREAKING TO FULL SCREEN ON MOBILE SCREENS #1004675

    Hi,
    Is this going to be for the homepage only?
    I recommend adding a custom class or ID to each column element to have better control, but here is an example of overriding the column brake points for your page now:

    
    @media only screen and (max-width: 768px) { 
    #top.home .flex_column.no_margin.av_two_fifth {
        width: 40% !important; 
        float: left !important; 
    }
    #top.home .flex_column.no_margin.av_three_fifth {
        width: 60% !important; 
        float: right !important;
    }
    #top.home .flex_column.no_margin.av_two_fifth.avia-builder-el-11 {
        width: 40% !important; 
        float: left !important; 
    }
    #top.home .flex_column.no_margin.av_two_fifth.avia-builder-el-14 {
        width: 40% !important; 
        float: right !important;
    }
    }

    note that for your two 2/5 middle columns I used the element classes, but these change every time you update the page, so while it works as an example, you really should add custom classes.
    Also you will want to add some padding, but this should be a good starting point for you.

    Best regards,
    Mike

    in reply to: Specific css in page problem #1004667

    Hey strumpumpel,
    I took a look at your page and css and the first thing I noticed was your page id was in the wrong place in your css, I also recommend adding another id with the page id to the css to overcome the base css because it is using !important;
    Please try this css instead:

    @media only screen and (max-width: 667px) {
    .responsive #top .slideshow_caption h2 { font-size: 80% !important; padding-top: 3px !important;}
    .responsive #top.page-id-1097 #full_slider_1 .slideshow_caption h2 {padding-top: 9px !important;}
     .responsive #top.page-id-1293 #full_slider_1 .slideshow_caption h2 {padding-top: 11px !important;}
    }
    
    @media only screen and (max-width: 800px) {
    .responsive #top .slideshow_caption h2 { font-size: 70% !important; padding-top: 13px !important;}
     .responsive #top.page-id-1097 #full_slider_1 .slideshow_caption h2 {padding-top: 9px !important;}
     .responsive #top.page-id-1293 #full_slider_1 .slideshow_caption h2 {padding-top: 11px !important;}
    }

    Please clear your browser cache and check.
    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Mouse Over masonry elements in mobile #1004663

    Hi,
    As you point out there is no “hover” for touch devices, and in order to simulate this, or add touch events, will have to be done with jQuery. This would take some considerable script writing, which would be beyond or scope here. But I’m sure you can hire a freelancer on Upwork to do it for you reasonably. Here is a good starting point for the script.
    Another option would be to add a swipe event

    But if you just want to remove the overlay, this css is working in my tests:

    .avia_mobile .av-caption-on-hover .av-masonry-item-with-image .av-inner-masonry-content {
        display: none !important;
    }

    I hope this helps.

    Best regards,
    Mike

    in reply to: Change woocommerce price position on single product page #1004647

    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: Allow registred user upload portfolio elements #1004645

    Hi,
    Oh, I see. No Enfold doesn’t have a built-in function for that, did you find a plugin that allows posting from the front end?
    These are the ones I found: Frontend Posting Plugins But I don’t have any experience with them.

    Best regards,
    Mike

    in reply to: Cant save settings – "Saving didnt work! " #1004643

    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: Video not loading on mobile devices? #1004639

    Hi,
    If I understand the issue correctly, your video is not playing on Android Firefox, yet I tested on my Android Firefox & Chrome and the video played good. I have made no privacy browser settings on either, have you tried resetting the browsers to the default settings & clear your browser cache? I also tested on desktop Chrome, Firefox, Edge & IE11 and found no issues playing the video.

    Best regards,
    Mike

    in reply to: Cant save settings – "Saving didnt work! " #1004635

    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: enfold whitespace separator in sidebar #1004634

    Hi,
    I hope you don’t mind, I took a different approach to adding the hr with the icon, I added this code to the end of your functions.php file in Appearance > Editor:

    function custom_sidebar_hr(){
      ?>
      <script>
      jQuery(window).load(function(){
      jQuery( '<div class="hr hr-short hr-center side-bar"><span class="hr-inner "><span class="hr-inner-style"></span></span></div>' ).insertAfter( '#newsbox-2 li.news-content' );
      });
      </script>
      <?php
      }
      add_action('wp_footer', 'custom_sidebar_hr');

    and I added this css to your Quick CSS

    .hr.hr-short.hr-center.side-bar {
    margin: 0px !important;
    }
    .hr-short.side-bar .hr-inner {
        width: 90% !important; 
        left: 15% !important; 
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Line Height Not Working with LayerSlider #1004520

    Hey Eric,
    Thank you for the login, I looked at your layerslider on your homepage, which looks great, but I assume that you want the line height to be a little more, right?
    I see that currently, according to the inspector the text is:
    font-size: 28.672px;
    line-height: 40.96px;
    But it looks like the line height is really a lot less than that. Do I understand this issue correctly?

    Best regards,
    Mike

    in reply to: Burger/Mobile Menu / How can I get it bigger/thicker? #1004518

    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: Uploading Google Fonts, No 'Custom Font Manager' #1004511

    Hey Translibrium,
    Please update to 4.4.1 and you will see the font manager, it is very easy to use:
    2018-09-01_181712

    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

    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: How to change default enfold theme to flat business theme. #1004502

    Hey Amol,
    This can be done two ways, the first and best is to reset the site with WordPress Reset it will clear all content, styles, images and be like you started from day one.
    Then activate Enfold, and install the demo. Remember, you will lose everything.

    The second option is if you need to keep your posts & pages & images, you will need to export your posts and pages though WordPress > Settings > tools > export, and then use a plugin like downML – Download Media Library and save your media library to your desktop, which you will upload again one by one later.
    Then continue with the steps above.

    If you must try to save all of your content, then please make a backup with the tools your webhost has to use, just in case you make a error and need to try again.

    You can try to just install the new demo over your current demo, but your menus will double up with items from both demos, and you may still lose some posts, maybe not. Either way you will need to spend some time cleaning up the site afterwards, it’s not the best way to do it

    Best regards,
    Mike

    in reply to: Clearing Enfold's Default Table CSS #1004495

    Hey DJQuad,
    To clear all of Enfold’s css for tables, please go to: \enfold\css\base.css and comment out lines 272 – 324
    It starts like this:

    /* #Table
    ================================================== */
    table {
    	width: 100%;
    	padding: 0;
    	margin: 0 0 20px 0;
    	font-size: 13px;
    }

    to comment out css add a /* at the start, and a */ at the end, like this:

    
    /*
    table {
    	width: 100%;
    	padding: 0;
    	margin: 0 0 20px 0;
    	font-size: 13px;
    }
    */

    Best regards,
    Mike

    in reply to: Bullets colors #1004488

    Hey LuizBase,
    If I understand correctly, you need 2 list style colors?
    Which colors do you want and what classes do you need to be, that is I assume you will add classes to them to choose where they will go.
    Can you link to the page they will be on so we can see the classes?

    Best regards,
    Mike

    in reply to: enfold whitespace separator in sidebar #1004487

    Hi,
    Thank you for the login, I checked your css and found that you were missing a }
    I added it and now Vinay’s code works.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Event Espresso Featured Image not showing in liste #1004483

    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: Weird problem when underlining paragraph text #1004482

    Hi,
    This is the css causing it:

    #top .all_colors u, #top .all_colors span[style*='underline;']{color:#719430;line-height:1.4em;font-family: 'Caveat', 'Helvetica Neue', Helvetica, Arial, sans-serif;text-decoration:none !important;display:inline-block;}

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

    #top .all_colors .av_textblock_section p span[style*='underline;']{
    color: inherit !important; 
    line-height: inherit !important; 
    font-family: inherit !important;
    text-decoration: underline !important;
    display:inline-block;
    }

    Best regards,
    Mike

    in reply to: Burger/Mobile Menu / How can I get it bigger/thicker? #1004479

    Hi,
    Thank you, Glad we could help, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Event Espresso Featured Image not showing in liste #1004477

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

    Best regards,
    Mike

    in reply to: Adjusting Viewport Breakpoint #1004475

    Hi,
    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: Cant save settings – "Saving didnt work! " #1004474

    Hey sommersystems,
    I took a look and see you are getting this error from your server:

    Failed to load resource: the server responded with a status of 403 (Forbidden)

    Please see this article: Fixing 403 Forbidden Error

    Best regards,
    Mike

    in reply to: Event Espresso Featured Image not showing in liste #1004469

    Hey 360airwalk,
    To show the image, Please try this code in the General Styling > Quick CSS field:

    #top.post-type-archive-espresso_events .small-preview {
        display: block !important; 
    }

    Best regards,
    Mike

    in reply to: Adjusting Viewport Breakpoint #1004468

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

    Best regards,
    Mike

    in reply to: Allow registred user upload portfolio elements #1004466

    Hey tavomenas,
    You can allow users to do this, but they would need to have the role of “Author” which will allow them to create, upload, & publish.
    Since you don’t want them to publish, you should use a plugin such as: User Role Editor
    Here is a article about How to Add Custom User Roles in WordPress

    Best regards,
    Mike

    Hey sandrameyer,
    To hide the form labels open your mailchimp element & go to the form styling tab and check the Hide Form Labels box:2018-09-01_150024
    This will make the form use gray placeholder text instead.
    To change the font, Please try this code in the General Styling > Quick CSS field:

    ::-webkit-input-placeholder {
        color: #919191 !important;
        font-family: Roboto !important; 
        font-size: 10px !important;
    }
    :-moz-placeholder {
        color: #919191 !important;
        font-family: Roboto !important; 
        font-size: 10px !important;
    }
    ::-moz-placeholder {
        color: #919191 !important;
        font-family: Roboto !important; 
        font-size: 10px !important;
    }
    :-ms-input-placeholder {
        color: #919191 !important;
        font-family: Roboto !important; 
        font-size: 10px !important;
    }

    Best regards,
    Mike

    in reply to: Weird problem when underlining paragraph text #1004463

    Hey thomasoo,
    This looks like a css rule overriding the default, please link to the page so we can examine it.

    Best regards,
    Mike

    in reply to: Lightbox not working #1004462

    Hi,
    I took a look at your site and I notice this warning when I click on your image, while the lightbox is trying to open

    VM5738 wpforms-form-abandonment.min.js:1 Resource interpreted as Document but transferred with MIME type image/jpeg: "your-ulr/wp-content/uploads/2014/02/rectangular-gallery_0000_main_mlc_on_chairlift.jpg.jpg".
    abandonClick @ VM5738 wpforms-form-abandonment.min.js:1
    dispatch @ VM5679 jquery.js:3
    r.handle @ VM5679 jquery.js:3
    Navigated to your-url/wp-content/uploads/2014/02/rectangular-gallery_0000_main_mlc_on_chairlift.jpg.jpg

    I believe your “Form Abandonment Addon” for WPForms is redirecting the lightbox clicks, please try ddisabling the addon and/or WPforms temporary to test.

    Best regards,
    Mike

Viewing 30 posts - 25,111 through 25,140 (of 34,585 total)