Kontakt/Service Infobox am Seitenrand

Hey Community,

ich suche eine Möglichkeit eine Kontaktbox am Bildshirmrand zu platzieren.

Ähnlich wie bei diesem Shop: billi.de

Habe bislang nur ein einziges Plugin gefunden welches das wahrscheinlich erledigen würde:

Kann mir jemand sagen ob es vielleicht direkt eine Funktion is SW5 gibt? Oder kann jemand weitere Plugins empfehlen?

Vielen Dank vorab & beste Grüße

sleezy

push ¯_(ツ)_/¯ 

Wie schauts mit HTML/CSS Kenntnissen aus?

1 „Gefällt mir“

Simple und einfach mit HTML und CSS:

    Marmot Quick SlideIn Banner
    
    
    
    
    


    #slidein {
        -moz-border-radius: 0 5px 5px 0;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        -webkit-border-radius: 0 5px 5px 0;
        -webkit-transition-duration: 0.3s;
        background: #189eff;
        border-radius: 0 5px 5px 0;
        left: 0;
        padding: 12px 0;
        position: fixed;
        text-align: center;
        top: 40px;
        transition-duration: 0.3s;
        width: 35px;
    }

    #slidein_inner {
        -moz-border-radius: 0 0 5px 0;
        -moz-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        -webkit-border-radius: 0 0 5px 0;
        -webkit-transition-duration: 0.3s;
        background: #189eff;
        border-radius: 0 0 5px 0;
        height: auto;
        left: -250px;
        padding: 25px;
        position: fixed;
        text-align: left;
        top: 40px;
        transition-duration: 0.3s;
        width: 200px;
    }

    #slidein:hover {
        left: 250px;
    }

    #slidein>i {
        color: white;
    }

    .info {
        color: white;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        line-height: 28px;
        margin-top: 20px;

    }

    #slidein:hover #slidein_inner {
        left: 0;
    }



    
    
        
        
            
               
                Kontaktieren Sie uns jetzt!
                Tel.: 01234-55-66-777

 

1 „Gefällt mir“

@SB schrieb:

„push“ ¯_(ツ)_/¯  nach ein paar tagen in einem kostenlosem forum mit geben und nehmen geht gar nicht - von daher -> https://developers.shopware.com/

und der nächste auf meiner blacklist für aktive hilfe - lol

gut dass du deine zeit in dem forum sinnvoll nutzt! ich bin sicher du bist ein echter genie und anderen eine große hilfe- lol

 

danke @Murmeltier für die antwort - werde die vorlage direkt testen.