Forum Replies Created

Viewing 30 posts - 5,311 through 5,340 (of 11,983 total)
  • Author
    Posts
  • in reply to: Tab Section Problem after Update #1234522

    i can reproduce it if i do not enter tab titles to show only images
    and i see that you have allready set the .av-outer-tab-title to display none – so put in some titles to look if that behavior is gone afterwards.

    in reply to: Tab Section Problem after Update #1234520

    Hi Mike and dear participants – i see there is a fix on github : https://github.com/KriesiMedia/enfold-library/tree/master/temp_fixes/Enfold_4_7_6_1/template_builder
    concerning to : avia-tab-section.js : i don’t know if this is related to your problems – but maybe you test that new js file.

    Edit: must be something different. I can not reproduce the “flickering” on tab change.

    in reply to: Tabs in the header #1234512

    could this be a way you like – these are only styled top menus: https://webers-testseite.de/impressum/
    but i have no time now to style the responsive case on that.

    • This reply was modified 5 years, 6 months ago by Guenni007.
    in reply to: CLOSED TABS ON MOBIL #1234511
    in reply to: CLOSED TABS ON MOBIL #1234496

    if you are satisfied with : https://webers-testseite.de/impressum/
    ( i just did it for that page ) then i will post the css you need.

    in reply to: CLOSED TABS ON MOBIL #1234438

    Well you can use the top-header on that :
    Enfold Child – Header – Extra Elements Tab and : Header Secondary Menu
    you have to define one menu as: Enfold (Child) Secondary Menu ( don’t know if you are using a child-theme)
    to style them as “tabs” like in your example page should be possible

    in reply to: Icon List Custom Pattern #1234436

    I am only kidding – I am of course a proponent of democracy, and as such for universal, direct, free, equal and secret elections!
    ______
    As said before – i do not see private Content Area – if you could not manage it yourself – you had to wait til mods are here.
    Or you describe your problem with the description above.

    ______

    Under my nick there is a contact info about me. If you give me the datas via E-Mail i would install it for you – but it has to be admin account.

    in reply to: Icon List Custom Pattern #1234430

    but if you can make it happen in the next few hours I will be super grateful!

    How much does your gratitude look like?
    If you want to do me a big favor, don’t vote for Trump ;)
    Best whishes to you all from Germany.

    Image

    in reply to: Icon List Custom Pattern #1234425

    Edit : this must be done by a mod – because as a participant like you – I don’t see the private content messages. But I guess everything is so easily explained that you can do it yourself.

    The background color does not shine through with full intensity, because the png’s in the spaces between were not fully transparent.
    You could change this by increasing the contrast of the pngs before upload

    in reply to: Icon List Custom Pattern #1234424

    in the ai doc there are some vector datas – but the most patterns are embedded images.
    So here we go with png files: https://webers-testseite.de/tagood.zip

    • Give a custom class to your icon-list : tagood-icons
    • upload all the png files to your media library
    • put this to your quick css: ( if you like to colorize the icons as i do )
    • adjust the file path to yours
    .tagood-icons .avia-icon-list li .iconlist-char:before {
      content: "";
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center ;
      left:0;
      top: 0;
      width: 100%;
      height: 100%;
      position: absolute;
      border-radius: 50%
    }
    
    .tagood-icons .avia-icon-list li:nth-of-type(1) .iconlist-char:before {
      background-image: url(/wp-content/uploads/art01.png);
      background-color: red;
    }
    .tagood-icons .avia-icon-list li:nth-of-type(2) .iconlist-char:before {
      background-image: url(/wp-content/uploads/art02.png);
      background-color: blue;
    }
    .tagood-icons .avia-icon-list li:nth-of-type(3) .iconlist-char:before {
      background-image: url(/wp-content/uploads/art03.png);
      background-color: green;
    }
    .tagood-icons .avia-icon-list li:nth-of-type(4) .iconlist-char:before {
      background-image: url(/wp-content/uploads/art04.png);
      background-color: yellow;
    }
    .tagood-icons .avia-icon-list li:nth-of-type(5) .iconlist-char:before {
      background-image: url(/wp-content/uploads/art05.png);
      background-color: darkmagenta;
    }

    you see how this works : the first settings are the same for all icons – and then you count to your list items 1, 2, 3 etc
    if you colorize you had to set a border-radius for them too
    in the zip there are 6 files – but you can have more

    in reply to: Icon List Custom Pattern #1234422

    i will see – and no panic it will work with png’s too:
    https://webers-testseite.de/tagood/

    in reply to: Icon List Custom Pattern #1234420

    i see that the source of the png was an ai ( Adobe Illustrator) File – that would be best – if it is a vector based file ( sometimes images are embedded in ai docs)
    In this case we could make an icon-font like entypo-fontello on : http://fontello.com/

    in reply to: Icon List Custom Pattern #1234417

    First : is there a better – bigger – sharper Image of that?
    And what does this mean:

    Hi I would like to create a custom icon or custom pattern to be more specific on one of the icons in your list

    Aren’t there round source patterns on that? best would be svg

    try this in quick css:

    .tab.active_tab, 
    :focus  {
        outline: none !important;
    }
    in reply to: CLOSED TABS ON MOBIL #1234409

    Thanks – but i’m Participant as you – so the other request has some infos in private content – which i do not see.

    in reply to: Small bar and " /> across the top of web site #1234382

    or do ask how those extra settings can be done to the head section ( not the header ) ;)

    in reply to: ReCaptcha Error again #1234372

    Ok – Danke

    in reply to: CLOSED TABS ON MOBIL #1234339

    If you want to change the switch point to a diffent one you had to adjust the value in the script aboveand to have some additional quick css entries:

    /****** Settings to change the tab switch point if it is different to 768px *********/
    @media only screen and (max-width: 989px) {
    	.responsive .tabcontainer.mobile-tabs-closed .tab_content {
    	    border-bottom: none;
    	    padding: 15px 30px;
    	    clear: both;
    	}
    	.responsive .tabcontainer.mobile-tabs-closed .tab_content, .responsive .tabcontainer .tab {
    	    width: 100%;
    	    max-width: 100%;
    	    border-left: none;
    	    border-right: 0;
    	    left: 0;
    	    top: 0;
    	    min-height: 0!important;
    	}
    	.responsive .tabcontainer.mobile-tabs-closed {
    	    border-width: 1px;
    	    border-style: solid;
    	    border-top: none;
    	    overflow: hidden;
    	}
    	.responsive .tabcontainer.mobile-tabs-closed .tab_titles {
    	    display: none;
    	}
    	.responsive .tabcontainer.top_tab.mobile-tabs-closed .tab.fullsize-tab {
    	    margin-bottom: 0px;
    	}
    	.responsive .tabcontainer.mobile-tabs-closed .tab.fullsize-tab {
    	    display: block;
    	    margin-bottom: -1px;
    	}
    }

    you can see now on the testpage that i have switched to 989px – to illustrate the effect and settings better.
    As long as you do not open a tab on “mobile” – you can resize the screen ( or tilt the device )

    in reply to: CLOSED TABS ON MOBIL #1234335

    However, these settings alone would have the effect that the tabs can no longer be opened in the “mobile” case. Since the switch case has removed this exactly. Therefore a click solution is needed to correct this.

    you see above in the css code there is an additional class i set for that decision ( mobile-tab)
    this to child-theme functions.php

    function mobile_tabs_open_onclick(){
    ?>
    <script type="text/javascript">
    (function($) {
    	$('.responsive #top .tabcontainer.mobile-tabs-closed .av_tab_section .tab').click(function() {
    		$(this).next('.tab_content').toggleClass('mobile-tab');
    		$(this).closest('.av_tab_section').siblings().find('.tab_content').removeClass('mobile-tab');
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'mobile_tabs_open_onclick');

    If the mods see a much simpler solution, don’t be afraid to announce it.

    in reply to: CLOSED TABS ON MOBIL #1234333

    Demo Page: https://webers-testseite.de/pureinstall/tabs-on-mobile/
    (this is for the class on body – you decide when the switch is set)

    to child-theme functions.php

    function add_class_for_tab_switch(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function my_tab_switch() {
    		setTimeout( function() {
    	        if ($(window).width() <= 767) {
    			  $("#top").addClass("tab_switch");
    			} 
    			else {
    			  $("#top").removeClass("tab_switch");
    			}
            }, 150)	
        }
    	$(window).on('load resize', function() {
    		my_tab_switch();
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_class_for_tab_switch');

    after that you can use these classes on quick css

    /***** Settings for closed Tabcontainers on tab switch setting ************/
    .js_active .tab_switch .tabcontainer.mobile-tabs-closed .active_tab_content {
    	display: none;
    	visibility: hidden;
    }
    .responsive #top .main_color .tabcontainer.mobile-tabs-closed .tab_content.mobile-tab {
    	display: block;
    	visibility: visible;
    }
    .responsive #top.tab_switch .main_color .tabcontainer.mobile-tabs-closed .active_tab {
    	background-color: unset;
    	color: inherit;
    }
    .js_active #top.tab_switch .tabcontainer.mobile-tabs-closed .active_tab {
    	font-weight: normal;
    }
    #top.tab_switch .main_color .tabcontainer.mobile-tabs-closed .tab.active_tab:hover {
    	color: #666666;
    }
    in reply to: CLOSED TABS ON MOBIL #1234330

    Those for whom it is too much text to get a solution may skip this answer. ;)

    When I began to deal with the subject, I encountered various obstacles.
    In general, there is no easy solution to these. And my first attempt to redefine the two classes responsible for the appearance ( active_tab and active_tab_container ) only by css and the class set to html if it is a mobile device (avia_mobile) would not make sense. Because then all tablets – even the Ipad Pro with its 12.9 inch size – would initially display the closed tabs.

    So when the page is loaded, it should be decided whether the tabs are open or not. When tilting the mobile device, however, it should be decided again whether the tabs are open or not.
    For example the Iphone XS: 375×812
    i.e. normally in landscape mode the tabs would be in normal view, in portrait mode the tabs would be arranged below each other.

    So I thought I would link this decision to the presence of the Hamburg Icon. Unfortunately the default setting of the tabs causes me some problems, because they usually change their appearance when resized to 768px. So there would be a discrepancy in the setting depending on the burger menu if it changes already at 990px. – But there is a Quick CSS solution.
    But there are participants here who always show the burger, so this would not be the solution.

    So I decided to create a class that I can fall back to if the screen width falls below a certain value without changing the behavior of the above mentioned classes ( active_tab and active_tab_container ).
    With this first script I set a class to body, which offers me a switch with which I can make this decision ( tab_switch ).

    Additionally I give the Tabs ALB element a custom class to decide if I want the effect or not. ( mobile-tabs-closed )

    in reply to: extra space (after section?) between elements #1234245

    I have never found it particularly difficult to drag and drop the separator into a color section as the last or first element.

    The separator needs the surrounding container so that it has the width it needs to take up.
    If you put the separator in a 1/2 container, it will have a different width than in a 1/1 container.
    But if it has no surrounding container – it lacks this information. Therefore one is set.
    So this only happens if you put the separator between two full-width elements.

    in reply to: CLOSED TABS ON MOBIL #1234166

    what exactly do you like to obtain? the behaviour on mobile devices or on narrow screen width? The first one is easier to reach.

    in reply to: extra space (after section?) between elements #1234150

    you see on your frontend that line?


    this is a separator – you can easily overlook this, because it is only a thin grey line in the layout.


    hover on your advanced layout a gray line then you will see that this is an extra element.

    If this separator is not placed in the color-section but between two elements ( like two color-sections) there will be an extra container for it:
    after_section_x
    and as a normal container it will have that padding-top/padding-bottom of 50px.
    To avoid this extra container for the separator you can put it in the color-section.

    in reply to: Masonry Gallery should open new browser window #1234142

    on the second page you have allready activated the merging of css and javascript files: So i think it is only a caching reason for that.
    Go to dashboard – enfold – performance : and on the bottom of that page there is: “Delete old CSS and JS files?”
    mark that – and save all changes.

    ______

    Dashboard – Enfold – Leistung : “Alte CSS- und JS-Dateien löschen?”
    Das Feld markieren und alle Änderungen speichern.

    in reply to: Left Main Menu: Search below logo #1234118

    first: because of the search-results list – it might be better to have the vertical-align on top!

    #top #av-burger-menu-ul {
        vertical-align: top;
        padding: 125px 0 !important;
    }

    second:
    but what we can do on the search input field to have no href on that menu-item ( to have the opportunity to activate text in that input field by mouse activation) – see description above – we do not have the possibility to do that on hamburger search menu item
    there is:

    so if the href attribut remains you can not activate text like above to get rid of “er” in weber f.e.

    this to child-theme functions.php :

    function remove_href_from_hamburger_search_input(){
    ?>
    <script type="text/javascript">
    (function($) {
    	$('#header').on('click', '.av-main-nav-wrap', function() {
    		$('#av-burger-menu-ul .searchfield > a:first-of-type').removeAttr("href");
    	});	
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_href_from_hamburger_search_input');

    Resultpage for your test: https://webers-testseite.de/cynthia/

    in reply to: Left Main Menu: Search below logo #1234108

    try this – and to have searchform results font in a color:
    (on my testpage there is a dark background on fullwidth burger overlay)

    #av-burger-menu-ul #searchform > div {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    
    #av-burger-menu-ul #searchform .ajax_search_response * {
    	color: #FFF
    }
    in reply to: Video controls don't show up on full width slider #1233998

    ah – ok – thanks for the info

    in reply to: ReCaptcha Error again #1233981

    see above Private Data

    in reply to: Small bar and " /> across the top of web site #1233697

    i see that you are using wp-rocket – maybe disable it and then update all caches (including the browser cache) and see if the problem persists

Viewing 30 posts - 5,311 through 5,340 (of 11,983 total)