Forum Replies Created

Viewing 30 posts - 4,201 through 4,230 (of 11,531 total)
  • Author
    Posts
  • in reply to: font weights used by Enfold? #1294327

    you can see here the Enfold Font List on Google
    type in everything you like – maybe a pangram to see all letters.
    on the end of the list you can see a preview – one click on those squares – you come to the site for the single font and on bottom – very nice – popular font pairings.

    in reply to: Detect mobile in PHP? #1294193

    isn’t it possible to use the function layerslider_deactivation_scripts() { for that.
    and use that hook: do_action(‘layerslider_deactivated’);

    sorry my image hoster is temporarly down :
    just before line 834 : require_once( 'functions-enfold.php');

    I can only ever strongly advise using a child theme.
    It has so many advantages that the few disadvantages don’t matter.
    All the nice php/script snippets that go into the child-theme functions.php would have to be placed in the parent-theme functions.php, and then renewed with each new update. Etc. pp.

    the place in the parent-theme functions.php would be here just under that comment before the last line in functions.php ( require-once …)

    you have no link on that animated gif so in Enfold Options you insert only #
    in the quick css rule – you had to adjust the url to your animated gif
    this part from above:

    background: url(/wp-content/uploads/2021/04/arrows.gif) no-repeat center center;
    
    in reply to: Images being duplicated within media library #1294170

    Does the site has WPML plugin installed ? If the answer is yes, please head over to WPML support. The short explanation is that the plugin creates multiple records of one image for use with other language(s) but the image file itself will not be duplicated.
    so have a look if these files are duplicated in your uploads folder via ftp.

    Thanks Ismael – this was a bug info – and not a find a solution topic ;)
    The first solution is acceptable the second one is not so practicable, because you see from the example page, if the “shifted” color-section has a background it becomes problematic.
    I never noticed that, because I used it mostly only when I wanted to move a 1/1 column up – like it is often done in this demo : https://kriesi.at/themes/enfold-church/
    In principle, the question remains whether maintaining the negative margin in the responsive case makes sense at all.

    can be closed

    in reply to: Custom header height distorts logo #1293994

    @DouPaule – natürlich ist es erlaubt.


    @digitalprint2222
    : sollte die Farbe nicht ganz stimmen im svg. Dann kannst du das svg mit einem guten Texteditor der keinen zusätzlichen meta Mist mit in die Datei schreibt öffnen ( Windows: notepad++ ; Mac : Sublimetext )

    Oben in deinem Logo siehst du dann ganz ähnlich wie in einem html code einen style bereich:

    <style type="text/css">
    	.dpg0{fill:#333333;}
    	.dpg1{fill:#F4983B;}
    	.dpg2{fill:#000000;}
    </style>

    die dpg steht für digital print group dpg1 ist das Orange – wenn du hier einen andere Farbe einträgst, das ganze abspeicherst, dann hast du die Veränderung auch schon gemacht.
    PS : was wohl passieren würde wenn da stünde:

    <style type="text/css">
    	.dpg0{fill:#333333;}
    	.dpg1{fill:#F4983B;}
    	svg:hover .dpg1 { fill: #990000;}
    	.dpg2{fill:#000000;}
    </style>

    https://webers-testseite.de/weber/DigitalPrint.svg
    etc. pp

    in reply to: Custom header height distorts logo #1293963

    wenn du das Logo lieber bündig mit der Navigatin haben möchtest:

    #header_main .av-logo-container {
        padding: 0 5px;
    }
    in reply to: Custom header height distorts logo #1293962

    zunächst sollten die ja keine Untermenupunkte haben diese beiden Individual Links. Daher sollten die Pfeile auch nicht da sein.
    Hast du im Menu eventuell die als MegaMenu Punkte gesetzt?
    Standardmäßig sind da bei Enfold keine “Arrows” – also wie hast du Sie eingebunden?
    doch mit dem Pseudocontainer after – also nimm sie dort wieder raus:
    besser hinter der ursprünglichen Anweisung im css platzieren.

    .html_header_top .av_bottom_nav_header #header_main_alternate .main_menu ul:first-child > li.anfrage > a::after,
    .html_header_top .av_bottom_nav_header #header_main_alternate .main_menu ul:first-child > li.telefon > a::after{
        content: "";
    }

    der Unterstrich:

    .anfrage.current-menu-item > a > .avia-menu-fx,
    .telefon.current-menu-item > a > .avia-menu-fx {
        display: none
    }

    es ist bestimmt für deine Konstellation besser, wenn du zunächst mal den Umbruchpunkt wann der Hamburger auftaucht auf die “Mobile/Tablet” Option einstellst: ( Menuelemente für Mobilgeräte )

    wenn das nicht reichen sollte, dann kann man das auch per css beeinflussen.

    in reply to: custom width flex column #1293957

    no private content for me – i’m participant as you are

    ok – i thought it is your website – is there a test site with that?
    your site http://peterloew.eu/ shows me not the equal height option

    in reply to: Custom header height distorts logo #1293885

    Gerne auch via E-Mail wenn du die Seite nicht öffentlich machen möchtest.

    in reply to: Custom header height distorts logo #1293875

    ohne die Seite zu sehen ist es quasi unmöglich dir exakte Tips zu geben.

    in reply to: custom width flex column #1293873

    can you please set the columns now to equal height!
    then it is easier to find the correct selectors for it –
    maybe you give a custom-class to that column – then the selector is more specific.

    and your front-page realy get that high ID ( 3386 ) ?
    and your front-page is a page? it might be a post?
    and the link to your alternative Logo – try the absolute path with https://domain/wp-content/ …etc

    best would be to have a live link for me to give better advice – if you like write me an email.

    function replace_logo_on_some_pages($logo){
       if(is_home()){
          $logo = "/wp-content/uploads/2021/04/Element-1-4-1030×167.png";
        }
        return $logo;
    }
    add_filter('avf_logo','replace_logo_on_some_pages');

    PS : i see now the dimensions of your “logo” – is it set as background ? and not in Enfold Options Dialog : “Logo” ?

    in reply to: Fonts viewer #1293809

    Maybe that will be a nice link ( on Google Webkit Fonts ) to have in Enfold Options:

    It was meant as a suggestion for the developer fraction
    PS: a few entries in the register-admin-options.php and there they are ;)

    your image link over bit.ly does not open here on my end.

    i would do this with registering an additional “social icon”
    You can put this in your child-theme functions.php:

    /** Add new icon as an option for social icons  **/
    function avia_add_custom_social_icon($icons) {
        $icons['Animated Image'] = 'animated';
        return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    and this in your quick css:

    /************* social animated gif *******************/
    #top #wrap_all .av-social-link-animated a {
      pointer-events: none !important
    }
    
    #top #wrap_all .av-social-link-animated a:before{
      content: "";
      width: 35px;
      height: 35px;
      position: relative;
      top: -3px;
      left: -15px;
      display: inline-block;
      vertical-align: middle;
      background: url(/wp-content/uploads/2021/04/arrows.gif) no-repeat center center;
      background-size: contain;
    }
    
    #top .main_menu .social_bookmarks li.social_bookmarks_animated {
        width: 45px;
        position: relative;
        left: 10px;
    }

    Now you have on Enfold (Child) – Social Profile another link you can place at the beginning of that list:

    adjust the link to your animated gif !
    Result: https://webers-testseite.de/weber/
    have a look how this shows if the social icons goes to main-menu when you are in between 768px and 990px !

    in reply to: Fonts viewer #1293748

    thanks for the pdf – helpfull.

    Or use The Link to Google Fonts itself: Enfold Google Fonts

    And type in any pangram you like f.e.: “The quick brown fox jumps over the lazy dog”

    _________________________________

    Maybe that will be a nice link ( on Google Webkit Fonts ) to have in Enfold Options:

    • This reply was modified 4 years, 3 months ago by Guenni007.
    in reply to: Lightbox is not working #1293744

    And you checked that option in : Enfold (Child) – Theme Options : “Lightbox Modal Window” ?

    On the masonry Element did you activate the lightbox on the advanced tab:

    es ist sehr zu empfehlen, ein Child-theme zu nutzen. Das ist kein Zauberwerk und recht schnell eingerichtet. Es gibt auch ein vorgefertigtes Child-Theme in der Dokumentation zum download.: https://kriesi.at/documentation/enfold/child-theme/

    Alle kleinen nützlichen Tips die über die functions.php laufen sind so recht simple anzuwenden, und gehen auch in der Regel nicht bei einem Update des Eltern-Themas verloren.
    Gerade am Anfang einer Installation ist dies sehr simple zu machen. Sollte ein Thema schon recht fortgeschritten installiert sein bietet Enfold auch hier durch Übernahme der Einstellungen gute Möglichkeiten auch nachträglich noch umzustellen.

    you can do it over the same filter in different ways ( one over url – the other over logo )

    As Jordan said – set the one logo you like to have on all pages except few other pages to the enfold options dialog.

    then put this in child-theme functions.php:

    function replace_logo_on_some_pages($logo){
        if(is_page(array( 'home', 1396, 1234, ))){ 
          $logo = "/wp-content/uploads/alternativ-logo.png";
        }
        return $logo;
    }
    add_filter('avf_logo','replace_logo_on_some_pages');

    or as mentioned above: via url:

    function av_change_logo_url($url){
        if(is_page(array( 'home', 1396, 1234, ))){ 
            $url = "/wp-content/uploads/alternate-logo.jpg";
        }
        return $url; 
    }
    add_filter('avf_logo','av_change_logo_url');

    the numbers are the page-ids – page names comes into quotation marks.

    if it is only the home or front_page or a single page replace that line with the array by

    if(is_front_page()){
    or
    if(is_home()){
    or
     if(is_page( 1234 )) {
    in reply to: Hamburger menu doubled on small screens #1293692

    and give to the header widgets a less z-index – otherwise the hamburger isn’t clickable:
    look in your css and find that rule and change z-index.

    #header .widget_text {
        z-index: 2;  /*** it is now 9999 ****/
    }

    A solution would be to have analog to the equal-height ( min-height option in columns.php) an additional wrapper div even for individual height option that will have the style on that.

    By the way – this seems to be a general problem on floating divs and negative margins.
    f.e: https://www.smashingmagazine.com/2009/07/the-definitive-guide-to-using-negative-margins/#negative-margins-on-floated-elements

    btw: there is now a copy of the yellow color-section ( now with other bg-color) but without negativ margin shift
    here again all is ok.
    So the negative margin to shift the columns to top ( to overlap the section before ) in combination with individual height leads to that overlapping of the columns.

    Everything is said above. If you see this like me:

    second color-section (green bg) with columns set to equal height and with negative shift of all columns to top – here everything is ok.
    on bottom a color-section ( yellow one ) a copy of all columns – but set to individual height – same negative margin to shift to top – overlapping 3 columns – the fist looks out a bit – caused to margin-left : 0 – on mobile – totaly overlapping of all 3 columns.

    for you to copy:

    [av_section min_height='25' min_height_pc='25' min_height_px='500px' padding='default' custom_margin='0px' custom_margin_sync='true' color='main_color' background='bg_color' custom_bg='#d65799' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='' id='' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-kn75k2l9' sc_version='1.0'][/av_section]
    
    [av_section min_height='25' min_height_pc='25' min_height_px='500px' padding='default' custom_margin='0px' custom_margin_sync='true' color='main_color' background='bg_color' custom_bg='#83a846' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='' id='' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-kn75k86o' sc_version='1.0']
    
    [av_one_third first min_height='av-equal-height-column' vertical_alignment='av-align-top' space='' row_boxshadow_color='' row_boxshadow_width='10' custom_margin='aviaTBcustom_margin' margin='-200px,0px' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='30px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='#e5e5e5' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' template_class='' aria_label='' av_uid='av-kn75l7zt' sc_version='1.0']
    
    [av_heading heading='Eine nette Überschrift' tag='h3' style='' subheading_active='' show_icon='' icon='' size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='' custom_font='' icon_color='' margin=',,,,' padding='10' icon_padding='10' link='' link_target='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' id='' custom_class='' template_class='' av_uid='av-3khuw' sc_version='1.0'][/av_heading]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='30px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='#ede2d3' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' template_class='' aria_label='' av_uid='av-kn75m2i6' sc_version='1.0']
    
    [av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' id='' custom_class='' template_class='' av_uid='av-9k2g' sc_version='1.0']
    Klicke hier, um Ihren eigenen Text einzufügen
    [/av_textblock]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='30px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='#ede2d3' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' template_class='' aria_label='' av_uid='av-1vw80' sc_version='1.0']
    
    [av_heading heading='Eine nette Überschrift' tag='h3' style='' subheading_active='' show_icon='' icon='' size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='' custom_font='' icon_color='' margin=',,,,' padding='10' icon_padding='10' link='' link_target='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' id='' custom_class='' template_class='' av_uid='av-1ed7c' sc_version='1.0'][/av_heading]
    
    [av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' id='' custom_class='' template_class='' av_uid='av-rl7w' sc_version='1.0']
    Klicke hier, um Ihren eigenen Text einzufügen
    [/av_textblock]
    
    [/av_one_third][/av_section][av_section min_height='25' min_height_pc='25' min_height_px='500px' padding='default' custom_margin='0px' custom_margin_sync='true' color='main_color' background='bg_color' custom_bg='#eeee22' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='' id='' custom_class='' template_class='' aria_label='' av_element_hidden_in_editor='0' av_uid='av-kn75tsfl' sc_version='1.0']
    
    [av_one_third first min_height='' vertical_alignment='av-align-top' space='' row_boxshadow_color='' row_boxshadow_width='10' custom_margin='aviaTBcustom_margin' margin='-200px,0px' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='30px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='#e5e5e5' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' template_class='' aria_label='' av_uid='av-kn75tmau' sc_version='1.0']
    
    [av_heading heading='Eine nette Überschrift' tag='h3' style='' subheading_active='' show_icon='' icon='' size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='' custom_font='' icon_color='' margin=',,,,' padding='10' icon_padding='10' link='' link_target='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' id='' custom_class='' template_class='' av_uid='av-3zd4c' sc_version='1.0'][/av_heading]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='30px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='#ede2d3' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' template_class='' aria_label='' av_uid='av-37i6s' sc_version='1.0']
    
    [av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' id='' custom_class='' template_class='' av_uid='av-2l0rw' sc_version='1.0']
    Klicke hier, um Ihren eigenen Text einzufügen
    [/av_textblock]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='30px' padding_sync='true' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='#ede2d3' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='' template_class='' aria_label='' av_uid='av-1wz18' sc_version='1.0']
    
    [av_heading heading='Eine nette Überschrift' tag='h3' style='' subheading_active='' show_icon='' icon='' size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' subheading_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' icon_size='' av-medium-font-size-1='' av-small-font-size-1='' av-mini-font-size-1='' color='' custom_font='' icon_color='' margin=',,,,' padding='10' icon_padding='10' link='' link_target='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' id='' custom_class='' template_class='' av_uid='av-1enuo' sc_version='1.0'][/av_heading]
    
    [av_textblock size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' color='' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' id='' custom_class='' template_class='' av_uid='av-uwqo' sc_version='1.0']
    Klicke hier, um Ihren eigenen Text einzufügen
    [/av_textblock]
    
    [/av_one_third][/av_section]
    in reply to: Custom header height distorts logo #1293542

    sorry – my imagehoster is temporarily down. – in the text there are a few images

    in reply to: Custom header height distorts logo #1293535

    btw: here is your logo as svg file: https://webers-testseite.de/weber/DigitalPrint.svg
    if you need it.
    To use it on WordPress you had to allow that mime type via functions.php child-theme.

    in reply to: Custom header height distorts logo #1293534

    Nun : das hier in das Quick CSS einfügen.

    .anfrage a:before {
      content: "\e805"; 
    }
    .telefon a:before {
      content: "\e83c"; 
    }
    
    @media only screen and (min-width: 990px) {
      #header_main_alternate {
        border-top: none;
      }
    
      span.menu-break {
        display: block;
        line-height: 60px;
        bottom: 35px;
        position: relative;
      }
    
      .anfrage, .telefon {
        text-align:left;
        float: right !important;
        top: -15px;
        margin-left: 60px
      }
    
      .anfrage a:hover:before , 
      .telefon a:hover:before {
        background-color : #aaa !important;
      }
    
      .anfrage a:hover .avia-menu-fx , 
      .telefon a:hover .avia-menu-fx {
        display : none !important;
      }
    
      .anfrage a:before, .telefon a:before {
        display: table;
        font-family: entypo-fontello;
        font-size: 30px;
        color: #fff;
        position: absolute;
        left: -50px;
        top: 0;
        padding: 5px 10px;
        background-color: #ddd;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        text-align: center;
        vertical-align: middle;
      }
    }
    
    @media only screen and (max-width: 989px) {
      #av-burger-menu-ul .anfrage a:before, 
      #av-burger-menu-ul .telefon a:before {
        font-family: entypo-fontello;
        font-size: 30px;
        color: #ddd;
        position: absolute;
        left: 0;
        top: 10px;
        padding: 5px 10px;
        width: 40px;
        height: 40px;
      }
    } 

    du siehst hier tauchen die benutzerdefinierten Klassen auf: anfrage und telefon
    diese Menüpunkte floaten jetzt rechts. Wenn du die Positionen tauschen willst, dann ziehe im Menu die Positionen an die richtige Stelle

    in reply to: Custom header height distorts logo #1293533

    erstmal mache das mit dem Header Widget Area rückgängig!
    Also auch aus der funkions.php den entsprechenden Eintrag entfernen, und bei Widgets das Widget-Area löschen.

    Dann ist es wohl für dein Menü günstiger den Responsiven Fall bei 990px eintreten zu lassen:
    Enfold (Child) – Hauptmenü – “Menüelemente für Mobilgeräte” dort für mobil und tablets wählen.

    __________
    zunächst musst Du wissen, wie man einzelnen Menupunkten eine benutzerdefinierte Klasse gibt:
    im Dashboard – Design – Menüs
    gibt es ganz oben im Fenster diesen Tab : “Ansicht anpassen” ( fly out button)
    nachdem du das gedrückt hast, siehst du( alle bilder kannst du durch klicken vergrößern)

    mach den Haken bei CSS-Klassen.

    Jetzt kannst du neben jedem Menupunkt den Edit Button Klicken und du hast dann die Möglichkeit diesem eine Klasse zuzuordnen.
    also z.B: rechstbuendig besser ist für nachher aber hier auch schon zu unterscheiden also Klassen anfrage und telefon
    Bei “Angezeigter Name” ( engl: Label ) gibst du in einem “Individuellem Link” ein
    a)

    Anfrage<span class="menu-break">stellen</span>
    

    b)

    Kontakt <span class="menu-break">0911-4771800</span>
    

    bei b) gibst du als Link an:

    tel:+499114771800
    

    gleich geht es weiter: …

    in reply to: Custom header height distorts logo #1293530

    That’s o.k. ; but some mods here don’t work daily with customer requests in real wordpress life. I just know that all very well; in the time where I was intensively occupied with jQuery and further education I tried to realize everything via scripts.
    Since one has already times a few standard answers, which are not always the optimal way.
    You have to have understanding for that, because with the abundance of questions here they hardly have more time than 5-10min to find an answer.

    But if it is o.k. here now for the other participants I answer now in German. If someone needs the instructions in English please write here.

Viewing 30 posts - 4,201 through 4,230 (of 11,531 total)