Forum Replies Created

Viewing 30 posts - 9,811 through 9,840 (of 11,187 total)
  • Author
    Posts
  • in reply to: how to place an image in button on fullwidth slider #718509

    what kind of slider did you take – because where does the span come from?
    And why are you using 2 buttons i thought the image was your need – not a second button.

    can you please only insert in that buttonfield the text and remove the img tag.

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

    but neverthe less this will be on responsive case difficult to obtain a button that stayes in the slider.

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

    well you will have a different page id !!!
    i can not see your site !

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

    by the way did you choose the sliding or fading?
    on fading i think the animation is not so important.

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

    the situation is that you have an image (that little excel icon) this is not part of a fontello iconset ( there are some alternatives with black and white excel icons))

    give a custom class to the fullwidth-slider (for example: “customclass”) – (i have tested it on a enfold playground and page id was 3437)

    .page-id-3437 .customclass .avia-slideshow-button::after {
        content: url("/wp-content/uploads/excell-icon.png");
        display: inline-table;
        height: auto;
        padding: 0 0 0 10px;
        width: 30px;
    }
    #top.page-id-3437 .customclass .avia-slideshow-button {
        display: inline;
        height: 50px;
        top: 30px;
    }

    webers-testseite.de/ikom/image-in-slider-button

    but than the button stops moving

    we only can reach the moving if your excel icon is in that frame!

    if you let this at inline-block the animation is ok:

    #top.page-id-3437 .customclass .avia-slideshow-button {
        display: inline-block;
    }
    in reply to: Enfold-Layerslider Stopped working #718457

    on my hoster i can declare who is the “chief of a folder ” i can give the ownership of a folder to a wp-user or a ftp-user. Maybe your hoster got this too. (by the way wp is in this case no shortform of wordpress – it is from hosteurope a given shortform)

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Enfold-Layerslider Stopped working #718452

    try first only to set the rights to the config.php
    if that does not help yes triy that

    if this (777) helps afterwards you can set the folder permissions back to normal 750 and the file permission to 640 and test that.

    in reply to: Enfold-Layerslider Stopped working #718448

    have a look again to the post
    /wp-content/themes/enfold/config-layerslider/ is also important

    the other folder comes from installing slider demo templates – you don’t need to create them

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Enfold-Layerslider Stopped working #718445

    did you prove the user permissions of your installation?

    The folder /wp-content/uploads/dynamic_avia (quick css and others)
    and /wp-content/uploads/layerslder (if you installed preformated Layersliders) and
    /wp-content/themes/enfold/config-layerslider (nomen est omen) has to be writeable.
    You can proove that on setting them (including content folder and files) for that moment to 777

    i think particularly the /wp-content/themes/enfold/config-layerslider/config.php has to have 640 (at least)

    Entschuldige – den Vorgabe Farbwert überlas ich. :) – bis dann

    this tip seems to me very familiar:

    https://kriesi.at/support/topic/icon-packs/

    in reply to: SVG code for Logo #718337

    yes the code is important to set the logo to display: none (ps don’t forget to make it for the responsive case too.)

    but you don’t need any plugin for that.
    The code to be able to upload svgs to wordpress is old:

    (both comes to 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' );

    after you set the original “logo” to display none you can insert the svg code (so without img src) into enfold:

    function first_logo($logo) {
    $logo .= '<strong class="logo first-logo"><a href="path to an url1">' ;
    $logo .= file_get_contents("/wp-content/uploads/logo1.svg");
    $logo .= '</a></strong>';
    return $logo;
    }
    add_filter('avf_logo_final_output', 'first_logo');

    this is a big andvantage because now you have the possibility to setup f.e. hover styles to svg path or something like that.

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Benutzerdefinierter Hintergrund bei Slide show (volle Breite) #718000

    ich denke das Beste wäre du gibst der Slideshow eine benutzerdefinierte Klasse.
    http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
    (i think it will be best to determin a custom class on fullwidth-slider)

    zB “background-vollebreite”. oder so ähnlich.
    (f.e. “.background-vollebreite” )

    wenn du das generell bei allen Bildern gleich haben willst:
    (if you like to have it globaly for that specific page/post)

    .background-vollebreite .avia-slideshow-inner {
        background-color: #383838;
    }

    wenn du es für jedes Bild einzeln definierten möchtest:
    (if you like to set up for each slide:)

    .background-vollebreite .avia-slideshow-inner .slide-2 {
        background-color: #383838;
    }

    das kannst du dann für jedes einzelne Slide durchführen.
    (than you can make it for slide-1, slide-2 etc. they all have a unique class!)

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: my own icon on ipad #717873

    well there is a unique site which can help the most of your desired things.
    http://web-stuebchen.de/

    you can upload there a square image best and correct only the 310x150png for Windows10.
    after generating you can download one zip file with all you need.

    i uploaded on my part allways to wp-content/uploads/icons

    the path can be set in here on that dialog:

    Preview

    the insertion you can do via child-theme functions.php – the downloaded snippet.html contains the code you need:

    add_action('wp_head', 'ava_add_customicons');
    function ava_add_customicons() {
        ?>
    
    <link rel="shortcut icon" type="image/x-icon" href="/wp-content/uploads/icons/favicon.ico">
    <link rel="icon" type="image/x-icon" href="/wp-content/uploads/icons/favicon.ico">
    <link rel="icon" type="image/gif" href="/wp-content/uploads/icons/favicon.gif">
    <link rel="icon" type="image/png" href="/wp-content/uploads/icons/favicon.png">
    <link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon.png">
    <link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon-57x57.png" sizes="57x57">
    <link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon-60x60.png" sizes="60x60">
    <link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon-72x72.png" sizes="72x72">
    <link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon-76x76.png" sizes="76x76">
    <link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon-114x114.png" sizes="114x114">
    <link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon-120x120.png" sizes="120x120">
    <link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon-128x128.png" sizes="128x128">
    <link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon-144x144.png" sizes="144x144">
    <link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon-152x152.png" sizes="152x152">
    <link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon-180x180.png" sizes="180x180">
    <link rel="apple-touch-icon" href="/wp-content/uploads/icons/apple-touch-icon-precomposed.png">
    <link rel="icon" type="image/png" href="/wp-content/uploads/icons/favicon-16x16.png" sizes="16x16">
    <link rel="icon" type="image/png" href="/wp-content/uploads/icons/favicon-32x32.png" sizes="32x32">
    <link rel="icon" type="image/png" href="/wp-content/uploads/icons/favicon-96x96.png" sizes="96x96">
    <link rel="icon" type="image/png" href="/wp-content/uploads/icons/favicon-160x160.png" sizes="160x160">
    <link rel="icon" type="image/png" href="/wp-content/uploads/icons/favicon-192x192.png" sizes="192x192">
    <link rel="icon" type="image/png" href="/wp-content/uploads/icons/favicon-196x196.png" sizes="196x196">
    <meta name="msapplication-TileImage" content="/wp-content/uploads/icons/win8-tile-144x144.png"> 
    <meta name="msapplication-TileColor" content="#ffffff"> 
    <meta name="msapplication-navbutton-color" content="#ffffff"> 
    <meta name="application-name" content="bonnzeit.de"/> 
    <meta name="msapplication-tooltip" content="bonnzeit.de"/> 
    <meta name="apple-mobile-web-app-title" content="bonnzeit.de"/> 
    <meta name="msapplication-square70x70logo" content="/wp-content/uploads/icons/win8-tile-70x70.png"> 
    <meta name="msapplication-square144x144logo" content="/wp-content/uploads/icons/win8-tile-144x144.png"> 
    <meta name="msapplication-square150x150logo" content="/wp-content/uploads/icons/win8-tile-150x150.png"> 
    <meta name="msapplication-wide310x150logo" content="/wp-content/uploads/icons/win8-tile-310x150.png"> 
    <meta name="msapplication-square310x310logo" content="/wp-content/uploads/icons/win8-tile-310x310.png"> 
    
        <?php
    }
    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Close all toogles of all accordion in the same page #717716

    this is now the global solution if you don’t like it for the whole wordpress installation you have to set up some if-clauses

    f.e:

    function only_one_toggle_open_at_the_same_time(){
    if ( is_page(3423) ) {
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	$('.toggler').on('click', function(){
      		$('.toggler').not(this).next().removeClass('active_tc');
    	});
        	$('.toggler').on('click', function(){
                    $('.toggler').not(this).removeClass('activeTitle');	
    	});
        });
    })(jQuery);
    </script>
    <?php
    }
    }
    add_action('wp_footer', 'only_one_toggle_open_at_the_same_time');

    on that if clause you can use all conditional tags you know e.g:

    if ( is_singular( 'event' ) || is_search() || is_category() || is_page() && !is_page(1307) || is_singular( 'portfolio' ) )

    etc.pp

    by the way is_home( ) does not work ??? but: is_front_page( ) works

    PPS: again something new to me :
    is_home() returns only true if it is the blog-post index site
    if your landing-page is a page you have to use is_front_page()

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Different font-weight in menu / navigation #717694

    i guess it has something to do with: anti-aliasing of safari font rendering
    try this here first as a global rule

    html {  
        -webkit-font-smoothing: antialiased;
    }

    but on this adivise from: https://blakepetersen.io/how-to-clean-up-chrome-and-safaris-webfont-rendering/

    Use Wisely
    For these last two hacks, each character re-rendered will require extra resources so it’s best NOT to use these to render large swaths of copy. Use these on headers and global elements where you will have the most impact, but for the main copy use ‘serif’ or ‘sans-serif’ and let the browser decide.

    try perhaps only:

    .av-main-nav > li > a {
        -webkit-font-smoothing: antialiased;
    }

    by the way i see you use a different font for this – do you have all web-font files uploaded?

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Different font-weight in menu / navigation #717434

    hm seems to be a rendering problem of safari. it is strange because if you activate each of your menu points one after the other. sometimes the difference is gone.
    By the way – the same thing on Safari Technology Preview.

    in reply to: Close all toogles of all accordion in the same page #717011

    try this here – maybe it works for you (in child-theme functions.php)

    function only_one_toggle_open_at_the_same_time(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	$('.toggler').on('click', function(){
      		$('.toggler').not(this).next().removeClass('active_tc');
    	});
        	$('.toggler').on('click', function(){
                    $('.toggler').not(this).removeClass('activeTitle');	
    	});
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'only_one_toggle_open_at_the_same_time');

    by the way : the laurels go to Josue
    see also here: https://kriesi.at/support/topic/single-toggles-besides-sibblings-each-other/

    • This reply was modified 8 years, 2 months ago by Guenni007.
    in reply to: Adding Container after main – before wrap_all closes #715246

    ok – i created my own do_action and placed it just before

    so i have than:

    do_action('avia_after_wrap_all');
    wp_footer();

    now i can place with if-clauses some content on specific pages/post just after wrap-all closes

    sometimes the easy way is out of sight. i searched for do_action but did not find the right place i want. On creating my own one i never had thought of till now.

    can be closed

    • This reply was modified 8 years, 3 months ago by Guenni007.
    in reply to: Enfold Hamburger Menu and Animation #714335

    Well activating is no problem so far – but you mean if there is on a specific page a adv. layerslider the greensock animation will not work.

    in reply to: Removing alt text from images #714193

    you want to remove the alt text only or to remove the tag ?
    because on coming WordPress 4.7 the alt tag stays empty if there is no text input for it than the tag is alt=””

    in reply to: Adding Container after main – before wrap_all closes #714181

    yes i can have a child theme footer.php but i don’t want it on all pages just on the frontpage (home)

    and i thought that an image like this is your problem:

    and look what my solution did with it in mobile (not simulated mobile) does with it!
    http://webers-testseite.de/kaetz/leistungen/#av_section_6

    Smiley der sich nachdenklich am Kopf kratzt

    is your header a shrinking one or not ?
    is it fixed on top ?

    The thing i understand from your request is that you don’t want to crop the images on top.
    The responsive behaviour is a different thing – but you see on screenshot here: https://kriesi.at/support/topic/is-there-any-way-to-make-the-background-image-in-a-color-section-responsive/#post-712654 that it will work on real mobile browsers too and even the font goes to the responsiveness.

    On what mobilephone your are testing these pages – tell me your Browser and or IOS version please.

    you can see here : http://webers-testseite.de/kaetz/leistungen/#av_section_6
    ist this what you want? it is positioned center top even if you are turning your mobile to landscape the hat of that young lady isn’t cropped.
    no mobile simulated – i can see it on my iphone 4s ( a bit older) and on my ipad4 that all is working in that manner you prefer.

    Do you can see it too on my testpages that it works? ( i only have here mac equipement – so i could not test it in other variants.)

    in reply to: is there a fast way to style tag result pages #713182

    Thanks again! Yigit

    and once again: if you have a non shrinking header – you know your header hight ! from Enfold Dialog
    if you choose small i guess it is 50px – for big …. look yourself. this comes to scroll-offset on main!

    so if you have a color section with fixed positioning add a custom class – maybe topfixed or something like this:

    .responsive #top .avia-section.topfixed {
        background-position: center 50px !important;
    }

    or left or right. etc. the 50px (look to the bride theme) on css you find the background-position : center top but without regarding the header hight.

    on responsive case the sticky header is lost – and scrolls away – so background position has to get the top (0px value) !!!

    @media only screen and (max-width: 768px) {
    .responsive #top .avia-section.topfixed {
        background-position: center 0 !important;
    }
    }
    • This reply was modified 8 years, 3 months ago by Guenni007.

    if you have a shrinking header there is an old thread of mine because sometimes it is not so important that the scroll-offset is missing.
    But sometimes it is.

    https://kriesi.at/support/topic/color-section-on-top-fixed-background-attachment-positioning/

    and a not so perfect solution for desktop browsers. This is a problem with header and shrinking header height. The scroll offset seems to be not considered of the positioning.

    see here the fix (for desktop browsers – not for mobile): http://webers-testseite.de/kaetz/leistungen/

    edit : look to the page above with your mobile ! i placed that “bride” image near the bottom.
    and if you look to it in landscape mode you see that the image is cropped at the bottom !

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

    but this is not a matter of responsiveness it is a trouble with fixed positioning. And that seems to be a global Problem of all Mobile Browsers.

    https://coderwall.com/p/kivwgg/position-fixed-on-mobile

    maybe there are some javascript solutions http://bradfrost.com/blog/mobile/fixed-position/#js-solutions but definitly there is no one and only good fix of that.

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

    so – did you realy read what i wrote – that is the question !

    please go and look again.
    I tested something for you .
    it seems to work on my old iphone 4s – so i could not believe that it won’t work on actual mobile phones

Viewing 30 posts - 9,811 through 9,840 (of 11,187 total)