Forum Replies Created
- 
		AuthorPosts
- 
		
			
				
did you change some settings via advanced styling? 
 we had here the case that someone inserted a color with two ## – and that leads to a conflicthave you made any changes to other css (custom.css etc.) ? im looking to this : 
 https://www.lindabradleycounseling.com/wp-content/uploads/dynamic_avia/enfold_child.cssand now i see it – there must be a missing bracket or something like that. can you please insert it with an important ! .responsive .logo { display: none !important }and see if it helps better. 
 Clear the cache of your minimizer after itand even in your quick css there is no such rule ( i gave you twice ) the last rule in a css don’t need a semicolon – only in between rules to separate it. So this with only one thing inbetween the curly brackets has no influence where did you insert the rule ? i don’t see the rule in your css! 
 you have a minimizer on start : please empty all cache datasyes that is in new 4.2 you can activate it via functions.php of your child-theme: add_theme_support('avia_template_builder_custom_css');Theme Options on Enfold (Child) – Main Menu – General – “Append search icon to main menu” are you using a child-theme ? 
 Than put it in your functions.php of your child-theme.On edit mode of the alb element ( Masonry , Portfolio Grid, Magazine, Blog Posts … ) there will be an order option to choose under custom css (if activated) there are 
 Custom Query Orderby
 Custom Query Order- 
		This reply was modified 7 years, 12 months ago by Guenni007. 
 i think it was the function name – with the white screen 
 you have to prove always if you have used it allready. If a function name is there twice it ends up in a white screen.by the way – have a look to your team member page: https://kriesi.at/themes/enfold-2017/elements/team-member/ do you see images – i guess they have the test.kriesi.at link in it ( thats the past) by the way – i don’t like file names too – there is a fix to show the description instead : 
 on galleries or images:function gallery_title_fix(){ ?> <script> (function($){ $(window).load(function() { $('.lightbox-added img').each(function(){ var lin = $(this).attr('alt'); $(this).attr('title',lin); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'gallery_title_fix');what enfold version do you have installed ? And no – Enfold – Theme Options – Main Menu – Burger/Mobile Menu (2nd tab) - 
		This reply was modified 7 years, 12 months ago by Guenni007. 
 i think you are using an extra lightbox plugin – and not using the embedded one of enfold. 
 under enfold – theme options – is there a mark on “Lightbox Modal Window”Appearance – Enfold (Child) – Main Menu – Burger Mobile Menu (2nd Tab) – Menu Icon Submenu items 
 select menu you like ( always display – on click – on hover)November 6, 2017 at 2:26 pm in reply to: Separator with dots ok, but not with the burger menu #873067i misunderstood your request – just go back to your non deviders layout – 
 i thougt you like to have dotted deviders.the only code you need is here https://kriesi.at/support/topic/separator-with-dots/#post-873056 :yoo i embedded your avia.js in a child-theme via: add_action( 'wp_enqueue_scripts', 'wp_change_aviajs', 100 ); function wp_change_aviajs() { wp_deregister_script( 'avia-default' ); wp_enqueue_script( 'avia-default-child', get_stylesheet_directory_uri().'/js/avia.js', array('jquery'), 2, true ); }works ! November 6, 2017 at 2:12 pm in reply to: Separator with dots ok, but not with the burger menu #873056just change your code to: .av-main-nav li.menu-item > a:before { content: '•'; margin-right: 22px; }November 6, 2017 at 2:03 pm in reply to: Separator with dots ok, but not with the burger menu #873053November 6, 2017 at 1:41 pm in reply to: Separator with dots ok, but not with the burger menu #873047you have the choice of a separator on menu by enfold options. 
 called “Separator between menu items”if you choose the small one the code looks like this after i changed it to dotted and 2px (thats for main menu) .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text { border-left-style: dotted; border-left-width: 2px; }for mobile same thing ( you only see those dots if border-width gets 2px minimum ) 
 if you got a different choice of overlay you have to look what code this is .the rule goes always to border-style .html_av-overlay-side-classic #top .av-burger-overlay li a { border-bottom-style: dotted; border-bottom-width: 2px; }one off topic question – how did you insert in footer (not socket) the social bookmarks ok – on my end it works except if there is color-section – than it is above. 
 now my skills are at their finish –guess you have to wait til mods are here. – Maybe there is an easy method. 
 i read a lot of ajax and the possibility to get in dynamic content – but this goes over my needs to help you now furthermore.this is another method – but because color-section is content too it will be before it: function insert_before_content($content) { $beforecontent = '[av_sidebar widget_area="under-title"]'; $fullcontent = $beforecontent . $content ; return $fullcontent; } add_filter('the_content', 'insert_before_content');- 
		This reply was modified 7 years, 12 months ago by Guenni007. 
 on scroll with shrinking header it goes to the non transparent option so 
 it must be in the enfold options page – theme options – Logojust do in quick css: .responsive .logo { display: none; }try this selector: .av-masonry-container a:nth-of-type(1) .av-inner-masonry { border: 10px solid #900; }styling the a itself is ugly :lol function insert_container_overmain(){ ?> <script> jQuery(function() { jQuery("#main .content.av-content-small:first-child").prepend("<div class='overmain'> </div>"); jQuery(".avia-section .overmain").removeClass("overmain"); jQuery(".overmain").css("height", "120px"); }); </script> <?php } add_action('wp_head', 'insert_container_overmain');not knowing how to get in there the widget. function insert_container_overmain(){ ?> <script> jQuery(function() { jQuery('#main .av-content-small:first-child').prepend('<div id="overmain"> </div>'); jQuery('#overmain').css('height', ' 120px'); }); </script> <?php } add_action('wp_head', 'insert_container_overmain');this will be the right position. – 
 but i do not know how to get in the prepended content the do_shortcode ruleand this is only for pages/posts with sidebar ! you want it besides the sidebar but over the first content ? you can now remove it – i know what you like to have - 
		This reply was modified 7 years, 12 months ago by Guenni007. 
 so you see it is the right position – 
 so now make an own widget ( without defining / registering ) just on widget area
 name it you like f.e: under-titlemaybe without divs add_action('ava_after_main_title', function() { if ( is_page() || is_single() || is_singular( 'portfolio' ) ) { echo do_shortcode("[av_sidebar widget_area='under-title']"); } });
 put in there the things you likecan you please insert the code to functions.php of your child-theme: add_action('ava_after_main_title', function() { if ( is_page() || is_single() || is_singular( 'portfolio' ) ) { echo '<div class="container">'; echo do_shortcode("[av_sidebar widget_area='Sidebar Blog']"); echo '</div>'; } });
 and than insert to sidebar blog everything you like to view on that area.
 just to see where it is placedi must see a live link. 
 and this is a bit different to the screenshot above. On the first one it is directly under the bread-crumps (title bar)
 The woocommerce should go in that field ?
 Determine if woocommerce got his own shortcode for that.Now you say it is for every page – than it will be better to create an own widget area with position determined. 
 This do_shortcode gives you the oportunity to place it directly above all content – the first position in main.to decide only from a screenshot nearly impossible. click to enlarge – you see this was my test – just under breadcrump before the other main content. 
  - 
		This reply was modified 7 years, 12 months ago by Guenni007. 
 you see on my test page above that it is dimmed now to 0.8 and on hovering goes to opacity 1 – but you reach the same result the other way round: #avia-menu li { opacity: 0.5 !important } #avia-menu li:hover { opacity: 1 !important }the not selector is more used in templates and themes as you know ( go and make a search for “:not” in enfold folder ) – but here with a highly specific state of “hover” you can do it the common way. is it allways ? 
 could you take the blog-widget for it – because you don’t use it elsewhere?
 Then you can take that for itadd this to your functions.php of your child-theme: add_action('ava_after_main_title', function() { if ( is_single() || is_singular( 'portfolio' ) ) { echo '<div class="container">'; echo do_shortcode("[av_sidebar widget_area='Sidebar Blog']"); echo '</div>'; } });you see the if clause – you can do all the things an if-clause can do as is_page ; is_category; is_singular(‘event’) etc if you don’t like to use blog widget for it 
 create an own widget just by adding one in widget area maybe call it after-titleadd_action('ava_after_main_title', function() { if ( is_single() || is_singular( 'portfolio' ) ) { echo '<div class="container">'; echo do_shortcode("[av_sidebar widget_area='after-title']"); echo '</div>'; } });you only have to style it than via quick css 
 the width is still set via the container to your enfold width- 
		This reply was modified 7 years, 12 months ago by Guenni007. 
 
- 
		This reply was modified 7 years, 12 months ago by 
- 
		AuthorPosts



