Forum Replies Created

Viewing 30 posts - 9,661 through 9,690 (of 11,835 total)
  • Author
    Posts
  • in reply to: Button with link to next slide in Layerslide WP #851956

    By the way – the new layerslider got this options tab (link and attributes) – on linking input fields there is a flyout when clicking to that field !
    And here you can choose “switch to next slide”. (previous too).
    so create a button layer and input that linking.

    click to enlarge:

    in reply to: Logo in header looks blurry #851884

    do you have your new logo in a vectorbased way (Illustrator, eps,). – or find the correct name of the new logo font with round dots – i will recreate your logo. Recreating via those tiny screenshots is nearly impossible.
    The segoe font does not fit totaly because the dots are not perfect circles on bold font-weight.

    in reply to: Logo in header looks blurry #851880

    by the way – in the new logo the font couldn’t be Switzerland! – Switzerland has like Frutiger too those i dots and dots itself and and “square dots”
    in your new logo they are circles. etc (look at the t or the s – totaly different.

    So what Victoria means is that you had to create a png with less space surrounding:

    (gray in this case stands here for the transparency)
    not this way:

    but this way:

    in reply to: Adding another image next to logo #851688

    or you misuse the method to add text to the logo and add the following to your functions.php of your child-theme:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= " <a href= 'the link target url'> <img class='anything'  title='anything'   src='link to your image'    alt='anything you like' /></a>  ";
      return $sub;
    }

    add this to quick css :

    .logo a {
        float: left;
    }

    but pay attention with single and double quotation marks ! – and if you like to open the link of that second logo on a blank page :

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= " <a href= 'the link target url'  target='_blank' > <img class='anything'  title='anything'   src='link to your image'    alt='anything you like' /></a>  ";
      return $sub;
    }

    the benefit is – that even shrinking is possible – because it is in the logo container and makes everything the normal logo does.

    see here https://webers-testseite.de/

    for small screens you can make some media queries on how to handle the thing – maybe you go to display: none or something else

    in reply to: Info on Flaticons #850971

    you want to use svgs in wordpress ! The tip above is a bit different. It shows you the way to use these flaticons as font-icon set !

    Anyway – wordpress does not support on default the usage of svgs (something i do not understand)
    If you like to be able to upload an svg you can use some code in functions.php of your child-theme – or use that brilliant plugin “svg support”

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

    function custom_mtypes( $m ){
        $m['svg'] = 'image/svg+xml';
        $m['svgz'] = 'image/svg+xml';
        return $m;
    }
    add_filter( 'upload_mimes', 'custom_mtypes' );
    in reply to: Split color sections vertically 50/50 with full width images #850374

    the Grid-Row itself got a height option – but not to loose the empty 1/2 (and your background-image you can insert a whitespace separator with a given height

    see: https://webers-testseite.de/kingfilly/

    in reply to: Split color sections vertically 50/50 with full width images #850094

    why don’t you take the grid-row with 1/2 / 1/2
    The grid-row element got this 100% width as the color-section too – and the same possibility to have a background-image.

    in reply to: Add subtext to logo #849528

    Nicht dafür –
    i removed all images of your blog from mine

    in reply to: Add subtext to logo #849289

    if you get it – i will restore my old solution

    if you don’t like the solution with blog info name and description you can use a bit shorter code than in your screenshot 4/7

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= "<span class='logo-title'>first line</span>";
      $sub .= "<span class='logo-title logo-subtitle'>Another custom text line</span>";
      return $sub;
    }
    in reply to: Add subtext to logo #849285

    see my solution : https://webers-testseite.de/

    – but with your Text “Zen Meditation” as logo-title and the other is the logo-subtitle.

    There are a lot of possibilities to not have the overlapping.
    but as i said without a real page only with screenshots it is not possible. this is my code :

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= "<span class='logo-title'>";
      $sub .= get_bloginfo( 'name', 'display' );
      $sub .= "</span>";
      $sub .= "<span class='logo-title logo-subtitle'>";
      $sub .= get_bloginfo( 'description', 'display' );
      $sub .= "</span>";
      return $sub;
    }

    so you only have to input via customizer the WordPress site name and the wordpress sloagan. These are then the headings

    css for quick.css ( in case the logo is at 120px height):

    .logo img{float: left}
    #top .logo, #top .logo a {overflow: visible }
    #top .subtext {float: left; position: relative}
    
    #top .logo-title {
    transition: opacity 0.4s ease-out 0s;
    -moz-transition: opacity 0.4s ease-out;
    -webkit-transition: opacity 0.4s ease-out;
    -o-transition: opacity 0.4s ease-out;
        color: #306066;
        font-size: 40px;
        font-family: "Caveat" !important;
        font-weight: bold !important;
        left: 7px;
        opacity: 1;
        position: absolute;
        top: -12px;
        white-space: nowrap;
    }
    
    #top .logo-subtitle {
        color: #888 !important;
        font-family: "Caveat" !important;
        font-size: 24px !important;
        left: 10px;
        top: 18px !important;
        font-weight: normal;
    }
    
    /** get rid of that if you don't like to get rid of logo headings by scrolling - Kriesi Solution  */
    #top .header-scrolled .logo-title {opacity: 0; filter: alpha(opacity=0)}

    and to get rid of text on very small screens:

    @media only screen and (max-width: 520px){
    #top .logo-title {opacity: 0; filter: alpha(opacity=0)}
    }
    in reply to: Add subtext to logo #849077

    ohne die Seite selbst zu sehen – fast unmöglich einen Vorschlag zu machen. Wenn du lieber auf einen Mod wartest – auch ok.

    Kriesi oben hat eher meinen Code genutzt, dort sind zwei Zeilen eingefügt worden (logo-title und logo-subtitel) – deshalb meine Frage – dein logo ist Symbol + Zen Mediation als Bild und dann “Company Name” hinzugefügt ?

    in reply to: Add subtext to logo #849028

    Um die Menu-Schrift zu beeinflussen ( du kannst ja auch das padding was verändern) :

    hier mit einem sogenannten Media Query bei einer Screenweite zwischen 768 und 990 :
    btw. ich schreibe diese Media-Queries meist ans Ende meiner Quick css

    @media only screen and (min-width: 768px) and (max-width: 989px){
    .av-main-nav > li > a {
        font-size: 12px;
        font-weight: 400;
        padding: 0 10px
        }
    }
    in reply to: Add subtext to logo #849024

    Anhand der bilder sehe ich, dass wir uns auch gerne deutsch unterhalten können.
    Verstehe ich das richtig, dass du als Bildmarke (Logo) jetzt das Symbol und den Schriftzug Zen Mediation hochgeladen hast?
    Und via functions.php dann Company Name als Zusatz lädst?

    Warum machst du es nicht so wie hier an Board mit dem Kriesi K. siehe oben – scroll mal ( das Verschwinden der Schriften muss nicht sein – ist aber auch elegant.

    Ich mache das in dem Fall immer über den WordPress Titel und die WordPress Beschreibung:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= "<span class='logo-title'>";
      $sub .= get_bloginfo( 'name', 'display' );
      $sub .= "</span>";
      $sub .= "<span class='logo-title logo-subtitle'>";
      $sub .= get_bloginfo( 'description', 'display' );
      $sub .= "</span>";
      return $sub;
    }

    zu dem Überlappungsproblem kannst du dich entscheiden:
    Das Menu einstellen, dass es am richtigen Punkt überspringt. Heißt : messen wann es nötig ist und den Sprungpunkt danach einstellen.
    Lösung wie oben – die Schriften langsam verschwinden zu lassen ( beim Scrollen – bei shrinking header) und bei kleineren Bildschirmen.

    in reply to: Logo in header looks blurry #848512

    this logo is formerly crying for a svg usage.
    The font seems to be something like segoe bold (frutiger with i dots : lol )
    And that little Dot in Front is very simple to construct on f.e. Illustrator.

    By the way what is the font name

    but by the way – the unsharpness is not caused by less sharpness of the png or jpg – it is a question of screen-abilities. If you are looking to it on my screen 2560×1440 (27′ Mac Screen) or on a retina (ipads etc) your logo on small case isn’t so bad.
    Even a svg (by definition sharp) is on that minified Version not sharp on the screen – the resolution does not fit that.

    have a look to : https://webers-testseite.de/wp-content/uploads/stillAds.svg
    and shrink your browser window. A minimum height of 50px seem to be ok.

    in reply to: (Yet another) Menu issues after 4.1.2 update #848423

    Point 1 ) i do not see both menu and burger menu icon.
    but i see you got a cart sign there too so the rule:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu { 
    right: 30px !important } 
    }
    

    seems to be a good advice for you even inbetween 768px and 990px – because otherwise the car symbol will overlay the burger icon

    Point 2) i can not confirm your fault on my end here: OSX Safari

    Point 4) is correct on newest Version of enfold. Therefore or some additional maintab (such as menu) on the left

    in reply to: Add subtext to logo #848421

    one thing among others is that you have to set the overflow visible rule for logo – because otherwise it may be in the correct position but it is not seen:

    #top .logo, #top .logo a {
        overflow: visible;
    }

    the rest is positioning of the subtext. So it might be good to have the real sitze of you to give you an advice

    in reply to: shrinking header and screenwidth low … #847553

    hm – can be closed – today this effect isn’t seen anymore. Strange – thanks

    in reply to: shrinking header and screenwidth low … #847355

    ok i can change on that case to have hamburger menu only active for smartphones.
    And i will do that for this site – but in general i let it now for you to see the bad behavior of header – to see the problem

    in reply to: WPML and Anchor links in menu #846861

    habe das jetzt mit dem webers-testseite.de durchgeführt – auch da ( liegt also nicht daran, dass die andere url im unterverzeichnis ist) – klapt es nicht.

    in reply to: WPML and Anchor links in menu #846824

    Wie gesagt – mit der älteren Lösung könnte ich wohl eher leben und blende dann im Menu die Unterstriche aus.

    Oder glaubst Du es ist jetzt noch das Problem, weil ich in einem Unterverzeichnis arbeite. ?

    ich installiere mal auf webers-testseite.de wpml und schaue mir das Verhalten da an.

    • This reply was modified 8 years, 3 months ago by Guenni007.
    in reply to: WPML and Anchor links in menu #846821

    PS : was mich wundert ist, dass es bei dem anderen Link ja alles funktioniert. wo hat also eine Veränderung stattgefunden.
    Da ich es mit der exact gleichen Version auch bei Pragma probierte kann es nicht an dem Plugin Ordner liegen.

    Ich werde mal testweise den config-wpml der älteren Installation rüberkopieren.

    in reply to: WPML and Anchor links in menu #846820

    Edit:
    Die erste lösung fand ich akzeptabler.
    Geh noch mal bitte auf den link zu Pragma.

    wenn ich von der default Sprache ausgehend zB Leistungen drücke – navigiert der zum anker (und wird auch im Menu als activ angezeigt)
    drücke ich nun die englische Fahne springt der zum entsprechenden englischen Anker korrekt um (lediglich mit der kleinen Verschiebung)
    zurück zu der deutschen Fahne allerdings nicht mehr – sondern geht zur top marke.

    bei der anderen Lösung funktionierte bis auf den kleinen Versatz und die current Position der menu Strichlein alles korrekt – hin und her springen in den Sprachen wurden immer die analogen Sprungpunkte angezeigt.

    in reply to: WPML and Anchor links in menu #846797

    bitte mach dir nicht zu viel Arbeit. Das geht schon weit über das hinaus was Ihr leisten solltet. Nur ist es für mich nicht nachzuvollziehen , warum wenn der Anker erreicht wurde und ich hin und her wechsele die Einsprungstelle korrekt bleibt, aber wenn ich im Menu den Anker annavigieren will dieser nicht erreicht wird (und somit die active marke nicht auf dem Menupunkt gesetzt wird.
    Ich vermute das beim Scroll down nicht die “ist-header-höhe” mit berücksichtigt wird. Scrolle ich um die Header höhe (also die des geshrinkten Headers) runter – springt die Marke. Das heißt diese Höhe müsste dem Scrollbetrag noch dazugerechnet werden.

    Danke

    • This reply was modified 8 years, 3 months ago by Guenni007.
    in reply to: Slow site – Manual update help #846268

    Might be a problem with understanding :

    The default installation folder of enfold is: enfold
    Do you like to update by uploading to a new folder called EnfoldNew ?
    On manual update you completely replace the enfold folder by the new one.

    in reply to: How to centre text in Socket #846264

    concerning to: https://kriesi.at/support/topic/how-to-centre-text-in-socket/#post-845728

    on css optimizers often the last semicolon is erased. it is not necessary.
    So code could be:

    #socket .container {
        text-align: center
    }
    #socket .copyright {
        float: none !important
    }

    because there was no attribut list for each rule – if so the semicolons are necessary – except the last !

    • This reply was modified 8 years, 3 months ago by Guenni007.
    in reply to: Can't toggle color section #845708

    and by the way you can replace the text inside your button on click:

    In my case on the testpage it is “contact me” to replace

    function add_custom_toggler(){
    ?>
    <script>
    jQuery(window).load(function () {
      jQuery("#toggle-color-section").addClass("notseen");
      jQuery(".avia-button-wrap.color-section-toggler").click(function () {
       jQuery("#toggle-color-section").toggleClass("notseen");
    
       jQuery(".avia-button-wrap.color-section-toggler span.avia_iconbox_title").text(function(i, v){
               return v === "contact me" ? "thanks for your interest" : "contact me"
       })	  
      });
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_toggler');

    etc. pp

    in reply to: Can't toggle color section #845365

    so i played a bit with the code:

    as target for the buttons use: #toggle-color-section
    and the class goes to buttons is: color-section-toggler

    use this code instead (has the opportunity that the color-section is there but with height = 0px )

    function add_custom_toggler(){
    ?>
    <script>
    jQuery(window).load(function () {
      jQuery("#toggle-color-section").addClass("notseen");
      jQuery(".avia-button-wrap.color-section-toggler").click(function () {
       jQuery("#toggle-color-section").toggleClass("notseen");	  
      });
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_toggler');

    and do this to quick css:

    .notseen {
        height: 0 !important;
        min-height: 0 !important;
    }

    see here: https://webers-testseite.de/colorsection-toggle/

    allthough i believe that the hide function should work too- but i guess the link to the anchor has no target on click. Because the color-section is on display: none.
    here the color-section is allways there (even for seo) but it is not visible

    • This reply was modified 8 years, 3 months ago by Guenni007.
    in reply to: Can't toggle color section #845333

    it seem to be a matter of full-width button but i can not see why – the thing is reproducable on my example site !

    in reply to: Can't toggle color section #845329

    does the other page with the toggler exists too?
    try to delete this page or remove the ID from that color section to prove if it is a double ID conflict.

    in reply to: Can't toggle color section #845324

    i changed it above try only #toggle-color-section as target of your button

Viewing 30 posts - 9,661 through 9,690 (of 11,835 total)