Hallo Forum,
Ich habe letztens zwei Social Media Icons in ein Projekt eingefügt. Diese sind auf dem Desktop perfekt responsive, jedoch auf kleineren Bildschirmen nicht wirklich. Sie sollen rechts unten neben die Buttons aber egal was ich versuche, sie setzen sich oben drüber. Jemand eine Idee?
Das ist der CSS Code: (Noch ein paar Testcommands drin)
#socialmedia{
position: absolute;
z-index: 9999;
bottom: 65px;
width: auto !important;
margin: auto;
display: flex;
text-align: right;
right: 100px;
}
@media only screen and
(min-device-width:768px) and
(max-device-width:1024px) {
#socialmedia{
max-width: 100%;
width: auto;
z-index: 9999;
bottom: 40px;
}
}
@media only screen and
(min-device-width:320px) and
(max-device-width:480px) {
#socialmedia{
position: absolute;
max-width: 100%;
height: auto;
width: auto;
align-text: right;
align-text: bottom;
float: right;
z-index: 99;
}
}