Forum Replies Created

Viewing 30 posts - 9,781 through 9,810 (of 11,188 total)
  • Author
    Posts
  • in reply to: Tag Cloud not complete #723049

    aha ok it is set by wordpress – i only looked into enfold options.
    But on Enfold the weighting is suppressed. So there has to be an Enfold specific setting. Maybe it is possible to increase the number on that place.

    Edit: on

    function widget($args, $instance)
    {
    wp_tag_cloud('smallest=12&largest=24&unit=px&number=0');

    i have set it to those args – but is there a way to get it into child-theme setting ?

    by the way: i changed it to: wp_tag_cloud('smallest=12&largest=16&unit=px&number=0');

    but it has no influence! ???

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Problems with SVG Logos and Internet Explorer #722864

    can i see the page too ! I’m using on default svg for logo files – and only if the logo has to be pixelbased (complex fotos or graphic) i’m forced to use pngs or jpgs.
    So – i do not use a plugin for svg support. The simple solution for using svgs in wordpress is in child-theme functions.php :

    function custom_mtypes( $m ){
        $m['svg'] = 'image/svg+xml';
        $m['svgz'] = 'image/svg+xml';
        return $m;
    }
    add_filter( 'upload_mimes', 'custom_mtypes' );

    only there is no preview on media list – but you can use it everywhere.
    The one thing to know is WordPress thinks these svgs got a width and height of 1px.
    So it is recomended to set up these information in quick css.

    in reply to: Reduce sticky header size #722817

    PS i changed it to a big amount of shrinking for another thread here on forum and placed an absolute Button above the logo – for you it is important to see only the logo under that button.
    ( it is now if(st < el_height/1.01) and newH = el_height/3; )

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Logo sliding up when scrolling down. (sticky logo?) #722815

    PS i changed it to 1/100 amount) to see what i mean. And placed the News Button ( the “Logo” outside header) in the center

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Logo sliding up when scrolling down. (sticky logo?) #722814

    i think he likes to have a logo scrolling away with the rest shrinking. – but i believe, that this is with the logo inside header container impossible.
    see here http://webers-testseite.de/ikom/ – for a different question i changed shrinking amount of the header to 1/3. The Logo (centered above the menu) shrinks to 1/3rd

    You see that little button on the left (news) – this can be placed on the same place as the logo is – instead of your logo (setting up than the logo to display:none). It scrolls out as you like and is non-shrinking but header is shrinking. I think it will be possible to shrink it to nearly zero.

    _________________

    tell me if this might a solution for you.
    What you need is a modified copy of header.php in child-theme functions and some css

    in reply to: Burger Menu / Mobile Menu / unconsistancy #722761

    hm – if this will be nice enough for you – it is only css styling of new burger menu.
    And with media-querries it works on all devices without falling back to old mobile advanced menu

    Test Page

    in reply to: Content über Vollbild-Slider #722750

    Es wäre leichter dir zu helfen, wenn wir die Testseite sehen könnten.

    in reply to: Reduce sticky header size #722369

    by the way here is the code to change if you have increased top-bar height (social bookmarks height)
    on line 1623 :
    if(st - 30 < el_height)
    this is standard given top-bar height.
    if you do not change here the 30 the main container is on starting already under the header

    see here i increased the top-bar height to 40px (instead of 30 normal value)

    in reply to: Reduce sticky header size #722364

    i tried that – because in my remembering i did that allready a few month ago. But on one installation (all on latest updates Enfold and WP) on scrolling down ( f.e. 3 is set in for the 2) there are strange reactions on that.

    On that test i had set the header height to 300px ( the same on not so extreme values – but calculating is much easier)
    on reaching 200px ( the addition of class header-scrolled happend (2/3 ???) ) and the logo height than jumps to 1/3 of 300px (the setting)

    we have to think about the code because it only works with 2Why? : because scroll distance is on that point of change the rest of the distance to top is equal to scrolling-down distance 150px

    but see case above with 3 – scrolling down 100px ( the distance to top is 200px)

    so here is my quintessence: you have to set the first value to 1.5 and the second to 3
    the scroll distance when the jump to the additional class must be on that point when it reaches the header height end point
    the header should end at 100px (1/3) so we have to subtract 200px ( and 200px are 2/3 of starting header height! – on that code you have to take the reciprocal value 3/2 = 1.5

    see here: http://webers-testseite.de/ikom/

    so this is the code ( from line 1604 of avia.js) on that :

    if(shrinking && !isMobile)
    {
        if(st < el_height/1.5)
        {
            newH = el_height - st;
            if(st <= 0){
    			newH = el_height;
    	    }
            av_change_class(header, 'remove', 'header-scrolled');
            //header.removeClass('header-scrolled');
        }
        else
        {
            newH = el_height/3;
            //header.addClass('header-scrolled');
            av_change_class(header, 'add', 'header-scrolled');
        }
    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Reduce sticky header size #722221

    i don’t know where the point is and why it does not work – the concerning code is in avia.js:

    if(shrinking && !isMobile)
    {
        if(st < el_height/2)
        {
            newH = el_height - st;
            if(st <= 0){
    			newH = el_height;
    	    }        
            av_change_class(header, 'remove', 'header-scrolled');
            //header.removeClass('header-scrolled');
        }
        else
        {
            newH = el_height/2;
            //header.addClass('header-scrolled');
            av_change_class(header, 'add', 'header-scrolled');
        }
        
        if(st - 30 < el_height)
        {
            av_change_class(header, 'remove', 'header-scrolled-full');
        }
        else
        {
            av_change_class(header, 'add', 'header-scrolled-full');
        }
        elements.css({'height': newH + 'px', 'lineHeight': newH + 'px'});
    	logo.css({'maxHeight': newH + 'px'});
    }
    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Reduce sticky header size #722186

    Was ist mit diesem Rätselwort gemeint.
    Das Verhältnis von Ausgangsgröße zu geschrumpfter Größe ist schon beeinflussbar:

    in avia.js line 1618 da ist die Zeile:

    newH = el_height/2;

    https://kriesi.at/support/topic/controling-the-size-of-shrinking-header/

    schau da mal nach – ich habe es noch nicht getestet

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: tag.php output more specific #722176

    ah – thats fine – looks better!

    in reply to: Add Expires headers – BWP minify #721232

    goto bwp minify options and change the cache on tab two “General Options” the cache age to 365 days.

    in reply to: a way to have category list with sort option by tag #720887

    well it would be nice to have a list similar to the magazine style of one category and with sortoptions by the existing tags
    – i build in that moment a town website and on some categories (pharmacie or doctors) it would be nice to have the oportunity to show only pharmacies in given district.
    if so i will tag all pharmacies with their town-district . there are plugins which can show me a list of category-posts with tag xy. But to have it in with minimum space requirements will be very nice.

    color-section in it (as in your first post a text-block)

    open the option for the color-section:

    • This reply was modified 8 years, 2 months ago by Guenni007.

    by the way: if you only want to have it on a special color section set a customclass for it: ( class: bottom-text) means give the custom-class to the color-section – not the entries

    The best is you show the site concerning to your request. If you don’t want it on public posting – you have to wait till mods are here

    did you read it carefully:

    if you only want to have it on a special color section set a customclass for it: ( class: bottom-text)

    http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    and i have in the color-section no container in it but only a text alb element set.
    If you have in it a heading (you have to correct this now) – but on starting thread you write a text-block

    • This reply was modified 8 years, 2 months ago by Guenni007.

    Ok – deutsch ist mir auch lieber. Hast du mal eines von denen versucht zu platzieren? Eventuell ist es nur in der Vorschau nicht richtig abgebildet.
    Bist du eventuell auf einer https Seite unterwegs?

    füge mal das hier in deine htaccess datei ein: (nur hinzufügen das andere muss bleiben)

    <FilesMatch "\.(ttf|otf|woff)$">
    <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
    </IfModule>
    </FilesMatch>

    link dazu ist hier – wenn dein allinkl nicht auf nem apache server ist findest du die alternative lösung hier:

    http://kriesi.at/documentation/enfold/enable-cors/

    • This reply was modified 8 years, 2 months ago by Guenni007.

    here is the fontello font i created: http://webers-testseite.de/ikom/simple-icons.zip

    in reply to: How can I add a logo to the socket #719230

    maybe you give it a class to adress it quicker for styling options

    <img class="img-socket" src="link to your image here" alt="alt text">

    in reply to: Titel #719229

    vielleicht einen Link zu deiner Seite . dann können auch die nicht Mods dir helfen.

    i have done it with your simple iconset above.
    downloaded – unpacked – look for the svg in that folder/s – upload that svg via drag&drop to fontello.
    Now you have the choice to pick out some of your wanted icons or to activate all of them. – Download from Fontello than the generated font-file (zip) – upload that zip file to enfold ! voila!

    i dont know if this is 50px (guess it is aprox 80px) – but maybe it is ok for you if you setup a colorsection – 100% height – and a textblock in it.
    and choose:

    .avia-section.av-minimum-height .container .content {
        vertical-align: bottom !important;
    }

    see here: http://webers-testseite.de/ikom/colorsection100/

    if you take away the margin from p tag in that color section its nearby 60px distance

    .avia-section .container .content p {
        margin: 0 !important;
    }

    These are global rules if you only want to have it on a special color section set a customclass for it: ( class: bottom-text)

    .avia-section.bottom-text .container .content {
        vertical-align: bottom !important;
    }
    
    .avia-section.bottom-text .container .content p {
        margin: 0 !important;
    }
    in reply to: Different font-weight in menu / navigation #719197

    na das scheint ja sehr wichtig gewesen zu sein.

    in reply to: Remove validation asterisk from contact form element #719186

    on class-form-generator.php there is this required set in two different ways – the one by an extra element with class required for the case of not hiding labels.
    the second is to set a string $extra="*" this is set 4times and if you like to change you can insert for example $extra=" "
    maybe there is a fast way over functions.php of the child-theme to set a variable globaly to a value

    in reply to: Remove validation asterisk from contact form element #719164

    if you have not marked the field: “Hide Form Labels” it is simple:

    abbr.required {
        display: none;
    }

    but if so i have to look deeper in code.

    in reply to: how to place an image in button on fullwidth slider #718860

    well as i said
    just a fullwidth slider with custom-class (in my case: customclass)
    and only your text in one button (from slider dialog)
    the rest is css: (the last three rules are to setup your font and other stiles ):

    .customclass .avia-slideshow-button::after {
        content: url("/lodders/wp-content/uploads/2016/11/excell-icon.png");
        display: inline-block;
        height: auto;
        padding: 0 0 0 10px;
        position: absolute;
        top: -30px;
        width: 40px;
    }
    
    #top .customclass .avia-slideshow-button.avia-color-light {
        background-color: #b7c84b !important;
        font-size: 15px;
        font-weight: normal;
        padding: 12px 80px 12px 16px !important;
    }
    
    .customclass div .slideshow_caption h2 {
        font-style: italic;
        font-weight: bold !important;
        text-transform: none;
    }
    
    .customclass .slideshow_caption {
        width: 100%;
    }
    
    .customclass .avia-caption-content {
        font-weight: bold;
    }
    in reply to: how to place an image in button on fullwidth slider #718806

    see here my solution: http://webers-testseite.de/ikom/image-in-slider-button/

    if you like it – say it.

    in reply to: how to place an image in button on fullwidth slider #718518

    so you have the installation too here in a subfolder.
    so link to your image must be different

    /lodders/wp-content/uploads/2016/11/excell-icon.png

    .page-id-16 .customclass .avia-slideshow-button::after {
    content: url("/lodders/wp-content/uploads/2016/11/excell-icon.png");
    display: inline-table;
    height: auto;
    padding: 0 0 0 10px;
    width: 30px;
    }
    #top.page-id-16 .customclass .avia-slideshow-button {
    display: inline;
    height: 50px;
    top: 30px;
    }
    
    .avia-button.avia-size-x-large {
        font-size: 15px;
        text-align: left
    }
    

    but there are strange things in that slider – where can i choose an x-large button on that sliders ?
    i think here is the place a mod must help you with admin account .
    no chance to see from outside what you have done there – sorry

    • This reply was modified 8 years, 2 months ago by Guenni007.
Viewing 30 posts - 9,781 through 9,810 (of 11,188 total)