Viewing 30 results - 76,771 through 76,800 (of 142,941 total)
  • Author
    Search Results
  • #822190

    Same here, a second menu without styling.

    And a burger menu on desktop on some browsers.

    Hope there is a fix soon.

    Hi,
    Hum, when I look I see the property addresses, and when I click that I see the image.
    Is that what you are seeing?
    I see that the burger menu is not getting the classes or IDs from the menu, I will ask the team for help with this.
    If we can hide some items for desktop and others for the burger menu, would that be a good solution for you?

    Best regards,
    Mike

    #822171

    Hi Mike,

    I inspected the code more deeply and I would NOT say, the heights and measurments are due to browser calculation: The class grid-entry is calculated somehow cause the left-position as an absolute position as well as the heightof the grid-sort-container isotope no_margin-container with-excerpt-container grid-total-odd grid-col-3 grid-links-ajax isotope_activated … so I think the calculation misses some special cases (e.g. rounding errors).

    But I would also guess that this calculation of the positions and height could also insert some additional classes if the calculated width below a limit…. Therefore I’m curious if there is a chance to have a more dynamically set grid-entry-excerpt.

    thx
    roland

    ps I just tried adding the “only_desktop” css class to the photo on the first property and it didn’t hide it… I saw another thread that css classes on the mobile menu aren’t working.

    #822168

    Trying more options, I managed to target the MENU element, but I’d like to add a hover effect to the hamburger, plus the CH is still in the wrong place. Please advise :)

    .avia-menu.av-main-nav-wrap:after {
        content: "中文";
    	font-style: Arial;
        font-size: 14px !important;
        left: 2px;
    	/*display: inline-block;*/
        position: absolute;
        /* top: 30px;*/
    }
    
    .av-hamburger:before {
    	content: 'MENU';
    	font-size: 14px;
    	padding-right: 10px;
    }
    #822161

    Didn’t work; looks like that is before the mobile menu element.

    div.avia-menu.av-main-nav-wrap:before {
    	content: 'MENU |';
    	font-size: 13px;	
    }
    
    div.avia-menu.av-main-nav-wrap:after {
        content: "中文";
    	font-style: Arial;
        font-size: 14px !important;
        left: 2px;
        position: absolute;
        top: 30px;	
    }
    #822150

    Hi,

    @hohnesy
    to add post meta to your posts created with the advanced layout editor, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function post_meta_shortcode(){
    	ob_start();
    	 $taxonomies  = get_object_taxonomies(get_post_type($the_id));
    	    $cats = '';
    	    $excluded_taxonomies =  apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id);
    
    	    if(!empty($taxonomies))
    	    {
    	        foreach($taxonomies as $taxonomy)
    	        {
    	            if(!in_array($taxonomy, $excluded_taxonomies))
    	            {
    	                $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
    	            }
    	        }
    	    }
    
    	    if(!empty($cats))
    	    {
    	        echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    	        echo $cats;
    	        echo '</span>';
    	    }
    
    	echo "<span class='post-meta-infos' style='margin-top: -25px;'>";
    	$markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
    	echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>";
    	echo "<span class='text-sep text-sep-date'>/</span>";
    
    	    if ( get_comments_number() != "0" || comments_open() ){
    
    	    echo "<span class='comment-container minor-meta'>";
    	    comments_popup_link(  "0 ".__('Comments','avia_framework'),
    	                          "1 ".__('Comment' ,'avia_framework'),
    	                          "% ".__('Comments','avia_framework'),'comments-link',
    	                          "".__('Comments Disabled','avia_framework'));
    	    echo "</span>";
    	    echo "<span class='text-sep text-sep-comment'>/</span>";
    	    }
    
    	    echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
    	    echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>';
    	    echo '<span class="vcard author"><span class="fn">';
    	    the_author_posts_link();
    	    echo '</span></span>';
    	    echo '</span>';
    	    echo '</span>';
    	echo '</span>';
    	return ob_get_clean();
    }
    add_shortcode( 'sc_post_meta', 'post_meta_shortcode' );

    then add this shortcode to your text block element:

    [sc_post_meta]

    Back end:

    Front end:

    Best regards,
    Mike

    #822136

    In reply to: Enfold theme

    Hey karen,
    If you are using the theme for the same domain and on a sub domain then you should be ok with a single license.
    You can use a sub domain as a staging area for develop your site in Enfold before moving it to your live domain, or you can develop on your desktop with a localhost app, such as the free version of MAMP for Mac or XAMPP for Windows, or LAMP for Linux :)
    I use the portable UwAmp on Windows 10

    Best regards,
    Mike

    #822127

    Hey Shiv722,
    Sorry scrolling tabs is not an option right now, Please feel free to request – or vote if already requested – such feature on Enfold feature request form.
    But I wrote some code to help :)
    This is for tablets to bring the tabs closer together:

    @media only screen and (min-width: 768px) and (max-width: 1023px) { 
    #top .av-section-tab-title {
        padding: 0px !important; }
    #top .av-tab-section-tab-title-container .av-section-tab-title {
        padding-right: 10px!important;
    }}

    This is for mobile to center the tabs and bring them closer:

    @media only screen and (max-width: 767px) { 
    .av-tab-section-tab-title-container.avia-tab-title-padding-default {
    left: -200px !important; }
    #top .av-tab-section-tab-title-container .av-section-tab-title {
        padding-right: 0px!important;
    }
    #top .av-section-tab-title {
        padding: 0px !important; }}

    As for your TM, I removed the span style and added a span class and wrote this css for mobile and desktop:

    .tm {font-size: 40px !important; }
    @media only screen and (max-width: 767px) { 
    .tm {font-size: 20px !important; }}

    adjust to suit :)

    Best regards,
    Mike

    #822118

    In reply to: Layer Slider

    Hey Mike3210,

    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

    #822114

    Hey PaddleSurfEs,

    Please refer to this thread for a possible solution.

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

    I kept searching and found this awesome link about adding section before the footer by using a hook on “get_footer” that will do the trick way simplier then my previous ideas. This way i can place the html i’ll want with new widget zones.

    Thanks anyway for the help

    #822097

    Unfortunately that did not work. the caption over the video is not in the center its too much to to the top of the page

    #822071
    SK722
    Participant

    Hello,

    Is there a way to have the tabs be scroll-able? Currently, especially on mobile, you have to click each tab in order for you to see whats next. Is there a way a person can scroll through the tabs in order to choose which topic they want to click?

    Also, on my homepage, how do i get the TM to be smaller? Currently, on mobile it shows very big?

    Hey Denys,

    Here are some threads to consider:
    https://kriesi.at/support/topic/category-archive-page-change-layout-to-show-excerpt/

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

    #822063

    Hi,
    Your issue was the Yoast plugin was redirecting the author achieve page.
    I disabled it and your author page is now working. All your blog post have your author link at the top of the post with the date and category.
    I couldn’t find a fix for the Yoast plugin, perhaps their support forum has an answer, try there :)
    Try your author link in the Private Content area & see the screenshot.

    Best regards,
    Mike

    #822056

    Hi Arne,

    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: 989px) and (min-width: 768px) {
    .responsive.html_mobile_menu_tablet.html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 123px;
    }
    }
    

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

    #822054

    ok, I clear the cache
    1. mobile menu : back to normal now, only the position is not properly showing
    2. laptop menu: stay working strangely… it is taking a large place (almost a whole page) and you have to hard fresh again to make it back normal

    #822053

    I have an iPad mini, where the screen size is 768×1024.
    So then my iPad is not included.

    Why is the setting from 990 and below, when some (like mine) tablets this bigger screensize?
    I guess it is because it would affect several desktops too, if was from 1024 and below…?

    :-(

    #822052

    Same problem here, a second menu at the top with no styling showed up after upgrading…

    Anyone with a solution ?

    #822051

    This was the code added to the “Quick CSS”:

    #mobile-advanced a, #mobile-advanced .mega_menu_title {
        padding: 10px 28px;
    }
    #mobile-advanced li > a:before, .html_header_mobile_behavior #mobile-advanced span > a:before, #mobile-advanced .mega_menu_title:before {
        right: 0;
        margin-right: 10px;
    }
    #mobile-advanced li > a:before, .html_header_mobile_behavior #mobile-advanced span > a:before, #mobile-advanced .mega_menu_title:before {
        content: "\25C4";
        top: 10px;
    }
    #mobile-advanced ul {
        margin: 0;
        padding-right: 20px;
    }
    #mobile-advanced ul a, #mobile-advanced .mega_menu_title {
        padding-right: 28px;
    }

    I don’t remember if the menu was already aligned to the right and the code just organized the sub-menus, but this is what I’ve got there.

    #822038

    Hi,
    Try this code in the General Styling > Quick CSS field:

    #top .header_color .dropdown_widget .buttons {background-color: #000 !important; }
    div .dropdown_widget .cart_list li:hover {background-color: #000 !important; }

    See screenshot in Private Content area :)

    Best regards,
    Mike

    #822031

    and after updating to enfold 4.1

    the mobile menu logo disappear!!!!!!
    ( Latop menu logo also not working properly)

    I shouldn’t have update to 4.1

    old problem didn’t fix, but get new problem now the menu is not working at all

    #822030
    Asterios
    Participant

    Dear Team,

    please help me with this bugs that came up after the last update to 4.1.

    1. I now have the desktop menu and the burger menu shown on the site.
    2. I have no menu icon on the mobiles or tablets.
    3. The google map in the events doesn´t appear anymore

    Best Regards
    Asterios

    • This topic was modified 8 years, 9 months ago by Asterios. Reason: found more problems
    #822027
    Bergbursche
    Participant

    Hi there

    i am using a Masonry for displaying posts on my page (see https://bergbursche.ch, scroll down on the main page and hit “mehr laden”. Do not follow the Button-Link since this is the old design). Everything is fine until you hit “load more”. Than the centered overlay is magically lifted out of the center to the top.

    How can i remove this behavior so that the text is always centered?

    Thanks
    Mats

    #822026

    Hi,
    Perhaps you don’t have full admin access, or someone has supper admin and is blocking edit from you? Or you have a security plugin and you need to give yourself edit permission?
    postimage
    Try FTP access and edit functions.php at: (your host)\wp-content\themes\enfold
    postimage
    Save a backup copy of the un-modified functions.php on your desktop… just in case :)

    Best regards,
    Mike

    Please close this topic, i solved this

    #822013

    Hi rengarajan,

    The header is 80px on mobile as it was, you can reduce the logo image a bit, if you like

    
    @media only screen and (max-width: 479px) {
    .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>img {
        opacity: 1;
        width: 70%;
    }}
    

    Does the hamburger menu still show up?

    Best regards,
    Victoria

    Hi Dana2225,

    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: 479px) {
      .responsive #top .slideshow_caption .avia-caption-content p {
        font-size: 20px !important;
        line-height: 20px;
    }
    .responsive #top .slideshow_caption h2 {
        font-size: 28px !important;
    }
    #top .avia-slideshow-button.avia-color-light {
        padding: 8px 10px;
        background-color: rgba(0,0,0,0.2);
        font-size: 16px !important;
    }
    }
    
    

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

    #822000

    In reply to: Gallery with Filters

    Hi,

    Great, glad you got it working and that we could help out. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 30 results - 76,771 through 76,800 (of 142,941 total)