Forum Replies Created

Viewing 30 posts - 33,871 through 33,900 (of 38,325 total)
  • Author
    Posts
  • in reply to: Fonts – Menu – stylings #850882

    Hi Roland,

    We need to see the actual css and html to be able to propose a solution for you. Please get back to us when you get the website to some testing server.

    Best regards,
    Victoria

    in reply to: highlight active menu in fullwidth submenu #850669

    Hi therzig,

    Here is the code you can put in your functions.php

    
    //One page nav highlight
     
    function activateMenuItem(){
    ?>
    <script>
    
    jQuery(document).scroll(function() {
         var sections = jQuery('.avia-section'),
             menu   = jQuery('.av-submenu-container'),        
             nav_height = menu.outerHeight();
     
    
             jQuery(window).on('scroll', function() {
                var cur_pos = jQuery(this).scrollTop();
                sections.each(function() {
                    var top = jQuery(this).offset().top - 300,
                        bottom = top + jQuery(this).outerHeight();
                    if (cur_pos >= top && cur_pos <= bottom) { 
                        menu.find('li.active-menu-item').toggleClass('active-menu-item');                    
                        menu.find('a[href="https://'+window.location.host+window.location.pathname+'#' + jQuery(this).attr('id') + '"]').parent("li").toggleClass('active-menu-item');
                    }
                });
            });
        });
    </script>
    <?php
    }
    add_action('wp_head', 'activateMenuItem');
    

    And the css can be any of these

    
    .active-menu-item a * {
        color: red;
    }
    li.active-menu-item a, li.active-menu-item a:visited,
     li.active-menu-item a:active, li.active-menu-item a:hover,
     li.active-menu-item a:focus, #top .av-subnav-menu li a {
        text-decoration: none !important;
    }
    li.active-menu-item  {
        border-bottom: 1px solid #666;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    • This reply was modified 8 years, 4 months ago by Victoria.

    Hey Angus,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (min-width: 990px) and (max-width: 1255px) {
      nav.main_menu, .av-burger-menu-main.menu-item-avia-special {
          display: block;
      }
      .menu-item {
        display: none;
      }
    }
    

    If the code above does not help, please disable cache and mininfication and get back to us.
    If you need further assistance please let us know.
    Best regards,
    Victoria

    in reply to: Text aligning in color section (ressponsive) #850651

    Hi KingFilly,

    Here is the code that will do the trick

    
    @media only screen and (min-width: 990px) and (max-width: 1343px) {
      nav.main_menu, .av-burger-menu-main.menu-item-avia-special {
          display: block;
      }
      .menu-item {
        display: none;
      }
    }
    

    Please remove this code
    @media only screen and (max-width: 1344px) {
    #mobile-advanced, #advanced_menu_toggle, #advanced_menu_hide { display: block; }
    nav.main_menu { display: none; }}

    If you need further assistance please let us know.
    Best regards,
    Victoria

    in reply to: homepage start side not loading correctly in Mozilla Firefox #850628

    Hi Marco,

    I get the jumping effect in FF on a Mac, still unfortunately. There are no errors in the script, could very much be a conflict with the iframe and the its content.

    You can make a copy of the page, building it part by part, not all at once, and pay attention, when the weird jump appears.

    Best regards,
    Victoria

    • This reply was modified 8 years, 4 months ago by Victoria.

    Hi PerryStevens,

    You need to set these
    https://cl.ly/2k113A2A321D, so that WooCommerce knows the links to these pages.

    Let me know how this works for you.
    Best regards,
    Victoria

    in reply to: Easy Property Listings and Enfold #850623

    Hi Karen,

    Looks like Enfold is trying to show the post as the blog post. You can hide it with the code below.
    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .epl-listing-single.epl-property-single + article.post-entry {
      display: none;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    in reply to: ENFOLD BIG PROBLEM NEED HELP :) #850619

    Hi fclayssen,

    You can record a short screencast showing your issue and upload it to Dropbox or some other service like that. We have users that have done that.
    I was able to edit the page, the changes saved. Can you write the exact steps to reproduce the issue please?

    Best regards,
    Victoria

    in reply to: Customized Toggles #850618

    Hi Jürgen,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .single_toggle .toggler {
      border-top: #000 1px solid;
      text-transform: uppercase;
      border-bottom: #000 1px solid;
    }
    .toggle_content.invers-color {
       border-bottom: #000 1px solid;
    }
    .main_color  span.hor_icon, .main_color  span.vert_icon {
          border-color: #000;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    in reply to: Vertical separator between 5 columns #850612

    Hi Alexandra,

    Do you mean something like that? Put this in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css

    
    .page-id-8431  .avia-builder-el-0, 
    .page-id-8431 .avia-builder-el-2, 
    .page-id-8431 .avia-builder-el-4,
    .page-id-8431 .avia-builder-el-6 {
      border-right: 1px dashed #ccc;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    in reply to: Adding multiple links to layerslider slide #850611

    Hi Tim,

    No, not like that you’re right. Different layers or add html in the box for html content and then try to adjust via css, keeping in mind all the different screen sizes.

    Best regards,
    Victoria

    in reply to: Block messages with hyperlinks in contact forms #850609

    Hi JD,

    Here is a thread for you to consider

    If you need further assistance please let us know.
    Best regards,
    Victoria

    in reply to: Breadcrumb with different levels of categories #850604

    Hey Barthélémy,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    in reply to: Woocommerce cart is not updating correctly #850601

    Hey lentzit,

    There is an error on the server, please check the server log for the error. Also can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    in reply to: Mobile main menu missing after Enfold update #850587

    Hi Nicole Scalessa,

    We are very sorry to hear that, the new version introduced the new modern menu and turned out to be a bit more challenging. We are here to help you. Do not copy the code above, it looks like you issue is a bit different.
    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    in reply to: Fonts – Menu – stylings #850584

    Hi kwanumzen,

    I don’t see a link anywhere.
    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    in reply to: Post Slider: Offset is not working #850583

    Hi vmoralestejedor,

    Have you flushed the caches after the update?

    Best regards,
    Victoria

    in reply to: Add a new social icon with new function #850580

    Hi Black-Shadow,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    in reply to: CSS conflict #850563

    Hey webthatch,

    The demo does not seem to be slow, because they load only 10 products, you’re loading so many more products for all those sections, the page becomes heavy.
    Accordion + tables inside is too complex for mobile view, the page structure for mobile has to be more simple and straightforward.
    But overall looks nice on mobile, just the accordion is taking up additional space for margins and paddings.
    There is probably JavaScript conflict which prevents the arrows in quantity from showing, there are no errors.

    Best regards,
    Victoria

    in reply to: Portfolio filter order: move "all" towards the end #850522

    Hey Spiv,

    On the screenshot below is the code, you can move the line 715 to the line 732. The file is enfold/config-templatebuilder/avia-shortcodes/portfolio.php.

    This should be done in a child theme. Here is how to do it

    Best regards,
    Victoria

    Hi Jan-Øyvind,

    You’re using a fallback menu. The new burger menu does not work well with the fallback menu at this point. As a temporary solution, you can build a menu and assign it as Enfold’s main menu.

    Best regards,
    Victoria

    • This reply was modified 8 years, 4 months ago by Victoria.
    in reply to: Magazine Content Element #850512

    Hi Sam,

    I don’t see the thumbs any more, have you removed them? How did you try to add the text? The single quotes on the screenshot below will break things, you need to replace them with the regular ones.

    this ‘ and ’ to ' and ' 

    Best regards,
    Victoria

    • This reply was modified 8 years, 4 months ago by Victoria.
    in reply to: Strange things happening in second language files #850499

    Hi Barbara,

    Great progress :)

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    in reply to: Wrong Category Showing in Breadcrumbs #850489

    Hey Dreamy Deed,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    in reply to: unique footer #850486

    Hi Led-consult,

    Not sure, why the number disappears, try the code below.
    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 767px) {
        .copyright p {
        	padding-right: 0px !important;
         }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    in reply to: Mobile menu missing #850479

    Hi Safesec,

    I am seeing the menu on the mobile! Just not all the menu items are there, is this intentional or not?

    And I still think that the files still did not overwrite properly or there is some server cache which still uses old files.

    Best regards,
    Victoria

    • This reply was modified 8 years, 4 months ago by Victoria.
    in reply to: LAYER SLIDE – SLOW DOWN FADE EFFECT SPEED #850466

    Hey grafica6106,

    Below is where you can find the code in shortcodes.js. Changes are better to be made in a child theme. Here is how to do it:

    https://kriesi.at/support/topic/edit-shortcodes-js-in-child-theme/#post-399336

    If you need further assistance please let us know.
    Best regards,
    Victoria

    in reply to: Margin between Picture and Text in Main Content #850462

    Hi Nu-Vision,

    It seems to have adequate margins, not like the ones on your screenshot. What device is that? Looks fine on an iPhone as well.

    Best regards,
    Victoria

    in reply to: Avatar problem in mobile device #850461

    Hi!
    The avatar images look a bit off. This can also be seen in Safari responsive mode.
    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 767px) {
        #top .commentlist ul {
            margin: 0 0 0 40px;
            clear: both;
        }
        .children .comment_content {
            margin-left: 0;
    		margin-right: 20px;
        }
        .gravatar img {
            margin-right: 20px;
        }
    }
    

    If you need further assistance please let us know.
    Cheers!
    Victoria

    in reply to: Portfolio theme #850449

    Hi Jonah,

    Here is a demo of that functionality and other options for portfolio.

    Is this something that will work for you?
    Best regards,
    Victoria

Viewing 30 posts - 33,871 through 33,900 (of 38,325 total)