Viewing 30 results - 86,791 through 86,820 (of 142,852 total)
  • Author
    Search Results
  • #723573

    Hi!

    We can’t setup the tracking event in the WP dashboard. We will also need your gmail account because the tracking goal has to be created in the google webmaster tools.

    // https://kriesi.at/support/topic/tracking-contact-form/#post-565219
    // https://kriesi.at/support/topic/google-goal-tracking/#post-611668

    Cheers!
    Ismael

    #723559

    In reply to: web hacked

    Hi,

    Great, glad you got it working :-)

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #723557

    Hello Richard,

    Thank you for your reply.

    The problem is on all pages.
    Thank you for completing a page, to realize the problem by completing the page and updating it several times

    cordially

    Christophe

    #723548

    Hi,

    Glad we could help :-)

    Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #723543

    Hi,

    Ok, glad you found the problem though. Please let us know if you should need any further help on the topic or if we can close it for now.

    Best regards,
    Rikard

    #723539

    Hi,

    Thank you for the screenshots. We modified the code in the Quick CSS field.

    #top .av-main-nav ul ul {
        left: 20px;
        position: relative;
    }
    
    #top .av-main-nav:hover ul ul {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    

    Best regards,
    Ismael

    #723532

    Hi Christophe,

    Thanks for the login details, I’m still not sure on what page this problem is occuring and where though?

    The problem you are describing is usually due to open html markup somewhere before the part which is disappearing so please try look for that in your content:

    <strong>Bold text closed properly</strong>

    Best regards,
    Rikard

    #723528

    Hi,

    Ok great, it can be easy to miss those sometimes :-)

    Let us know if you should need any further help or if we can close the topic.

    Best regards,
    Rikard

    #723508

    Hi Mark,

    Thanks for the feedback, please try this in Quick CSS:

    strong.logo {
      max-height:80%;
    }
    
    #header .widget {
        left: 12%;
        padding-top: 9.7%;
        transform: translate(0%);
    }

    Best regards,
    Rikard

    #723500

    Result here: Link

    /**** not showing the normal menu nor the old responsive menu  ******/
    .js_active.html_burger_menu #avia-menu > li {display: none }
    #advanced_menu_toggle {display: none !important }
    
    /**** just to have a bit more width for both - logo and toggler  ******/
    .responsive #top #wrap_all .container {
        max-width: 95%;
        width: 95%;
    }
    
    /**** styling the burger menu   ******/
    .av-burger-overlay {
        box-shadow: -2px 0 10px #bbb; 
        left: auto;   
        max-width: 400px;   
    }
    
    /**** one example to place icons infront of hamburger menu links  ******/
    #av-burger-menu-ul li#menu-item-437 a .avia-menu-text::before {
    content: "\e821 \00a0";
    font-family: entypo-fontello; 
    color: #0088BD}
    
    /**** background image to hamburger menu  ******/
    .av-burger-overlay-inner {
    background: url("/wp-content/uploads/burger-bg.jpg") no-repeat scroll 0 0 / cover ; 
    }
    
    /**** background-color for hamburger menu icon  ******/
    .av-burger-overlay-active #top .av-hamburger-inner, 
    .av-burger-overlay-active #top .av-hamburger-inner::before, 
    .av-burger-overlay-active #top .av-hamburger-inner::after    {
    background-color: #000 !important;
    }
    
    /**** search icon color in burger menu   ******/
    .av-burger-overlay-active #top #wrap_all #menu-item-search a, 
    .av-burger-overlay-active #top #wrap_all #menu-item-search a:hover {
        color: #000;
    }
    
    /**** burger menu font color   ******/
    #av-burger-menu-ul li a {
        color: #000 !important;
    }
    
    /**** burger menu text shadow - if you like  ******/
    #av-burger-menu-ul li a .avia-menu-text {
        text-shadow: 1px 1px 3px #333;
    }
    
    /**** burger menu hover state  ******/
    #av-burger-menu-ul li a:hover .avia-menu-text {
        color: #0088BD;
        font-weight: 400;
    }

    Only needed if your burger menu is not 100% width –
    for the styling of the page if burger menu is active you have to make a copy of header.php to your child-theme folder:
    look for <div id='wrap_all'> and place just after it : <div class='mega-bg'></div> so that there is :

    <div id='wrap_all'>
    <div class='mega-bg'></div>
    /**** setting up an effect on burger menu active - you have to insert the code above to header.php for that ******/
    
     .mega-bg {
        width:100%;
        height:500%;
        position:absolute;
        display:none;
        z-index:0;
        transition: all 1s linear 0;
        opacity: 0
        }  
    
     .av-burger-overlay-active .mega-bg {
        width:100%;
        height:500%;
        background:#fff;
        position:absolute;
        display:block;
        z-index:500;
        transition: all 1s linear 0;
        zoom: 1;
        filter: alpha(opacity=85);
        opacity: 0.85;
        }
    #723492

    ok here we go:

    i hope you work with child-theme because changeings are safe when updating the parent theme.
    you need a copy of footer.php in Child-Theme folder of your installation.

    On bottom of that footer.php copy find wp_footer() and insert just before do_action('avia_after_wrap_all'); so than it looks like:

    do_action('avia_after_wrap_all');
    wp_footer();

    This gives us the oportunity to insert code here via child-theme functions.php, and to insert it not over all pages/posts but with some if clauses only there you need it.
    Yes we could insert here directly the code we need but if we like to change it or do some other things on that position it is i think : best to do it this way.
    _______________

    this goes to functions.php of your child theme (and you see here that this will only inserted on front-page – if you want to insert it globaly insert the code ( <a class="customclass" href="#"><img class="aligncenter" src="path to your logo"/> ) directly to footer php and forget functions.php just in front of the wp_footer(); )

    add_action('avia_after_wrap_all', function() {
    if (is_front_page() ) {
      ?>
            <a class="customclass" href="#"><img class="aligncenter" src="path to your logo"/>
      <?php
    }
    });

    on quick css you setup :

    .logo, .responsive .logo {
        display: none;
    }
    
    .customclass {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%);
        transition: all 1s linear 0s;
        z-index: 501;
        width: 15vw
    }

    you have to play a bit with width and top value – maybe you have to set up some rules for responsive case .

    #723488
    1stonthelist
    Participant

    Hello. I am trying to make it so that the background image in the grid column becomes responsive. I would like the columns to stack on top of one another in any screen size less then 1220px wide and I want the full image to still be shown rather then getting cut off as it does by default.

    Please advise! Thank you :-)

    #723485
    josollazzo
    Participant

    Hello guys. I am grateful for I Have bought this fabulous thema Enfold.
    Please Also I would need the code That was created in a previous post to individually change the colors of the price table. Please, see this your message: https://kriesi.at/support/topic/3-column-price-page-middle-on-featured-colour-css-code/#post-320615
    and this I would get:

    View post on imgur.com


    Thank you very much
    Giuseppe

    #723483

    Topic: anchor not working

    in forum Enfold
    frescova
    Participant

    This is pretty straight forward – I may be missing something…

    I have a color section and I’ve assigned it the id “VoteNow”

    I’ve added a button at the top of my page and tset the link manually to point to just “#VoteNow” and http://url/post-title#VoteNow

    In both cases a “/” is added in front of the “#” effectively changing the link to http://url/post-title/#VoteNow

    How do I make it so that dang “/” does not show up and the anchor work as supposed to.

    see: http://www.more-mtb.org/2017-more-bod-elections-candidate-bios-and-information

    Whenever I click the button it looks like it’s going to go to the right place but that pesky “/” then comes up again…

    Thanks in advance.

    BeeCee
    Participant

    Hi,

    I found in the documentation this post:
    “Remove image titles that show up when you hover on images”, so far, so good.

    But:
    with this code snippet, that is mentioned there, the image description in lightboxes (for example “Masonry Gallery” items opened in a lightbox) show no image description. This issue is documented here:

    So, generally asked, is there a “workaround”, so that the image titles are not shown, when hovering for example portfolio or gallery images, but that the image descriptions in lightboxes are still shown?

    Thank you.

    #723468

    Hi, there is a problem with my color section,

    1) It starts at the top of the page but I want it to begin under the menu bar with some space in between (I tried to put a separator but even with 0px it makes a very big gap)

    2) I would also like to adjust manually the witdth in percentage so the banner can adjust in responsive mode.

    Kind regards,
    your help is always very useful my website is becoming close to perfect

    #723467

    Hi thanp73,

    Since you are using child theme, you can copy header.php of the parent theme (Enfold) and paste it in your child theme. Edit header.php in your child theme.

    1. Find this line of code (line 48):
    </head>
    and place the googletagmanager script above it, the code should look something like this:

    <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({‘gtm.start’:
    new Date().getTime(),event:’gtm.js’});var f=d.getElementsByTagName(s)[0],
    j=d.createElement(s),dl=l!=’dataLayer’?’&l=’+l:”;j.async=true;j.src=
    ‘//www.googletagmanager.com/gtm.js?id=’+i+dl;f.parentNode.insertBefore(j,f);
    })(window,document,’script’,’dataLayer’,’GTM-XXXXXX’);</script>

    2. Find this line of code:
    <body id="top" <?php body_class($style." ".$avia_config['font_stack']." ".$blank." ".$sidebar_styling); avia_markup_helper(array('context' => 'body')); ?>>
    it should just below the head tag. And place the code that looks like this:

    <noscript><iframe src=”//www.googletagmanager.com/ns.html?id=GTM-XXXXXX”
    height=”0″ width=”0″ style=”display:none;visibility:hidden”></iframe></noscript>

    Hope this helps.

    Regards,
    Nikko

    #723459
    BeeCee
    Participant

    Hi,

    I’m using WP 4.6.1 + ENFOLD 3.8
    I have a page with a “Masonry Gallery” added to a 1/1 column:

    But at the frontend (Firefox 50, Windows 7 prof.) it is ignored, that I would like to show these images in 3 columns; each image is 800x600px:

    I added this code snippet from Vinay concerning an older version of my website for another problem with the masonry gallery, where the first “place” of masonry gallery items was empty, to the functions.php: it solved the first empty “place” of gallery items, but not the problem here with the column settings.

    Could you please help me – I would like to have these 9 images spread in three columns. Thank you.

    #723457

    Topic: adding flags

    in forum Enfold
    lech07
    Participant

    Hello,

    I want to add to flags to my website http://zorbas.synology.me/wordpress/ in the top right bar.
    One danish and one swedish flag.

    The flags needs to be a link. for isntance the swedish flag will point to the swedish site. just like here http://www.zorbas.dk/

    The website i am creating on zorbas.dk needs to be the same for zorbas.se just in swedish.
    Do you recommend to do it like this? I have already both domaines.

    thanks.

    #723447

    Hi!

    I have checked header.php and it is placed properly, try to check the solution in this thread: https://productforums.google.com/forum/#!topic/tag-manager/w9FeGSsLckY

    Hope this helps.

    Best regards,
    Nikko

    #723444

    Hey Michael9001!

    You can set it by adding this code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      #top #main .avia-fullscreen-slider .av_fullscreen {
        min-height: 400px;
      }
    }

    Let us know if this helps :)

    Regards,
    Nikko

    #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

    #723438

    Topic: enfold site map

    in forum Enfold
    drimmerj
    Participant

    Hello-
    1. Do you have a site map shortcode or any suggestions on how to set one up?

    2. Why does my logo (.png file) look great on my desktop but blurred once added to the Theme Options area.

    #723434

    Topic: Error on saving posts

    in forum Enfold
    newpappa
    Participant

    When I try to save any post, I get the below error. This began immediately after you added some code as per this ticket: https://kriesi.at/support/topic/how-can-i-use-media-queries-in-button-content-element-to-change-target-url/.

    I need to launch but this is blocking. Please help!

    Warning: mysqli_real_escape_string() expects parameter 2 to be string, array given in /home4/u5l8e0c5/public_html/wp-includes/wp-db.php on line 1171

    Warning: Cannot modify header information – headers already sent by (output started at /home4/u5l8e0c5/public_html/wp-includes/wp-db.php:1171) in /home4/u5l8e0c5/public_html/wp-admin/post.php on line 197

    Warning: Cannot modify header information – headers already sent by (output started at /home4/u5l8e0c5/public_html/wp-includes/wp-db.php:1171) in /home4/u5l8e0c5/public_html/wp-includes/pluggable.php on line 1179

    #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

    #723404

    In reply to: Mobile Menu

    Hi,

    It’s not clear what you are trying to achieve. So let’s go one step at a time I’ll help you with the header issue. If the issues are not related please open a new ticket for different issues so we can keep the focus on the main topic.

    I have updated the settings for you and added the below code.

    Incase you like to change the background please feel free to change the background color values.

    
    /* --- Header --- */
    #header_main {
        background: rgba(0,0,0,0.5)!important;
        border : none!important;
    }
    .av-main-nav > li > a {
    color:#FFF!important;
    }

    Best regards,
    Vinay

    • This reply was modified 9 years, 3 months ago by Vinay.
    #723402
    HannaVogt
    Participant

    Hi!
    I use animated numbers for the phone number which is great for desktop. On mobile though, the numbers are cut. What can I do to make it look great on mobile as well?

    #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

    #723387

    In reply to: Column width

    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

    #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

Viewing 30 results - 86,791 through 86,820 (of 142,852 total)