Viewing 30 results - 91,441 through 91,470 (of 142,900 total)
  • Author
    Search Results
  • #678139

    In reply to: Move Mega Menu Up

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top #header.av_header_transparency .avia_mega_div {
        margin-top: -37px;
    }
    

    Best regards,
    Vinay

    #678110

    Hi,

    Please try adding following code as well

    #top .av-large-testimonial-slider .avia-testimonial-content { clear: both; }

    If that too does not help, please post the link to your page when you launch it. Shooting in the dark does not make much sense :)

    Best regards,
    Yigit

    #678092

    Hi,

    please try this solutions mentioned here: https://kriesi.at/support/topic/google-maps-not-working-10/page/2/#post-678048

    Best regards,
    Andy

    #678088
    Obeatone
    Participant

    Hi,
    I have to replace my main menu on several pages so I installed a plugin named Menu Swapper.
    The problem is that the wonderfull Ajax search in the menu replacement is nolonger showing ;(.

    Here is a page with the main menu : http://www.lespetillantes.fr/site/ (I put the ajax search in top right of the page).

    And here is a page with a menu replacement : http://www.lespetillantes.fr/site/magazine/

    Have you any idea on how I can have the Ajax search with my menu replacement ?

    Thank you very much for your help !

    #678070

    Topic: Layerslider WP Blank?

    in forum Enfold
    jessicastjames
    Participant

    Hi there, I was using the Layerslider completely fine about a year ago and then stopped working on my website until recently. I purchased your theme and installed the updates files and everything else seems to be working perfectly, However – when i go to edit the layerslider.. the slides show on the sliders page.. but when i click to edit, everything is blank and none of the buttons are selectable. I noticed it states there is an update available, but when i go to that page it explains as I did not purchase from them directly, it would need to be updated by the creator of enfold. I don’t know if this could be the issue, or if there’s something i’m missing? Please see screen shots below! (The slider still shows correctly on the website)



    #678061
    pauldevine78
    Participant

    hi,

    page builder is not working, upgraded wordpress to latest version and stop working.

    Any advice please?

    #678048

    Hi guys,

    the maps on our website-frontend kept saying “Ooops! Something went wrong”, too. And setting up maps in the backend is not working either. At last I got the frontend maps back to live with a workaround:

    First things first: As of June 22, 2016 Google made changes to the Google Maps APIs Standard Plan -> http://googlegeodevelopers.blogspot.de/2016/06/building-for-scale-updates-to-google.html
    This means: Developers (and this is not only meant for theme or plugin developer, also for those that buy these plugins and themes and use them) have to set up an API key!

    Kriesi has already set up a documentation about “How to set up an API key” here -> http://kriesi.at/documentation/enfold/how-to-register-a-google-maps-api-key/

    Since some of the maps still didn’t want to show up on the frontend website, I added the exact URLs into the API console, as @swissclick already described here -> https://kriesi.at/support/topic/google-maps-not-working-10/#post-676616

    That helped with all the maps, that are set in to a page in full width. But we also have some small maps and they kept showing the errors.

    So the javascript console helped at this time by showing something like “InvalidKey” even though I had set up the Google Maps API Key in the options of the enfold theme.

    Then I added
    <script src="https://maps.googleapis.com/maps/api/js?libraries=places&key=your_api_key_here"></script>
    before the closing
    </body>
    in my footer.php, reloaded the page wich displayed the errors until then and voilá, the map is now working correctly, the error is gone.

    What still doesn’t work is the setup of a new map in the editor. The translation of an address into geo coordinates does not work. So both of this looks like it needs to be fixed, because I don’t want to let this workaround stay in the code for too long.

    So if anybody of you has any idea on how to fix this last problem, I’d be more than happy.
    Thanks and best regards,
    Patrick

    #678036

    Vinay,

    This does not seem to achive what is required what is needed is for all the buttons to be aligned with the text boxs being of the same size whether on tablet iphone or desktop so all columns are aligned. if I use what you suggest alignment will be either top, middle or bottom so each columns will appered to be skewed dependant where the aligment is selected. The issue is to ensure the text boxs are all the same size. I hope you can help.

    Pete

    Hi Andy,
    thanks for answer and your assistance.

    We have used the code snippet until now from your first link in our funtcions.php:
    https://kriesi.at/support/topic/how-to-display-the-sidebar-in-events-calendar-pages/#post-356399

    add_action('tribe_events_template', 'avia_events_tempalte_paths', 10, 2);
     
    function avia_events_tempalte_paths($file, $template)
    {
        $redirect = array('default-template.php' , 'single-event.php' , 'pro/map.php' );
         
        if(in_array($template, $redirect))
        {
            $file = AVIA_EVENT_PATH . "views/".$template;
        }
         
        return $file;
    }
    

    since updating to TEC 4.2.5, the code snippet no longer works as it did before.
    We could find out that the access on the changed files with sidebar ‘default-template.php’ and ‘single event.php’ in the path of our enfold childtheme doesn’t work like before (…/views/).
    It seems in such a way that ‘default-template.php’ and ‘single event.php’ from parent theme enfold will be executed.

    It works, when deleting the following code in TEC version 4.2.5. In 4.2.4 this was not yet in ..\the-events-calendar\src\Tribe\templates.php

    } else {
        $file = apply_filters( 'tribe_events_template', $file, $template );
    }
    

    Additional information:
    If I exchange the file default-template.php in the Parent theme of Enfold (wp-content/themes/enfold/config-events-calendar/views)
    against the file from our childtheme (with sidebar), it works.
    So it has to do with the fact, that default-template.php from child theme is not executed as before.

    
    <?php
    
    /* default-template.php with sidebar in child theme*/
    
    global $avia_config;
    
    	/*
    	 * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    	 */
    	 get_header();
    		
    	 $title = tribe_is_month() ? __('Calendar of Events', 'avia_framework') : tribe_get_events_title(false);
     	 $args = array('title'=> $title, 'link'=>'');
    
     	 if( !is_singular() || get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title($args);
     	 
     	 do_action( 'ava_after_main_title' );
     	 
    	 ?>
    
    		<div class='container_wrap container_wrap_first main_color fullsize'>
    
    			<div class='container'>
    
    				<main class='content <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content'));?>>
    					
    
    					
    					
    
    					<div id="tribe-events-pg-template">
                       
    
                     	<?php
                     	
    					tribe_events_before_html();
    					tribe_get_view();
    					tribe_events_after_html(); 
    					
    					?>
    					
    					</div> <!-- #tribe-events-pg-template -->
    					
    				<!--end content-->
    				</main>
    				<!--display sidebar -->
    				<?php get_sidebar( $name ); ?>
    			</div><!--end container-->
    
    		</div><!-- close default .container_wrap element -->
    
    <?php get_footer(); ?>
    

    Best regards
    Hans-Gerd

    • This reply was modified 9 years, 7 months ago by hagege. Reason: Additional information
    #678020
    Sadegh
    Participant

    Hi,
    Please take a look at the test page in Private area.

    > In this page, I want to have a custom font (Dinar) for the button.

    This is what I had already done to make that possible:
    1>> I have already upload 2 custom fonts in Enfold-Child folder, names are “IRANSans” + “Dinar” and I also added @font-face commands for these fonts in custom.css file in Enfold; exactly like the below code:

    @font-face {
    font-family: 'IRANSans';
    src: url('http://inomax.ir/wp-content/webfonts/IRANSansweb.eot');
    src: url('http://inomax.ir/wp-content/webfonts/IRANSansweb.eot?#iefix') format('embedded-opentype'),
    url('http://inomax.ir/wp-content/webfonts/IRANSansweb.woff2') format('woff2'),
    url('http://inomax.ir/wp-content/webfonts/IRANSansweb.woff') format('woff'),
    url('http://inomax.ir/wp-content/webfonts/IRANSansweb.ttf') format('truetype'),
    url('http://inomax.ir/wp-content/webfonts/IRANSansweb.svg#IRANSans') format('svg');
    }
    fieldset label {
        font-family: "IRANSans" !important;
    }
    @font-face {
    font-family: 'Dinar';
    src: url('http://inomax.ir/wp-content/webfonts/dinar.eot');
    src: url('http://inomax.ir/wp-content/webfonts/dinar.eot?#iefix') format('embedded-opentype'),
    url('http://inomax.ir/wp-content/webfonts/dinar.woff2') format('woff2'),
    url('http://inomax.ir/wp-content/webfonts/dinar.woff') format('woff'),
    url('http://inomax.ir/wp-content/webfonts/dinar.ttf') format('truetype'),
    url('http://inomax.ir/wp-content/webfonts/dinar.svg#IRANSans') format('svg');
    }

    2>> “IRANSans” is now shows properly in the whole of the website, there is no problem with this font.
    3>> But for the button, I applied custom css class to that button element, the class name was choose as “test-pg-title”
    4>> I then add this below code to the Quick Css part:

    #top .test-pg-title a .avia_iconbox_title {
        font-family: 'Dinar' !important;
    }

    But, the “button” is still doesn’t show the desired font, “Dinar”.

    Please let me know.
    Regards,
    Sadegh

    #677988

    Hey DenktankerMedia,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .header-scrolled .av-main-nav-wrap {
        margin-top: -132px;
        transition: all .15s ease;
    }
    

    Best regards,
    Vinay

    #677985

    Hey Peter,

    Please try adding this at the very end of your themes / child themes functions.php file:

    /* Open links in new tab */
    function open_new_tab(){
    ?>
    <script>
    jQuery(window).load(function(){ 
    	jQuery(".av-masonry-entry.isotope-item").attr('target','_blank');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'open_new_tab');

    Best regards,

    If this does not work for you please provide a link to your site where we can see the element in questions to help you better :)

    Vinay

    • This reply was modified 9 years, 7 months ago by Vinay.
    #677958

    Ahoy,

    The top section is a fullscreen slider, i don’t believe I can add a page id to it…

    I went ahead a created a home menu in the tab, how do I hide it? Also even though I have added it, the “What we do” link is still highlighted.

    Please advise

    • This reply was modified 9 years, 7 months ago by mcraig77.

    @repking: I found a solution that worked for me. I posted it in the thread I opened here:

    No guarantees however that this also works for the other users who are having the same issue. But it worked for me.

    • This reply was modified 9 years, 7 months ago by winnieandbuzz.
    #677951

    In reply to: sidebar

    Hey Sadegh,

    Thank you for using Enfold.

    1.) Add this in the Quick CSS field:

    .container_wrap {
        border-top: 0;
    }

    2.) Use this one:

    .sidebar_left.sidebar {
        text-align: left;
    }

    3.) Increase the width in the Enfold > General Layout > Dimensions panel. Adjust the value of the Maximum Container width option.

    If possible, please create a single thread or post for each inquiry. Thank you.

    Best regards,
    Ismael

    #677929

    Hey!

    Try adding this code to the Quick CSS:

    #top #footer .av_font_icon a {
        color: #666666;
        background: white;
        padding: 9px;
    }

    Cheers! 
    Josue

    #677927

    Hi,

    Ok, thanks for the feedback. Let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #677922

    Hi,

    Please add ID #home to the top color section if that don’t work add a menu item “Home” in Appearance > Menu and we can hide it using CSS. That way the script will recognize different sections correctly.

    Best regards,
    Vinay

    #677915

    Hi Fabrizio,

    Great, glad you got it working and thanks for sharing your solutions :-)

    We don’t need to check your installation if you have all your problems fixed. We’ll leave the thread open in case you should have any further problems on the topic.

    Best regards,
    Rikard

    #677885
    zcl
    Guest

    What is the best way to add a sub-theme css styles are? Parent topic will not be upgraded version of the impact

    thecszone
    Participant

    Hi,
    I have a two items I need help with.
    1. I created a bread crumb shortcut [bread_crumb] per the tutorial and it works fine, but now I need to style it, but don’t know what to add to my custom css to do so. You can see the breadcrumbs on the page for the URL below. I want to remove the white background and the border, center it, and move closer to the text above. I have included a link to a screen shot with notes, too. I will need to know how to style this on mobile as well if it doesn’t resize. Note – it’s hard to see the white space on the image, but it’s clear when viewing the page.

    2. On the same page I am using a partner/logo element. I have figured out how to put more space vertically between the rows, but I want to put more space between the photos horizontally as well. I used this custom css to change the space between the rows.

    #top .avia-logo-grid .slide-entry-wrap {
    margin-bottom: 20px!important;
    }

    #677876

    Did not change anything….
    The “box” or whatever it is that stores the testimonial IS centred but both the photo and text seem to be aligned to the left within that, leaving a lot of “dead” space on the right.

    what did seem to change the placement of the text is this:
    #top .avia-testimonial-content {
    font-size: 20px !important;
    line-height: 30px;
    text-align: center!important;
    }

    BUT – this made the text centred in its own box, which looks strange AND the photo is still stuck on the right…
    Here is a screenshot
    In the Private Content you can see the page source

    Thanks
    D

    • This reply was modified 9 years, 7 months ago by Yigit.
    #677869

    Hey apremierdj,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry{
    -webkit-animation: none; /* Safari 4+ */
    -moz-animation: none; /* Fx 5+ */
    animation: none; /* IE 10+ */
    }
    
    .av-masonry-entry {
    opacity: 1 !important;
    visibility: visible !important;
    }
    

    Best regards,
    Vinay

    #677855
    condonpb
    Participant

    If you goto http://respectacle.wpengine.com/ (hosted on WPengine) and you will see a section called Eyecare. Blow this there are two sections “Examinations” and Contact “Lenses”. What I wnat is to ensure that both “Read More” buttons are aligned whether viewing on desktops or iphone or tablets and i can seem to get these the same I have been using:
    .avia-builder-el-60 .avia_textblock, .avia-builder-el-66 .avia_textblock {min-height:280px!important;}
    This works on desktops but not on tablet or iphone can you help me please.
    Many thanks
    Pete

    #677831
    jjfulfer
    Participant

    Hi, I’m using a grid (2 columns wide) with 2 image in each column. Can you help me remove the extra space between the images within each row? (I adjusted the grid setting to eliminate the padding to the top/bottom/left/right, but that did not change the spacing between the images in each column).

    I also searched the forum for css to fix, but couldn’t find a solution…

    Thank you! Great theme! Great service.

    #677826

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #top .av-large-testimonial-slider .avia-testimonial-content {
        text-align: center!important;
    }

    Regards,
    Yigit

    #677815

    I spent the last 3 hours and after setting up 3 API keys – none of which worked – also tried the Google API Plugin.
    Note: After updates of WP – Enfold – all plugins – this was when I noticed maps stopped working. Originally I had Google Maps Widget Plugin installed. I used that Widget for my primary map areas. I had also used Enfold Maps Widget.
    Not sure exactly what/why it worked but I deactivated Google Maps Widget plugin and Google API Plugin. Then Enfold Maps Widget worked. I prefer Google Maps Widget for easier display, etc.
    So after Enfold Maps Widget worked, I reactivated Google Maps Widget plugin, and I REMOVED the API key and now they both work.
    Just FYI, I tried the API key in Google Maps Widget settings, Google API Plugin and Enfold Google Services – didn’t seem to work in any combination – only when I removed it.
    Hope this helps someone

    #677787

    Hey Andy, naja, genau darum gehts.. wenn ich eingeloggt bin, also wie du jetzt in deinem Screenshot ist alles einwandfrei.
    Das hab ich ja auch nie bemängelt, versuch das ganze jetzt doch mal als “gast” also eben NICHT eingeloggt dann taucht das Poblem auf. :)

    Das Anpassen wäre nicht das Problem, ich muss lediglich folgende Werte korrigieren und es wird ohne Probleme auch für “Gäste die nicht eingeloggt” sind ordentlich angezeigt.

    #top #review_form #respond .comment-form-rating {
    position: absolute;
    right: 15px;
    top: 30px;
    }

    zu:
    position: relative;
    right: 0px;
    top: 0px;

    Denn genau darum geht es.. laienhaft korrigieren kann ich schon ein wenig.. aber is it a Bug or a Feature?

    Und zum Rest.. danke… dann hab ichs einfach falsch aufgefasst .. sorry dafür !

    Gruß
    Dennis

    • This reply was modified 9 years, 7 months ago by dfarin.
    #677780

    Hi,

    try to use this code inside Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
    width: 110% !important;
    }}
    

    and adjust as needed.

    Best regards,
    Andy

    I think I understand now why Kriesi calculates the image the way he does, ’cause the calculation has to work no matter where the parallax section sits. E.g. if it is NOT the first row on a page, the image indeed has to cover the whole browser height.
    I am so used to having the first row as parallax image and a transparent header on top, that I didn’t think about it more.

    BUT, that doesn’t mean you/he shouldn’t consider applying another calculation for the first row (the header section if you will), because there the image always is smaller than the parent section and so it’ll always cut of the bottom.

Viewing 30 results - 91,441 through 91,470 (of 142,900 total)