Forum Replies Created

Viewing 30 posts - 8,341 through 8,370 (of 10,921 total)
  • Author
    Posts
  • 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 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 7 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 7 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.

    in reply to: IPad Not Responsive #875690

    on nearly all other screenshots of your installation : if you don’t want full width layout – do not use grid alb element.
    The reason why the right content goes over your left one is that you have set the padding in the left grid cell to an absolute value (350px) –
    but even if you could have done it with relative values ( in percent) – take the column layout .
    5th screenshot: your journal page – make a 1/4 and a 3/4 column
    4th screenshot: 1/3 columns side by side
    6th screenshot: your enquire page: a 1/1 column above with your heading: Let’s work on something
    great together
    .
    under it a 1/2 1/2

    ________________________

    if you have seen the difference on my site example – i will remove it

    • This reply was modified 7 years ago by Guenni007.
    in reply to: IPad Not Responsive #875688

    i guess sometimes you have to think about what you like to obtain f.e.
    the second screenshot – this is a very special construct of you.
    i would have done it not with a grid. Grid ALB is for having the whole width some content. Than you making an extra big padding on the left side to have the image right side in that grid cell. Etc
    concerning to your text : you can use the heading element with breaks just inserting where you want a break an </br> so your heading line in heading alb looks this way:
    Partnering with clients</br>to create meaningful</br>content that resonates and</br>brings your work to life.
    but even on headings i would not do this. Give the responsiveness a chance to break lines.
    On pure text block elements with a lot of text i only structured the layout via paragraph. in a paragraph itself it is very rare to have that breaks.
    By the way if you don’t like the way often wordpress sets the breaks you can use plugins like hyphenator, which even could help to have much prettier word-breaks. ( see text block in justify mode)

    i would have done that by 1/2 1/2 containers – left side the image right side your text.
    click to enlarge:

    And to have it a bit more tricky – on smaller screens (less 990px ) your headline moves (virtually) to top.
    This could be achieved by setting display option by media query.
    Enfold 4.2 got this embeded feature to set on some resolutions in the alb element itself

    you see the layout above – i doubled your text in a 1/1 box and set it to display:none on large screens
    on the text right hand besides the image – i did it vice versa – as you see in the 2nd screenshot.

    see result here: https://webers-testseite.de/elegant/kelsey/

    If you don’t like to install new 4.2 this could be done via custom classes and media query

    in reply to: Big Homepage Logo #875580

    there has to be made css adjustments. But – as said above – without a live view not possible.

    in reply to: child-theme avia.js and another js ? #875483

    Das war auch mehr eine akademische frage ( reine Neugier )
    ich gehe den weg über die komplette avia.js und ersetze eben dort in der function.

    Mir fiel nur auf, dass durch deinen fix betreffend des Hamburger Menus unter mitnahme der gesetzten Klassen ja die avia.js ersetzt wurde.
    Dadurch aber meine Modifikation des shrinkens nicht mehr funktionierte, obwohl das Laden dieser in meiner functions.php unterhalb des avia.js ersatzes stand.

    in reply to: Dear Lord Please help me with this install! #875480

    if you can now activate your child-theme all the goodies of the parent themes are in place. Even the demo import. So goto ( now with the child and i guess you are working with a german version of wordpress )
    Dashboard – Enfold Child – Demo Import
    on every image and description there are a preview link under “What you get: Online Demo”
    if one fits your needs – hover the preview image of the Demo and click to import. Now a bit of waiting time.
    On the base of that predesigned demo you can now begin to customize it.

    in reply to: scale up images in gallery #875440

    and if you like to have in this case that little arrow a bit bigger insert this wohle code instead:

    .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;
    }
    
    @media only screen and (min-width: 480px) {
    .avia-testimonial-meta-mini {
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    }
    • This reply was modified 7 years ago by Guenni007.
    in reply to: scale up images in gallery #875437

    you can try this in quick css:

    .avia-slider-testimonials .avia-testimonial-arrow-wrap {
        left: 50%;
        transform: translateX(-50%);
    }
    
    @media only screen and (min-width: 480px) {
    .avia-testimonial-meta-mini {
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    }
    • This reply was modified 7 years ago by Guenni007.
    in reply to: link to the latest post #875133

    sorry for asking a question a bit besides – what do you mean by the latest – i guess it is the youngest one ?
    The new one ( late sounds a bit as if it was the oldest one) ?

    in reply to: Plug-in to install a child theme #875122

    you can do both at same time:
    Enfold got a prebuilt child-theme : https://kriesi.at/documentation/enfold/downloads/
    i would advice you to upload both to your themes folder via ftp so that is in your themes file the enfold folder and the enfold-child folder side by side.
    Then you can directly activate the child.

    in reply to: Center Logo #875121

    Shall we ask the glass sphere? no joking aside.
    Is there a link in private content area? i would like to help you – but without link only mods could help you here (if there is a link in private area)
    To help needs more input – and always best is a link

    in reply to: Display page name in header area to right of logo #875052

    but i’m looking for a solution which includes the anchor links – so that a onepage layout did work too.

Viewing 30 posts - 8,341 through 8,370 (of 10,921 total)