Forum Replies Created

Viewing 30 posts - 9,211 through 9,240 (of 11,802 total)
  • Author
    Posts
  • in reply to: Colour Section Grey instead of white? #885577

    you have defined it in the optionsdialog of the color section a color-section overlay – to background-color : black ( #000). with an opacity at 0.2
    that causes in a light gray.

    in reply to: Change of header – only for one sub-URL #885212

    Victorias code must work – accept i would make it specific to that post:

    #top.postid-4665 .av_minimal_header #header_main .container, 
    #top.postid-4665 .av_minimal_header .main_menu ul:first-child > li a,
    #top.postid-4665 av_minimal_header #header_main > .container .main_menu  .av-main-nav > li > a {
        height: 90px !important;
        line-height: 90px !important;
    }
    #top.postid-4665 #header #header_main {
      background-color: #646464;
    }

    and maybe you do on that page a bit of padding on bottom/top of the logo:

    .postid-4665 div .logo {
        padding: 5px 0;
    }
    in reply to: Lightbox / Image Size #885206

    by the way the dimension of videos in a lightbox is a bit different !

    f.e:

    .mfp-iframe-scaler {
        width: 80vw;
        padding-top: 45vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%) !important;
    }

    80:45 = 16:9

    • This reply was modified 7 years, 11 months ago by Guenni007.
    in reply to: Lightbox / Image Size #885205

    well first of all there are a lot of snippets for that you can insert in your functions.php of your child-theme
    i sometimes use this – and it depends on what i like to have bigger ( than the fullsize image is taken instead of the large one)

    
    function change_lightbox_size() {
        return "full";
    }
    add_filter('avf_avia_builder_helper_lightbox_size','change_lightbox_size', 10);
    
    function enfold_customization_change_popup_size( $size ) {
      return 'fullsize';
    }
    add_filter( 'avf_avia_builder_masonry_lightbox_img_size', 'enfold_customization_change_popup_size' );

    to style the dimension of the image you can play with:

    img.mfp-img {
        height: 70vh !important;
    }
    in reply to: header loading http giving https security warning #885166

    look to your transparency options if you have inserted a logo there.

    in reply to: Gallery Element: Disable Click-Functionality #885163

    nein – bei mir funktioniert das mit dem keinen link setzen
    hast du eventuell ein anderes Lightbox Plugin installiert?

    in reply to: Gallery Element: Disable Click-Functionality #884788

    PS : ich kann es nicht nachvollziehen, bei mir haben die oberen Bilder keine Linkfunktionalität wenn ich es anwähle ? !!
    https://webers-testseite.de/galerie/

    in reply to: Gallery Element: Disable Click-Functionality #884785

    der Film zeigt mir zwar was du erreichen willst, aber hilft mir wenig dir einen Code zu generieren.
    generell – wenn es nirgends gefordert ist, könntest du das in Enfold – theme optionen – Lightbox Modal Window global abstellen.
    Soll es nur auf der Seite passieren könntest du mit einer benutzerdefinierten Klasse die css eigenschaft pointer-event: none festlegen

    da du aber die funktionalität der kleinen Bilder unterhalb der Galerie behalten möchtest muss du es nur auf das obere Bild anwenden.

    • This reply was modified 7 years, 11 months ago by Guenni007.
    in reply to: Attention: New German court decision, contact forms #884330

    Many thanks for that info!

    Danke vielmals – !

    By the way – those who uses such Autoresponder E-Mails for some advertisements colide with german law too:

    https://kirmse.eu/auto-responder-als-e-mail-spam/

    Keinerlei Werbung also in die E-Mails mit hineinpacken. !

    in reply to: Code I want to remove in Source Code #883166

    this is in functions-set-avia-frontend.php since line 1325
    I could also do without this information on source code !

    and the function is function avia_debugging_info()
    i do not see the benefit of this function

    If a mod can explain the reason for it ?
    this is the way you could get rid of it
    this to functions.php of your child theme:

    if(!function_exists('avia_debugging_info'))
    {
      function avia_debugging_info() {
        // 
      }
    }
    in reply to: Shrinking Header Logo Size #883152

    if you are satisfied with a 50% shrink – do not set up the max-height of your logo with absolute height but with relative:

    .logo img {
        max-height: 200% !important;
    }
    in reply to: Shrinking Header Logo Size #883149

    by the way – if the logo stays transparent on text under the logo – it looks not so nice – maybe a semitransparent background on the subtext looks better – the background is a 50% white under the subtext of your logo: https://webers-testseite.de/sammons/ if you like you can drag&drop the file to use it.

    • This reply was modified 7 years, 11 months ago by Guenni007.
    in reply to: Shrinking Header Logo Size #883142

    this thread is nearly what you like to obtain: https://kriesi.at/support/topic/please-help-for-a-cool-header-design/
    on that solution i changed a bit the code of shrink_fix.js file – you all can read in pastebin . – But thread is old so my test page has gone.

    But on his page you can see the result: https://www.artig.st/ (hope it is ok to post this here – because on his screens you can see the url too)

    You see logo is overlapping and is shrinking on scroll down

    in reply to: Shrinking Header Logo Size #881968

    dear jane – maybe this is a nice lecture for you: https://kriesi.at/support/topic/shrinking-of-header-amount-an-info/

    in reply to: Increase H3 av-masonry-entry-title #879847

    by the way: the rule comes from shortcodes.css line 2511 and there is a space between the two classes – which is on my opinion wrong.

    in reply to: Increase H3 av-masonry-entry-title #879844

    try this:
    .av-masonry-entry.av-masonry-entry-title {font-size: 18px !important}

    the h3 is before (cascading style sheet) these classes – means:
    h3.av-masonry-entry.av-masonry-entry-title {font-size: 18px !important}
    but the code above should work too!

    And because of the two classes are on the same element there must be no space between them!

    in reply to: Two different logos and favicons #878483

    The functions.php is a central part of every wordpress theme. And it is allmost in root directory of the theme.
    On Enfold it is supported through functions-enfold.php. – The child-theme functions.php only ( its possible to overwrite things in parent-theme but) complements ( adds, expanding ) some functions.

    so – are you using the enfold theme with a child-theme? That is important – and has a lot of advantages.
    https://kriesi.at/documentation/enfold/using-a-child-theme/

    the prebuild child-theme of enfold comes with an empty (only some comments are in it) functions.php .
    This is always the case if you find here some snippets to obtain some customisations.

    If you have installed a child-theme and activated it all benefits of the parent-theme are there but to bring some new code to it which does not go away on updates this functions.php is needed.
    You can than edit it via ftp or via dashboard – appearance – editor
    on the right side there are the (on start) two files in the child theme : style.css and functions.php
    the mentioned code above comes to this place!

    Feel free to ask if there is something you don’t understand

    in reply to: Maximum Container Width #878011

    by the way – it is better to open a new thread for a different Question.

    in reply to: Maximum Container Width #878010

    did you see that the code is a bit different? i add before a class to only the iconbox which has an anchor element as descendant gets the pointer!

    to your timeline:

    .main_color .avia-icon-list .iconlist-timeline {
        border-color: #3E5EA7
    }

    you have behind the color an exclamation mark – maybe a rest of an important ?

    .main_color .avia-icon-list .iconlist-timeline {
        border-color: #3E5EA7 !important
    }

    there is no need to have a spacebar between so it could be #3E5EA7!important as well – so maybe you copy/paste the mark with the hexcode.

    in reply to: Maximum Container Width #877973

    maybe it is better to have only on those iconboxes a pointer which has a link
    so add a class with this code to iconboxes which includes an anchor in it and only give the css to those new class.

    add_action( 'wp_footer', 'ava_custom_script' );
    function ava_custom_script() {
    ?>
    <script type="text/javascript">
    (function($) {
        $('.iconbox').has('a').addClass('withlink');
    	function a() {
    			$('.iconbox.withlink').on('click', function(e) {
    					var link = $(this).find('a').attr('href');
    					window.location.href = link;
    			});
    	}
    	a();
    })(jQuery);
    </script>
    <?php
    }
    .iconbox.withlink {
        cursor: pointer;
    }
    in reply to: IPad Not Responsive #877803

    The test page has disappeared due to lack of interest

    in reply to: Rollback to earlier version #877485

    did you try to upload via ftp a whole enfold folder ( newest – or an older backuped version) ?

    in reply to: Rollback to earlier version #877417

    you can login to your admin area? Thats what you mean if you say : control panel?
    Are you working with a child-theme?
    Have you installed caching tools? – Did you cleared your Cache of the browser?

    in reply to: Two different logos and favicons #877411

    2 weeks ago the question – ???
    ps : just think of clearing cache to see the results – you are using Lightspeed Caching tool

    if you don’t like the infinite loop you can add an iteration count (don’t forget the webkit opiton)
    you can play with these settings (ask google) and always insert it with -webkit option too !

    #layerslider_25 .ls-bg {
        opacity: 1;
        -webkit-animation-name: fadeanimation;
        animation-name: fadeanimation;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        -webkit-animation-duration: 9s;
        animation-duration: 9s;
        -webkit-animation-iteration-count: 2;
        animation-iteration-count: 2;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    so if you only want to make it once you can take the code instead of infinite:

    #layerslider_25 .ls-bg {
        opacity: 1;
        -webkit-animation: fadeanimation 10s infinite;
        animation: fadeanimation 10s 1;
    }

    Well if i understand it what you want – there is a possibility to make an infinite animation via css

    make your one slide slider – you now have to know the id ( you can see it as shortcode in layerslider options)

    than you can add to that slider a background image create a keyframe animation and set this layerslider background image to be animated
    looks this way on my test installation:

    #layerslider_25 .ls-bg-wrap {
        background-image: url(https://webers-testseite.de/wp-content/uploads/layerslider/Homepage-Slider/macro.jpg);
        background-size: cover;
    background-repeat : no-repeat
    }
    
    @keyframes fadeanimation { 
      0%   { opacity:1; }
      40%   { opacity:1; }  
      50%  { opacity:0; }
      90%  { opacity:0; }
      100% { opacity:1; }
    }
    
    #layerslider_25 .ls-bg {
        opacity: 1;
        -webkit-animation: fadeanimation 10s infinite;
        animation: fadeanimation 10s infinite;
    }

    result see here: https://webers-testseite.de/one-slide-slider/

    zunächst könntest du mal im Dashboard die Sprache auf formal Sie umstellen.

    Dann könntest du aber auch eigene Übersetzungsdateien auf Basis der bestehenden im Child-Themes folder und bindest diese so
    via functions.php deines Child-Themes ein

    Die Spachfiles sind immer im Paar vorhanden. po / mo files die sind im enfold/lang folder nimm gleich als Kopie dann schon mal die
    de_DE_formal.po und de_DE_formal.mo und kopiere die in den child-theme/lang folder ( Erstelle den wenn er nicht da ist)

    function overwrite_language_file_child_theme() {
        $lang = get_stylesheet_directory().'/lang';
        return $lang;
    }
    add_filter('ava_theme_textdomain_path', 'overwrite_language_file_child_theme');

    jetzt kannst du nach herzenslust und laune diese Datei (po) mit zB poedit (freeware) öffnen und bearbeiten.
    Diese Dateien gehen dann auch bei einem Update nicht mehr verloren.

    • This reply was modified 8 years ago by Guenni007.
    in reply to: scale up images in gallery #876169

    the distance you can set on alb element is too much?
    You can set in columns the “space between columns” option – this has the big advantage that on responsive case that distance goes to off.
    if it is too much space go to second tab on column and define a padding.

    in reply to: scale up images in gallery #875883

    sorry i’m concerning to your Supplementary question with the testimonial. here
    I see now that you like to have the name under the images.
    So the rest of the code above stayes for the little arrow: –
    and i dont know whay you have made the image container bigger without the image. So it is not centered
    So either you increase the image size to 200px x 200px or go back to the original 180px x 180px – code for both is:

    .avia-slider-testimonials .avia-testimonial-meta {
        margin: 20px 0 0 0;
    }
    
    .avia-slider-testimonials .avia-testimonial-arrow-wrap {
        left: 50%;
        transform: translateX(-50%);
        top: -21px;
        width: 30px;
        height: 30px;
    }
    
    .avia-testimonial-arrow-wrap .avia-arrow {
        height: 20px;
        width: 20px;
        top: -14px;
        margin-left: -10px;
    }
    
    .avia-slider-testimonials .avia-testimonial-meta .avia-testimonial-image {
        width: 180px !important;
        height: 180px !important;
    }

    and by the way: the galleries are now av_section_4 and av_section_9
    if you make the screen small – the section 4 goes too in a one column and this seems to look good if both 4 and 9 are the same

    • This reply was modified 8 years ago by Guenni007.
    in reply to: Migration – which Plugin #875753

    i always use duplicator : Link
    even for the backups. I never had any bad issue with it; and i do not use the pro version – the normal free one did the trick too.
    Activation is only needed for the pro-version
    Very simple – just two files to down/upload – you only have to know your new database infos.
    by the way sometimes f.e. on strato servers the localhost must be determined : rdbms.strato.de – thats all

    ________

    PS : sometimes on big uploads folder i exclude this – and save the uploads folder via ftp.

Viewing 30 posts - 9,211 through 9,240 (of 11,802 total)