Forum Replies Created

Viewing 30 posts - 9,451 through 9,480 (of 11,501 total)
  • Author
    Posts
  • hast du mal versucht diese Installation komplett via ftp (enfold ordner) zu löschen, und einen neuen Enfold Ordner hochzuladen?
    Da du ja ein Child-Theme nutzt sollte nichts weiter passieren.

    bin noch nicht mit allen Installationen auf der neuesten 4.1.2 aber unter 4.1.1 kann ich das so nicht bestätigen.
    Bei mir läuft das so wie es sein soll.

    in reply to: Convert Hyphen to Non-Breaking Hyphen #824169

    but you have to use normal hyphen – i see you used sometimes in “Myo‑Santé” a different dash (longer one)
    see also here: https://csswizardry.com/2010/01/the-three-types-of-dash/

    btw: for a soft-hyphen ( an unseen breaking point of a word) i would never use a normal dash on those cases i use ­ or ­
    and because of boardsoft which transfer these Entities directly in its pendent it is & and behind #173; or shy;

    PPS – a bit offtopic : i sometimes use the very good plugin hyphenator to have a typographical correct hyphenation – and mainly when using Textblocks in justify manner. see Here (it is not only german)

    • This reply was modified 7 years, 11 months ago by Guenni007.
    in reply to: Convert Hyphen to Non-Breaking Hyphen #824135

    maybe it is possible through the wptexturize function in wp-includes/formatting.php
    but how should a function decide if a dash is a non-breaking hyphen or not.

    This was first in my mind:

    function non_breaking_hyphens($content){
        return str_replace('-', '‑', $content);
    }
    add_filter('the_content', 'non_breaking_hyphens');

    the second dash is your entity – the board soft directly transfered it allthough it is in code block
    so it is & and behind #8209;

    PS: now i see that french has alot of those words rendez-vous etc.

    PPS: this is the way Enfold did it with the ampersand sign and some quotation-marks (functions-enfold.php lines 571ff)
    Maybe this could be done here too- because if a dash is set consciously it is nearly 100% a non-breaking dash.

    • This reply was modified 7 years, 11 months ago by Guenni007.
    in reply to: Convert Hyphen to Non-Breaking Hyphen #824091

    what is the thing you like to reach for e.g. “Pre-Order”

    you want to prevent the hyphenation in this word?

    I like this little tool from Frank Bültge (addquicktag)
    this tool adds quick tags to your editor for example a “nowrap” tag

    you have to define a class f.e.:

    .nowrap { white-space:nowrap; }

    if you are in your editor now you can mark a word or a phrase and use quick tag.
    This will generate an opening tag like <span class="nowrap"> and after the marked content a closing tag </span>

    you can do it by text-modus too – but with addquicktag it is realy simple then.

    in reply to: Custom widget not showing #823231

    if it is only for this site you can combine both rules (if you want it for all pages and after each color-section or grid-row this could be done via classes)

    .page-id-117 #av_section_1::after, .page-id-117 #after_section_1::after  {
    content: ” “;
    display: block;
    height: 15px;
    width: 100vw;
    background: rgba(0, 0, 0, 0) -moz-linear-gradient(left center , #604b66 0%, #604b66 33%, #937522 33%, #937522 66%, #d6a83e 66%);
    background: -webkit-linear-gradient(left, #604b66 0%,#604b66 33%,#937522 33%,#937522 66%,#d6a83e 66%);
    background: linear-gradient(to right, #604b66 0%,#604b66 33%,#937522 33%,#937522 66%,#d6a83e 66%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#604b66′, endColorstr=’#d6a83e’,GradientType=1 );
    background-repeat: none;
    background-position: center top;
    background-size: 100vw 15px;
    }

    btw: stretch your background-image of the color-section on top (cover element) because it ends on bigger screens.

    • This reply was modified 7 years, 11 months ago by Guenni007.
    in reply to: Custom widget not showing #822947

    if you like to have it after each section you can add (this is only a short form of that above plus a rule for avia-section):

    .avia-section::after, .page-id-117 #after_submenu:after {
        background: rgba(0, 0, 0, 0) linear-gradient(to right, #604b66 0%, #604b66 33%, #937522 33%, #937522 66%, #d6a83e 66%) repeat scroll center top / 100vw 15px;
        content: " ";
        display: block;
        height: 15px;
        width: 100vw;
    }

    but than you have to get rid of those grid-rows which are for that “separator”

    in reply to: Custom widget not showing #822936

    yes – you should only remove that grid under your price-table.
    it seems that a container which is set to 100% max-width hampered the building of sidebar.
    Having one above changes something now you have an id for the price-table container of #after-submenu

    so code is than:

    .page-id-117 #after_submenu::after {
        content: " ";
        display: block;
        height: 15px;
        width: 100vw;
        background: rgba(0, 0, 0, 0) -moz-linear-gradient(left center , #604b66 0%, #604b66 33%, #937522 33%, #937522 66%, #d6a83e 66%);
        background: -webkit-linear-gradient(left, #604b66 0%,#604b66 33%,#937522 33%,#937522 66%,#d6a83e 66%);
    	background: linear-gradient(to right, #604b66 0%,#604b66 33%,#937522 33%,#937522 66%,#d6a83e 66%);
    	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#604b66', endColorstr='#d6a83e',GradientType=1 ); 
        background-repeat: none;
        background-position: center top;
        background-size: 100vw 15px;
    }
    • This reply was modified 7 years, 11 months ago by Guenni007.
    in reply to: Custom widget not showing #822550

    the grid row above was not the problem – it is the following one – so if you like you can insert in a different way:

    try adding this to quick css:

    .page-id-117 #after_section_1::after {
        content: " ";
        display: block;
        height: 15px;
        width: 100vw;
        background: rgba(0, 0, 0, 0) -moz-linear-gradient(left center , #604b66 0%, #604b66 33%, #937522 33%, #937522 66%, #d6a83e 66%);
        background: -webkit-linear-gradient(left, #604b66 0%,#604b66 33%,#937522 33%,#937522 66%,#d6a83e 66%);
    	background: linear-gradient(to right, #604b66 0%,#604b66 33%,#937522 33%,#937522 66%,#d6a83e 66%);
    	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#604b66', endColorstr='#d6a83e',GradientType=1 ); 
        background-repeat: none;
        background-position: center top;
        background-size: 100vw 15px;
    }
    in reply to: Custom widget not showing #822513

    see my comment on https://kriesi.at/support/topic/custom-widget-not-showing/#post-822505

    delete the following grid-row to proove – and than we will see if we can do that “Separator” in a different way

    but you can force it by inserting the price-table in a 2/3 column and in that 1/3 column the Widget-Area ALB Element and do for that page/post a non sidebar layout!

    in reply to: Custom widget not showing #822505

    or put in your price-table in a 1/1 container – this will make the trick to have the sidebar besides that Container.

    edit : ok – i see in source codes that you done that allready

    the point is the following grid-row – don’t know if this is a bug?
    Allthough you have a 1/1 container there is no sidebar

    • This reply was modified 7 years, 11 months ago by Guenni007.
    in reply to: Custom widget not showing #822491

    so now with your website online i see you are using on that page a grid-layout or color-sections – these are per definition 100% width

    But you can mimic it by:
    click to enlarge

    see example here: https://webers-testseite.de/test/

    in reply to: Custom widget not showing #822485

    you have to do both – but on the sidebar if you like this as a place for your custom widget area “Rates” ( i looked again to source code of sidebar.php) you don’t need to register that area. Allthough kriesi has an extra action hook for that on line 87ff
    // customize default sidebar and add your sidebars

    – make your own Custom Widget in the widget area and call it “Rates”
    – goto the post/page you like to show your new custom widget.
    – on the right side of the editor mode there is a window : Layout
    – choose on Sidebar Settings (right or left)
    – choose on Sidebar Setting ( Rates )
    – do not forget to put in some Content to that Widget Area – otherwise it is there but empty

    in reply to: Home Page Video #822478

    but in a color-section only this one will work : https://www.youtube.com/watch?v=Wq-DEL2ONGg?rel=0&autoplay=1&loop=1

    in reply to: Home Page Video #822474

    https://www.youtube.com/watch?v=Wq-DEL2ONGg#action=share

    the shortform is ok – but i think that at the end there will be related Videos
    so i think its better you use: https://www.youtube-nocookie.com/embed/Wq-DEL2ONGg?rel=0&autoplay=1&loop=1

    in reply to: concerning to a thread "add-hover-on-logo" #821979

    Or – like in former times ( than you can have different colors etc. ) with a sprite image and only shift by css the “image”
    Big advantage of sprite images is that all you need is allready loaded because both images are combined in one with known distance

    • This reply was modified 7 years, 12 months ago by Guenni007.
    in reply to: Custom widget not showing #821952

    if you are working with child-theme you can manage it via that hook in functions.php of your child-theme:

    add_action( 'ava_add_custom_default_sidebars', 'custom_sidebar_widget_area' );
    function custom_sidebar_widget_area() {
    	dynamic_sidebar( 'Rates' );
    }

    but it might work on sidebar without that code. You only have to choose on the Editior-Page – right side that you want to see this new custom sidebar.

    Did you drag a widget to that new custom-sidebar?

    hm seems to be gone – now it works on firefox too:

    here is the download for Enfold 4.1 : download

    no i think you have to do the selection via this way.
    but you might go over a custom class for those settings – and prevent doing it for each page/post you like to influence. – So you only got a couple of rules

    and if you like to have it bigger try to define it via screenwidth (in this case too a 4/3 ratio) :

    .mfp-iframe-scaler {
        height: 0;
        left: 50%;
        overflow: hidden;
        padding-top: 45vw !important;
        position: relative;
        transform: translate(-50%) !important;
        width: 60vw !important;
    }

    This is done by the scaler via padding-top:

    .mfp-iframe-scaler {
        height: 0;
        overflow: hidden;
        padding-top: 56.25%;
        width: 100%;
    }

    you see that 100/56,25 equals to 16/9 !
    so if you like to change it to 4/3 means padding-top: 75%

    in reply to: Mobile Menu #820732

    An by the way – why is it for minimal flyout set in this way? to have it verticaly centered –

    #av-burger-menu-ul {
        display: table-cell;
        height: 100%;
        padding: 125px 0;
        vertical-align: middle;
        width: 100%;
    }
    in reply to: Mobile menu text colour (4.1 Update) #820727

    and by the way for the icon color there is an extra styling tab on enfold – main menu – burger/mobile menu styling. on new 4.1

    – no custom.css might be overwritten by quick css

    so if you don’t habe a life link – than you have to wait for mods here – and give them the login datas.

    • This reply was modified 7 years, 12 months ago by Guenni007.
    in reply to: Mobile menu text colour (4.1 Update) #820601

    hm i thought that the settings here will overwrite even the quick css settings. than without the real link i could not help you.

    this is color definition of that part – try to find a similar rule in your quick css to get rid of it:

    #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a {
        color: #2f3393
    }
    • This reply was modified 7 years, 12 months ago by Guenni007.
    in reply to: Mobile menu text colour (4.1 Update) #820583

    you have here the oportunity to go to Enfold Options Page – Advanced Styling on “select an Element to customize” choose: “Menu Links in Overlay/Slideout – press “Edit Element”

    On the new Input field you now can do a lot of things with that menu – even font-family etc.

    in reply to: Enfold Version 4.1 Update troubles? #820433

    well first of all – great job again!

    on color section background movie – on former versions – by inputing some content the aspect-ratio field opens directliy. Now i have to save and open again the element – now the aspect ratio is seen.

    Edit: Seems to be only a bug of firefox – on chrome, safari, opera it still works as expected !

    Just installing 4.1 on that it works with firefox too !

    • This reply was modified 7 years, 12 months ago by Guenni007.
    in reply to: Duplicate ids on mobile menu #820427

    i did – but you inspect it with a fire-bug or developer tools – but these list-points are greyed out because they are on display: none !

    go and proove your site on W3C Validation site. These “duplicate ID’s” are not mentioned because they are not displayed at the same time.
    But – and that is the point i mentioned – if you will make a check mark on menus ( Main Menu and Footer Menu for the same menu) these list points are displayed at the same time – and will cause a duplicate ID Fault.

    in reply to: Duplicate ids on mobile menu #820262

    i do not believe that an element that is set to display none counts on that ID Problematic.

    If you choose for the main menu the footer-menu option too – then it is something different. – And you an avoid that on creating the same menu with different menu name for the footer.

    i made a new edited section.php and it works – but on former version : on inserting an input on video the format ratio and my new field for muting or not were displayed by directly sliding down.

    Now with the new Enfold 4.1 i first had to save – than reopen the element and now the new fields are visible. I see no fault in the array i inserted – the required field is set ok so i wonder why the fields didn’t open immediately

    array(	
    		"name" 	=> __("Mute Video?", 'avia_framework' ),
    		"desc" 	=> __("Uncheck if you want to have audio", 'avia_framework' )."<br/><small>".__("by default it is muted", 'avia_framework' ) ."</small>" ,
    		"id" 	=> "video_mute",
    		"required"=> array('video','not',''),
    		"std" 	=> true,
    		"type" 	=> "checkbox"),
    in reply to: Change Full Screen slider to h1 tag #819873

    so now brave new world on Enfold 4.1 with the new oportunity to choose the mobile behavior on so many elements – here is an update to my edited shortcodes – so only necessary if you are using the newest version Enfold 4.1:

    Download only for Enfold 4.1 ff

    Again – make familiar with child-theme
    These files goes to child-theme/shortcodes folder and than put in functions.php of your child-theme :

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths){
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
      return $paths;
    }
    • This reply was modified 7 years, 12 months ago by Guenni007.
Viewing 30 posts - 9,451 through 9,480 (of 11,501 total)