Forum Replies Created

Viewing 30 posts - 9,331 through 9,360 (of 10,894 total)
  • Author
    Posts
  • in reply to: Image (link) overlay questions #755593

    seems to be a matter of image size ( all-inkl is only 116px of height – all others have more) –
    i don’t know where the display: none comes from. maybe there is a height limit for that in code.
    you can force to show it by:

    
    .image-overlay.overlay-type-extern {
        display: block !important;
        top: 0;
    }

    but as i see you want to get rid off all overlay effects.
    Why is a css solution not wanted by you? give a custom class to those images …

    in reply to: how to load f.e. a custom heading.php #755102

    So to be precise when adding that code every shortcode in the child-theme/shortcodes. folder overwrites the existing one in parent folder?
    (I thought i had allready looked into the documentation ? )

    if so the thread can be closed.

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: Lightbox: Displaying 'alt' tag below image #753534

    A line break ind <br/> in alt -tag does not work. So my advice is to get here instead the description. But i don’t know how to adress it.

    in reply to: What0s new in Enfold 4.0? #753166

    or you goto kriesi itself:
    http://kriesi.at/documentation/enfold/enfold-changelog/

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: Lightbox: Displaying 'alt' tag below image #751920

    Maybe you could change it not to alt attribut but to description of image

    in reply to: Lightbox: Displaying 'alt' tag below image #751918

    hm try this in functions.php of your Child-Theme – it will than show the alt tag instead (if there are more lines – i don’t know)
    don’t know if this works for standalone Images but for galleries it works

    function gallery_title_fix(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
          $('.lightbox-added img').each(function(){
                var lin = $(this).attr('alt');
                $(this).attr('title',lin);
            });
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'gallery_title_fix');
    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: how can i bring this image to the right? #751762

    but in your case with the image in front – and only one column set to image right positioning we can select the heading via neighbour selector:

    .avia-image-container.avia-align-right + .av-special-heading .av-special-heading-tag {
        text-align: right;
    }

    but still your png has empty space on the right side (the other images not)

    diese Regel würde jedes Heading was ein direkter Nachbar zu einem Bild ist welches rechts platziert ist dementsprechend ändern.
    Wenn das nicht gewünscht ist, dann musst du Seitenspezifisch arbeiten (voranstellen von .home als Klasse zB)

    Hier eine nette Seite wegen der Selektoren: Link

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: how can i bring this image to the right? #751758

    hey Basilis on screenshot you can see the url.

    for the centered image there is the same solution: Set up the image as centered – and the heading to modern centered !

    But to have the oportunity to set up the heading on the third column it will be nice to have here a custom css class.

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: Layerslider styles issue #751756

    did you style it via options dialog – or do you fill in that little field under options your custom css.?
    i recognized it on an installation that f.e. the transparency background of a text did not work but if i put in the input field under those options the css code it works. ( i mean the input field of layerslider itself – it has its own custom css field

    in reply to: Google Maps loading on every page #751555

    well there are a lot of code snippets here on board to deactivate google maps.
    maybe something like this is working. (you can see that accept page 3184 the maps api isn’t loaded)

    this comes to child-theme functions.php:

    add_filter('avf_load_google_map_api', 'disable_google_map_api', 10, 1);
    function disable_google_map_api($load_google_map_api) {
    if( !is_page(3184) ) {
            $load_google_map_api = false;
            return $load_google_map_api;
    }
    }

    But ! if you have the maps in the widget area you have to see how you can manage it.
    And if you use some caching tools – i don’t know how if this will work too
    On a test installation of mine it seems to work Link

    in reply to: how can i bring this image to the right? #750976

    ha – and by the way – i see the image is an alb image so you have the opportunity to choose position of the image to right. !

    in reply to: how can i bring this image to the right? #750964

    well first of all it will be nice if the image (png) does not have any space to the right – otherwise we have ta right positioning of -28px or something like this.
    So cut your png – to have no transparency on the right.

    if this is not possible try to get this to quick css:

    .home .avia-builder-el-10 .avia_image {
        position: relative;
        right: -40px !important;
    }

    but it will be nice to have here for the last column a custom class because this does not look good if the h1 under it is stayes there.
    And it is much easier to create a specific css code for both img and heading tag.

    btw. it is not good to have more than one h1 per page !

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: www.link.at why there is a link in enfold file? #750960

    and you recognized it because you are using Wordfence :lol ?

    see here: https://kriesi.at/support/topic/wordfence-critical-issue-with-enfold-theme-file/#post-746534

    so update to 3.8.5 or if you are a paranoid person just put in your domain (because it is commented out – there was no result of what is in there)

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: header widget to be below logo & menu on mobile view #749607

    on header you have i think three different possibilities to insert code to:

    /********* the one you choose **********/
    add_action( ‘ava_after_main_menu’, ‘enfold_customization_header_widget_area’ );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( ‘header’ );
    }

    /*********header widget area before**********/

    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'header' );
    }

    /*********header widget area just right after main container starts **********/

    add_action( 'ava_after_main_container', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
      dynamic_sidebar( 'header' );
    }

    maybe it is better to choose one of the two other options

    in reply to: Additional Google Font not displayed #748266

    i often use the source sans pro – but only latin not latin extended – maybe this is causing the mismatch?

    and by the way you don’t need to mention the latin case because it is in the latin-extended version.
    so :

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Source Sans Pro Extra Bold'] = 'Source Sans Pro:900&subset=latin,latin-ext';
    $fonts['Source Sans Pro Bold'] = 'Source Sans Pro:700&subset=latin-ext';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Source Sans Pro Light'] = 'Source Sans Pro:300&subset=latin-ext';
    return $fonts;
    }
    in reply to: Enfold Facebook Group #747921

    This here is the place to get help!

    and btw. what is this ? Facebook for

    in reply to: Center menu – responsive ?! #745494

    this is because it is in media querie rule:

    the ending curly bracket is now missing there – where do you want to end this rule. You have to put in a }

    Edit : i put in the bracket – now you can erase me as user

    that is the reason why i do not have those media queries in the middle of the css. i put it alway on the bottom to it:

    @media only screen and (max-width: 810px) {
    this last closing bracket was not there
    }
    in reply to: Layerslider Update #745423

    Great – thanks

    in reply to: Center menu – responsive ?! #745416

    ok – have a look and see if i understood your request in the right way.

    btw: i added some code to your functions.php of your child theme –
    this is why your quick css input window is now at 100% width and responsive

    By the way – please do update to WP 4.72 soon -because there are a lot of sites hacked (hacked by sa3d hack3d) including two of my sites.
    it is a security problem of WP 4.71 only and goes to posts (not pages nor portfolio posts) see google

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: Center menu – responsive ?! #745390

    you can do that or you can wait till mods are here in this thread.

    in reply to: Center menu – responsive ?! #745344

    is my english too bad or do you like to misunderstand me –
    this is the code you should add: https://kriesi.at/support/topic/center-menu-responsive/#post-743775

    and this is the code you have to remove – https://kriesi.at/support/topic/center-menu-responsive/#post-745323
    because it is not the code you need. If you have removed it i will see what code will do the job

    in reply to: Different logos for different pages/categories #745320

    Either it is not so important or you changed it and you forgot to response or it is to complicated . So if we had input we can clarify those settings

    in reply to: Center menu – responsive ?! #745319

    you lost something (the max-width of body):

    #top.boxed, .html_boxed.html_header_sticky #header {
        max-width: 85%;
        width: 1010px;
    }

    the rules above are conflicting and confusing that rule

    in reply to: Center menu – responsive ?! #745316

    well ok. –
    i can see underneath my code above that there are additions in the quick css media querrie und 810px – namely:

    .container {
        width: 100%;
    }
    .container .av-content-small.units {
        width: 80%;
    }
    .responsive #top.boxed, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
        max-width: 90%;
        width: 80%;
    }
    .responsive .container {
        max-width: 80%;
    }
    #top #header .av-main-nav > li > a {
        font-size: 15px;
    }

    can you please remove that first – because the code which is necessary is “fighting” against that.

    ≥ ≤ < > html-entities

    or

    ≥ and ≤ unicode dezimal works

    • This reply was modified 7 years, 9 months ago by Guenni007.
    in reply to: Center menu – responsive ?! #744715

    ok seems to be not so important, but you changed yourself the code
    so now i’m out from this topic. Your welcome

    in reply to: Center menu – responsive ?! #743981

    i see that this code was inserted after my last information:
    it is in media-querie und 810px – can you please remove it shortly
    i thought you like to have for body (#top.boxed) max-width: 1010px and width: 85%

    .container {
        width: 100%;
    }
    .container .av-content-small.units {
        width: 80%;
    }
    .responsive #top.boxed, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header {
        max-width: 90%;
        width: 80%;
    }
    .responsive .container {
        max-width: 80%;
    }
    #top #header .av-main-nav > li > a {
        font-size: 15px;
    }

    after that we will see what happens

    in reply to: Center menu – responsive ?! #743974

    First impression:
    You see the image and that the slider is under the Navigation. This is a wanted effect?

    if not now the value is :

    .html_header_top.html_header_sticky.html_large.html_bottom_nav_header #main {
        padding-top: 165px !important;
    }

    if you see my little video there was allways a padding left/right so there has to be some changings in the meanwhile from your site which causes this behavior.
    I will see what it is.

    in reply to: Menu Button Colored Styles #743917
    #top .main_menu #menu-item-1107.av-menu-button a .avia-menu-text {
        border: 2px solid #fff !important;
    }
    
    #top .main_menu #menu-item-1107.av-menu-button a:hover .avia-menu-text {
        border: 2px solid #f00 !important;
    }

    be aware that on #menu-item-1107.av-menu-button is no spacebar between 7.a

    in reply to: Seite nicht komplett HTTPS:// sicher #743915

    hatte ich auch nicht so empfunden.

    PS ich hatte mal bei einer installation zunächst die Variante boxed gewählt beim Layout. Da kann man dann für Body ein Hintergrundbild wählen.
    nach dem umstellen auf stretched – was mir dann besser gefiel, hatte ich diese Einstellung dann (die ist dann nicht mehr erreichbar vergessen.
    Genau da drin war das http Bildchen hartnäckig platziert. Da habe ich mir den wolf gesucht.

    Bis demnächst mal wieder

Viewing 30 posts - 9,331 through 9,360 (of 10,894 total)