Forum Replies Created

Viewing 30 posts - 24,061 through 24,090 (of 25,536 total)
  • Author
    Posts
  • in reply to: 4 1/4 Columns mobile Version #723439

    Hey Pixel_Production,

    Thanks for your kind words :)

    1.) Try adding this code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:980px) and (min-width:767px) {
      #top #spalte-abstand .flex_column_table {
        display: block;
      }
    
      #top #spalte-abstand .flex_column_table div.flex_column.av_one_fourth {
        width: 46%;
        display: block;
        float: left;
      }
    }

    2.) Unfortunately you can’t do it like that and it would take really much time to modify the form to accomodate that, but I suggest instead of organizing it vertically, do it horizontally maybe you can do something like 3 text inputs above using 1/3 width then below it 3 checkboxes in 1/3 width also, I think it wouldn’t have any issues on mobile.

    Regarding the footer you can add additional top margin to adjust it, try adding this code in Quick CSS:

    #footer #text-3 {
        margin-top: 50px;
    }

    Just adjust the top margin, hope this helps. :)

    Best regards,
    Nikko

    in reply to: Enfold – IDX plugin recommendation #723423

    Hey ikaika72,

    We have list of recommended plugins here: https://kriesi.at/support/topic/recommended-plugins/ but there’s no plugin there for IDX. Try checking out the plugins listed here: https://www.jasonfox.me/best-idx-plugin-for-wordpress/

    Best regards,
    Nikko

    Hey DigitalEssence,

    You can copy this part of the code:

    $meta['page'][] = 'event';

    paste it just the bottom of it then replace event with event-recurring, it should look like this:

    add_filter('avf_builder_boxes', 'add_builder_to_posttype');
    function add_builder_to_posttype($metabox)
    {
    	foreach($metabox as &$meta)
    	{
    		if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout')
    		{
    			$meta['page'][] = 'event'; /*instead add the name of the custom post type here*/
    			$meta['page'][] = 'event-recurring';
    		}
    	}
    	return $metabox;
    }

    Let us know if it works.

    Best regards,
    Nikko

    in reply to: Frontpage headline not responsive on mobile #723419

    Hi,

    I’ve checked your site and it seems good already. The background on mobile is already centered.

    Best regards,
    Nikko

    in reply to: Masonry caption effect #723417

    Hi,

    Can you post a link where the code above doesn’t work? so we can inspect further. I have tried to use your code (which is more backward compatible, and is better than the code I gave) on my local server and tested with the settings you gave but don’t have any issues mentioned.

    Best regards,
    Nikko

    in reply to: Woocommerce shopping cart icon not displaying properly #723411

    Hey tjpicasso,

    I’ve checked on your site, I noticed when you add a product to cart it pops up verifying it’s added to cart but when going to the cart page it’s empty. Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    As for the mega menu, try adding this code in Quick CSS (located in Enfold > General Styling):

    #header #menu-item-813 .six.units {
        width: 340px;
        margin-left: 150px;
    }

    Just adjust the width and the left margin (to move the mega menu position), Hope this helps.

    Best regards,
    Nikko

    Hey EastBayMeditation,

    Haven’t encountered that problem before. Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Also please give us ftp access so we can check the files. For the meantime, can you try to deactivate all plugins and see if the error disappears probably because of js conflict.

    Best regards,
    Nikko

    in reply to: background image on mobile #723401

    Hi,

    Yes, try adding this code above the code I have gave before:

    
    @media only screen and (max-width:1024px) and (min-width:768px) {
      .page-id-253 #hello .flex_cell.av_two_third, .page-id-253 #hello .flex_cell.av_one_third {
        display: block;
        width: 100%;
      }
    
      .page-id-253 #hello .flex_cell.av_one_third {
        min-height: 900px;
        background-position: top center !important;
      }
    }
    

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Full Screen Slider rendition on mobile #723399

    Hi Justin,

    Sorry for the late response, can you try to add this in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      avia-fullscreen-slider .avia-slideshow {
        max-height: 86vh !important;
      }
    }

    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: mobile #723396

    Hi,

    I have rechecked your site using iphone 4s and I didn’t have any issues, is the issue only showing the page you have mentioned? you have also mentioned that the mobile is not resizing when a category is selected, I’m not really sure I understood but it shouldn’t resize since it should direct you to the right section.

    I have also checked it with a android phone and it doesn’t have any issues like the screenshot showed, can you try to test it also using other mobile and check if the same issue also appears.

    Best regards,
    Nikko

    in reply to: Column width #723387

    Hi,

    It would affect all 1/5 and 3/5. I would suggest enabling custom css classes first, you can check it in this post: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    By using custom css classes you can target specific classes. And you can use something like this:

    #top .custom_one_fifth {
        width: 10%;
    }
    
    #top .custom_three_fifth {
        width: 68%;
    }

    The code above uses this custom class names custom_one_fifth and custom_three_fifth, you can use same class name and probably change the width. Hope this helps.

    Best regards,
    Nikko

    in reply to: Header and Footer not appearing as it should #723382

    Hi,

    Sorry for the late response.

    Issue #1 Seems to be already fixed, I’m not sure if you want to change the color of the menu item’s background and font color, but if you want to change it you can add this code in Quick CSS (located in Enfold > General Styling):

    
    /* Menu item background color set to blue */
    #top #header .main_menu #avia-menu li a {
        background: #0000ff;
    }
    
    /* Menu item background color when hovered */
    #top #header .main_menu #avia-menu li a:hover {
        background: #0000ff;
    }
    
    /* Menu item font color set to white */
    #top #header .main_menu #avia-menu li a span.avia-menu-text {
        color: #ffffff;
    }
    
    /* Menu item font color when hovered */
    #top #header .main_menu #avia-menu li a:hover span.avia-menu-text {
        color: #00ff00;
    }
    
    /* Search background color set to white */
    #top #header .main_menu #avia-menu li.menu-item-search-dropdown a {
        background: #fff !important;
    }

    I’ve added some comments, just replace the colors as you see fit.

    Issue #2 seems like this is fixed also since I can already see the yellow color on titles.

    We apologize for the delayed response and I hope this helps.

    Best regards,
    Nikko

    in reply to: POST PAGINATION – using numbers #723373

    Hey CloudChoice,

    When Avia Layout Builder is enabled it acts like a page (even if it’s post) and the defaults aren’t used that’s probably what you are experiencing. Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.

    Also please post a link to the page/post mentioned that has the issue.

    Best regards,
    Nikko

    Hey jenntewell,

    Captions appear on regular sliders, are you referring to portfolio grid? or easy slider? just to clarify. Also can you post a link to the page mentioned? so we can see better you can place it in “private content” so only moderators can see, or you can just find a page in the demo which is similar to what you use: http://kriesi.at/themes/enfold/homepage/home-v4-small-slider/

    Best regards,
    Nikko

    in reply to: Issues Uploading Custom Font #723357

    Hey!

    I noticed the things that might have caused it not to work or have problems.
    1.) Since you have replaced the url it’s already good but you forget to add the semi-colon at the end of this code:
    src: url('wp-content/uploads/font-organizer/TrajanPro3-Regular.otf') format('otf')

    2.) You need to have different formats for it to work properly in different browsers, currently it’s otf as you can see in the code, this should be the complete code:

    @font-face {
        font-family: 'FuturaStdHeavy';
        src: url('fonts/FuturaStdHeavy.eot');
        src: url('fonts/FuturaStdHeavy.eot') format('embedded-opentype'),
             url('fonts/FuturaStdHeavy.woff2') format('woff2'),
             url('fonts/FuturaStdHeavy.woff') format('woff'),
             url('fonts/FuturaStdHeavy.ttf') format('truetype'),
             url('fonts/FuturaStdHeavy.svg#FuturaStdHeavy') format('svg');
    }
    

    I suggest you convert the otf file you have here: https://everythingfonts.com/font-face it should give you all the files needed after conversion and it will have a css file which you can use to copy and paste it in Quick CSS and just replace the urls.

    Cheers!
    Nikko

    Hi,

    Glad that you found the fix :)

    Best regards,
    Nikko

    in reply to: Mailchimp #723346

    Hi,

    Sorry for the late response. The topic title doesn’t match the issue you are referring and I checked the previous threads since I remembered the screenshots which is supposed to be fixed, anyways, I applied the code I gave in this thread: https://kriesi.at/support/topic/mobile-menu-and-image-slider/#post-712916 that should fix the problem, let us know if you still have some issues with it.

    Best regards,
    Nikko

    Hi,

    Sorry for the late response. I tried to check your site but the login doesn’t work.

    Best regards,
    Nikko

    in reply to: Multiple items in the Google Analytics Tracking Code area #723339

    Hi,

    We apologize for the late response. It’s not possible if you used the way you put it in the screenshot, google analytics wont work by doing that, but it should work if you replace the analytics id with the whole js code of google analytics, but I recommend just putting the analytics code there and as for your custom fonts you may want to put it in functions.php by adding this code at the bottom:

    
    function add_custom_font(){
    ?>
    <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
    <?php 
    }
    add_action('wp_head', 'add_custom_font');
    

    Just replace opens sans css with your custom font. Hope this helps.

    Best regards,
    Nikko

    • This reply was modified 8 years, 3 months ago by Nikko.
    in reply to: Enfold App demo inconsistent dipslayed in various tablets #723333

    Hi,

    I’ve checked your site in an ipad and it’s good on my end and I can confirm there’s only 1 big image at the left (same as the mobile device image in the app demo), but it isn’t stucked on section 3. I noticed from the screenshots you gave 1,2 & 4 doesn’t show any image, while 3 shows the image in section 2 & 3, does it show when it’s halfway in section 3?

    Can you try to give us a screenshot on the 4 small images when you are in the tablet? is it the same for the app demo on your tablet as well (the 4 small images)? if it’s not the same, we would like to request for a temporary admin access, so we can inspect further.

    Best regards,
    Nikko

    in reply to: Issue with Headline Rotator #723330

    Hi,

    I have added this css code in Quick CSS:

    span.av-rotator-text.av-rotator-multiline-on {
        display: block;
    }

    The issue should be fixed, checking or unchecking multiline should work properly, let us know if also good on your end.

    Best regards,
    Nikko

    in reply to: Social Icons for Meet The Team component? #723323

    Hi,

    I have checked your site and removed this code in Quick CSS:

    .avia-team-member .team-social {
       display: none;
    }

    The social icons now shows up, I added this additional css code to remove the border of the box when hovering and and align social icons.

    .avia-team-member .team-social {
        border: 0 !important;
    }
    
    .avia-team-member .team-social-inner > a {
        vertical-align: middle;
    }
    
    .team-social-inner span.hidden {
        height: 0 !important;
    }

    Hope it’s good :)

    Best regards,
    Nikko

    in reply to: mobile menu toggle #722417

    Hey!

    After this block of code I gave above:

      #top #wrap_all #header.av_header_transparency {
        background-color: #f7f7f7 !important;
        color: #344652 !important;
        border-color: #f7f7f7 !important
      }

    Kindly add this after it:

    #header #advanced_menu_toggle {
        background: transparent;
        border: 0;
        color: #fff;
    }
    
    #header.av_header_transparency #advanced_menu_toggle {
        color: #376982;
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: SHortcode for Homepage V8 Frontpage Shop #722411

    Hey!

    Yes, you just need to do the following steps:

    1. Build a new wordpress site (a subdomain or in your local server)
    2. Go to Enfold > Demo Import > and import Enfold Default and wait for it to complete importing
    3. Go to Layerslider WP > All Sliders > at the bottom click Import/Export
    4. On the right side select Enfold – most beautiful theme and click on Export, you should see a zip file
    5. On your current site go to Layerslider WP > All Sliders > import the zip file

    Hope this helps. :)

    Regards,
    Nikko

    in reply to: WordPress 4.7 Update #722407

    Hey!

    I think that is a possibility. Just post on this thread when it’s ready :)

    Regards,
    Nikko

    in reply to: Moving left sidebar up #722400

    Hi,

    Try to replace the code I gave with this one:

    #top #main .sidebar_left .sidebar {
        position: relative;
        top: -60px;
    }

    Let us know if this helps.

    Cheers!
    Nikko

    in reply to: Masonry caption effect #722398

    Hey!

    The latest version of mozilla is 50.0.2, it should work there, I have tested it in same version as you have of mozilla and works fine on my end. Can you post a link to your site? so we can inspect further, you can place the link in “private content” so only moderators can see.

    Best regards,
    Nikko

    in reply to: Changes to Title/Caption on Masonry Gallery #722396

    Hey Gavin!

    Try to add this code in Quick CSS (located in Enfold > General Styling):

    .av-masonry .avia-arrow {
        display: none !important;
    }
    
    #top figcaption.av-inner-masonry-content, 
    #top figcaption.av-inner-masonry-content .av-masonry-entry-title {
        background: transparent !important;
    }
    
    #top #wrap_all figcaption.av-inner-masonry-content .av-masonry-entry-title {
        font-size: 24px;
        color: #fff;
    }
    
    #top #wrap_all figcaption.av-inner-masonry-content .entry-content {
        font-size: 18px;
        color: #fff;
    }

    The 3rd block of code is for the the title and the last block is for the content, just adjust the values as you see fit. Hope this helps :)

    Regards,
    Nikko

    in reply to: Hide Color Section #722390

    Hey!

    You’re very much welcome. Glad we could help :)

    Best regards,
    Nikko

    in reply to: page white on mobile #722388

    Hi BPC,

    Try to replace this part of Rikard’s code:

    .page-id-5072 #main {
        padding-top: 0 !important;
    }

    to:

    .responsive #top.page-id-5072 #main {
        padding-top: 0 !important;
    }

    Hope this helps. :)

    Regards,
    Nikko

Viewing 30 posts - 24,061 through 24,090 (of 25,536 total)