-
AuthorSearch Results
-
July 16, 2017 at 10:18 pm #822190
In reply to: Two menus shown after update to 4.1
Same here, a second menu without styling.
And a burger menu on desktop on some browsers.
Hope there is a fix soon.
July 16, 2017 at 10:08 pm #822188Hi,
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,
MikeJuly 16, 2017 at 9:11 pm #822171In reply to: Portfolio items – Excerpt alignments…
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-entryis calculated somehow cause theleft-positionas an absolute position as well as theheightof thegrid-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
positionsandheightcould also insert some additional classes if the calculatedwidthbelow a limit…. Therefore I’m curious if there is a chance to have a more dynamically setgrid-entry-excerpt.thx
rolandJuly 16, 2017 at 9:11 pm #822170ps 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.
July 16, 2017 at 9:08 pm #822168Trying 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; }July 16, 2017 at 8:50 pm #822161Didn’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; }July 16, 2017 at 8:20 pm #822150In reply to: How to Create Author Page Enfold
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,
MikeJuly 16, 2017 at 7:02 pm #822136In 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 10Best regards,
MikeJuly 16, 2017 at 6:23 pm #822127In reply to: Tab Issue on Mobile Device
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,
MikeJuly 16, 2017 at 6:01 pm #822118In 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,
VictoriaJuly 16, 2017 at 5:50 pm #822114In reply to: How to add a "rel=nofollow" to my logo´s link?
Hey PaddleSurfEs,
Please refer to this thread for a possible solution.
If you need further assistance please let us know.
Best regards,
VictoriaJuly 16, 2017 at 5:30 pm #822100I 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
July 16, 2017 at 5:18 pm #822097In reply to: Fullwidth Easy Slider Banner Desktop vs Mobile
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
July 16, 2017 at 4:30 pm #822071Topic: Tab Issue on Mobile Device
in forum EnfoldSK722
ParticipantHello,
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?
July 16, 2017 at 4:24 pm #822065Hey 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,
VictoriaJuly 16, 2017 at 4:21 pm #822063In reply to: How to Create Author Page Enfold
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,
MikeJuly 16, 2017 at 4:08 pm #822056In reply to: Header issues in Enfold 4.1.1
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,
VictoriaJuly 16, 2017 at 3:56 pm #822054In reply to: page landing (menu landing and menu logo problem)
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 normalJuly 16, 2017 at 3:55 pm #822053In reply to: Tablet horisontal view: burger menu not showing
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…?:-(
July 16, 2017 at 3:55 pm #822052In reply to: Two menus shown after update to 4.1
Same problem here, a second menu at the top with no styling showed up after upgrading…
Anyone with a solution ?
July 16, 2017 at 3:49 pm #822051In reply to: Mobile menu RTL in Enfold 4.1
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.
July 16, 2017 at 3:33 pm #822038In reply to: Colors of shopping cart
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,
MikeJuly 16, 2017 at 3:12 pm #822031In reply to: page landing (menu landing and menu logo problem)
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
July 16, 2017 at 3:11 pm #822030Topic: Two menus shown after update to 4.1
in forum EnfoldAsterios
ParticipantDear 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 anymoreBest Regards
Asterios-
This topic was modified 8 years, 9 months ago by
Asterios. Reason: found more problems
July 16, 2017 at 2:57 pm #822027Topic: Masonry "Load more" sets overlay Text out of center
in forum EnfoldBergbursche
ParticipantHi 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
MatsJuly 16, 2017 at 2:55 pm #822026In reply to: How do I create a tagline under my logo?
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?

Try FTP access and edit functions.php at: (your host)\wp-content\themes\enfold

Save a backup copy of the un-modified functions.php on your desktop… just in case :)Best regards,
MikeJuly 16, 2017 at 1:49 pm #822014Please close this topic, i solved this
July 16, 2017 at 1:46 pm #822013In reply to: Header issues in Enfold 4.1.1
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,
VictoriaJuly 16, 2017 at 1:36 pm #822010Hi 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,
VictoriaJuly 16, 2017 at 1:03 pm #822000In reply to: Gallery with Filters
-
This topic was modified 8 years, 9 months ago by
-
AuthorSearch Results
Viewing 30 results - 76,771 through 76,800 (of 142,941 total)
-
Search Results
-
Topic: Tab Issue on Mobile Device
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?
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 anymoreBest Regards
Asterios
