Forum Replies Created

Viewing 30 posts - 8,911 through 8,940 (of 11,475 total)
  • Author
    Posts
  • 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, 7 months 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, 7 months 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, 7 months 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, 7 months 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.

    did you clear your browser cache as well ? because they will have the cached sites of your Caching plugin.

    On my browser your contact page with https now loads as it should

    if there are files with http://your domain in it
    than you can do a save changes to database run.

    for those pages which i put to https i do a database search and replace.
    there are some fine plugins on WordPress – i used often : https://de.wordpress.org/plugins/search-and-replace/

    but you have to be carefull with these tools – a bad search replace could end in a non-working page.
    it is not quiet simple as search http and replace with https

    it is best to do a simulation without changing anything to see if it founds some entries in your datatable
    There is a button on that plugin to first secure the sql database
    if you do a more specific search as in the image it might go everything ok
    click to enlarge

    your site has a W3 Total Cache installed – have you cleared all cache.

    that little image seem to come from wpstats – is there a plugin you can turn off to prove if it comes from that source.

    by the way a lot of your scripts etc are loaded via http on that page

    Laden fehlgeschlagen für das <script> mit der Quelle "http://www.inclinedesigngroup.com/wp-content/plugins/jetpack/modules/photon/photon.js?ver=20130122".  contact:325
    Laden fehlgeschlagen für das <script> mit der Quelle "http://s.gravatar.com/js/gprofiles.js?ver=2017Novaa".  contact:333
    Laden fehlgeschlagen für das <script> mit der Quelle "http://www.inclinedesigngroup.com/wp-content/plugins/jetpack/modules/wpgroho.js?ver=4.8.3".  contact:339
    Laden fehlgeschlagen für das <script> mit der Quelle "http://www.inclinedesigngroup.com/wp-content/themes/enfold/js/avia.js?ver=4.2".  contact:340
    Laden fehlgeschlagen für das <script> mit der Quelle "http://www.inclinedesigngroup.com/wp-content/themes/enfold/js/shortcodes.js?ver=4.2".  contact:341
    Laden fehlgeschlagen für das <script> mit der Quelle "http://www.inclinedesigngroup.com/wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js?ver=4.2".  contact:342
    Laden fehlgeschlagen für das <script> mit der Quelle "http://www.inclinedesigngroup.com/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.22.0".  contact:349
    Laden fehlgeschlagen für das <script> mit der Quelle "http://www.inclinedesigngroup.com/wp-includes/js/mediaelement/wp-mediaelement.min.js?ver=4.8.3".  contact:350
    Laden fehlgeschlagen für das <script> mit der Quelle "http://www.inclinedesigngroup.com/wp-includes/js/comment-reply.min.js?ver=4.8.3".  contact:351
    Laden fehlgeschlagen für das <script> mit der Quelle "http://www.inclinedesigngroup.com/wp-includes/js/wp-embed.min.js?ver=4.8.3".  contact:352
    duplicate hubspot script with id: "LeadFlows-3455037" included on page  3455037.js:15:11
    duplicate hubspot script with id: "CollectedForms-3455037" included on page
    • This reply was modified 7 years, 7 months ago by Guenni007.

    go and prove your links : the contact page getting from menu : is a http://www … and the link you gave us is a https://www

    by the way :
    on your http page there are two implemented images:

    http://pixel.wp.com/g.gif?v=ext&j=1%3A5.5&blog=126712836&post=156&tz=6&srv=www.inclinedesigngroup.com&host=www.inclinedesigngroup.com&ref=&rand=0.010062487777742879
    http://www.inclinedesigngroup.com/wp-content/uploads/2017/03/InclineDesignGroup-168x35.png
    • This reply was modified 7 years, 7 months ago by Guenni007.
    in reply to: Big Homepage Logo #874815

    please do adopt this to your homepage url and alternate logo url –
    and do this into functions.php file of your child-theme:

    function custom_logo_home(){
    if( is_home() ) {
    ?>
    <script>
    	jQuery(".subtext img.alternate").attr("src", "https://url_to_your_site/wp-content/uploads/3times.png");
    </script>
    <?php
    }
    }
    add_action('wp_footer', 'custom_logo_home');

    to have it bigger it will be nice to see it live to give the right css rules to you .
    Espacialy there have to be some overflow:visible settings.
    You can see a testingpage (not home but a page on my server) : https://webers-testseite.de/elegant/different-logo-on-transparent-case/

    the img.alternate is the logo which is shown if transparency header is seen.
    But i don’t know if there is such a class (img.alternate) if you haven’t put in something to the enfold options dialog of transparency header.
    So please do an alternative logo to that field even if you don’t have any other transparent page)

    • This reply was modified 7 years, 7 months ago by Guenni007.
    in reply to: Custom size logo gets cut off with shrinking header #874808

    your logo seems to have too much transparency room arround – these dimensions you don’t see on a background – but are taken into account on logo dimensions.
    Open your logo in a graphic programm and cut of the unnecessary transparency room ( allthough there is no white – it is called whitespace)

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

    so – the one thing which i dislike of this fast solution – is that it will have the link option of the logo.
    and see here it works ( just the subfolder is visible because it is my testpage in a subfolder) https://webers-testseite.de/elegant/

    try this instead:
    you will now have no pointerevent on that title of the page

    but it will be best to see your life link to give any advice !

    
    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= "<a class='page-title' href= '#'>";
      $sub .= "<span class='the-title'>";
      $sub .= $page_slug = trim( $_SERVER["REQUEST_URI"] , '/' );
      $sub .= "</span>";
      $sub .= "</a>";
      return $sub;
    }
    .responsive .logo img {
        height: auto !important;
        width: auto;
        max-width: 100%;
        max-height: 80px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .responsive .logo a { display: block !important; }
    #top .logo {overflow: visible; width: 100%}
    .responsive #top .logo a:first-child { float: left; height: 100% !important}
    .responsive #top .logo a.page-title {
        float: left;
        position: relative;
        pointer-events: none;
        padding-left: 2%;
        font-size: 1.5em
    }
    
    @media only screen and (max-width: 767px) {
    .responsive #top .logo a:first-child { height: 80px !important}
    .responsive #top .logo a.page-title {
        padding-left: 4%;
        font-size: 0.9em
    }
    }
    • This reply was modified 7 years, 7 months ago by Guenni007.
    in reply to: Display page name in header area to right of logo #874631

    this goes to your functions.php of your child theme:
    you can decide if it is h1 or something else

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= "<h1 class='logo-title'>";
      $sub .= $page_slug = trim( $_SERVER["REQUEST_URI"] , '/' );
      $sub .= "</h1>";
      return $sub;
    }

    and now it depends on your logo and header size which css will be in quick css:

    .logo img{float: left}
    #top .logo, #top .logo a {overflow: visible }
    #top .subtext {    float: left;
        position: relative;
        top: 50px;
        left: 60px;
    }
    in reply to: Display page name in header area to right of logo #874623

    the concerning layout for the header is “logo left – menu below”
    but you like to have the active Page / Post as Text in the header to be seen. This is something which is not implemented in Enfold.
    Kind of breadcrump but only the title is seen in big bold letters in the header.

    There must be a possibility to get it. I’ll stick to the topic – and try to fiind a solution. – Maybe a mod has some idea to obtain that.

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

    kleines Beispiel wo soetwas sehr hilfreich ist. Solltest du ein sehr ausgiebig gestalltetes Menu haben, welches eine gewisse Breite überschreitet, kann es passieren, dass der Punkt wo das mobile Menu tätig wird zu spät einsetzt. Heißt, das Menu überlappt ( bei Logo links – Menu rechts ) das Logo. Wie ist sowas zu beheben.
    In der Online Dokumentation gibt es sogenannte Snippets : da wäre es also hilfreich das Mobile Menu in Abhängigkeit von der Browserbreite früher in Aktion treten zu lassen.

    https://kriesi.at/documentation/enfold/switching-to-mobile-menu-on-higher-resolutions/

    dieser Code ist dann in die functions.php des Child-Themes einzutragen, und damit man nicht immer mit ftp arbeiten muss, erreicht man diese und die Möglichkeit dort Einträge zu platzieren über das Dashboard – Design – Editor
    da wählt man dann links die Datei an, die man verändern möchte. Anfangs werden dort die beiden Files functions.php und style.css gelistet.
    Eventuell kommen welche hinzu. ZB eine header.php – falls man was am Aufbau des Headers verändern möchte (im verhältnis zum Eltern Thema)

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

    Wie Kinder halt so manchmal sind: sie greifen einem tief in die Tasche ohne eigentlich selbst etwas beizusteuern. Ihren eigenen Willen wissen Sie aber allzuhäufig durchzusetzen.
    Und trotzdem lieben wir sie – weil Sie einem Freude bereiten.

    As children sometimes are: they reach deep into your pocket without actually contributing anything.
    But they know how to enforce their goals.
    And yet we love them – because they give you pleasure.

    :lol:

    in reply to: Two different logos and favicons #874294

    so try this in your functions.php of your child-theme:

    add_filter('avf_logo','av_change_logo_url');
    function av_change_logo_url($url)
    {
        if( is_single('4665') )
        {
            $url = "http://nowguide.no/wp-content/uploads/NorjobsideV2M-White.png";
        }
        return $url; 
    }
    
    add_action('wp_head', 'ava_add_iconnns');
    function ava_add_iconnns() {
    if( is_single(4665) ) {
    ?>
    	<link rel="shortcut icon" type="image/x-icon" href="http://nowguide.no/wp-content/uploads/cropped-NorjobFaviconM-White.png">
    <?php
    }
    if( !is_single(4665) ) {
    ?>
    	<link rel="shortcut icon" type="image/x-icon" href="http://nowguide.no/wp-content/uploads/NG-Favicon.png">
    <?php
    }
    }

    and do not enter on enfold options on favicon something. Let the option free

    by the way

    you don’t need to generate the image or the button in the code element.

    Place the code maybe on the bottom of your layout – the mfp-hide makes it invisible.
    than create your alb element (Button or Image) in your layout – Link Target is manuall and the popup-ID
    custom-class has to be popup !

    so in the code-element is only:

    <div id="popup-target5" class="white-popup mfp-hide">
     - Your popup content - could be avia shortcode
    </div>
    • This reply was modified 7 years, 7 months ago by Guenni007.

    than you will have no chance but set up a layer on the bottom of all with the “new” background image .
    than duplicate this slide – because advanced layerslider could not loop a single slide. – and set transition between the both slides the same as between inside one slide ( cross-fading – same timing)

    PS i believe that Revolution Slide has this on default

    if you press that button it will be a 1:1 copy – or not ?

    click to enlarge:

Viewing 30 posts - 8,911 through 8,940 (of 11,475 total)