Hey guys,
another question.. How to move text “mein konto”, “newsletter” and “kontakt” a bit higher? Also I want to add a seperator after each text Icon Mein Konto | Icon Newsletter | Icon Kontakt
https://www.dropbox.com/s/5zk0uy5pejmchr7/s1.PNG?dl=0
Hey combra!
Add this to your custom CSS.
.vorteil2 > a {
top: -5px;
position: relative;
border-right: 1px solid black;
padding-right: 5px;
}
Best regards,
Elliott
Hey that worked. Can you tell me how this works for .vorteil1? Just want to move up the text a bit. After this can we can close this one :)
Hi!
Please add following code to Quick CSS as well
.vorteil1 > a {
top: -5px;
position: relative;
}
Best regards,
Yigit
This cant work, vorteil1 arent a elements. its just text.
Hey!
In that case please change the code to following one
.vorteil1 {
top: -5px;
position: relative;
}
Best regards,
Yigit
Hmm, but this only move up the complete sector vorteil1. I just want to move up the text, icons should stay :) I think i will need to add 3 spans fot the text and a class for the icons into the big spawn?
Hi!
Please adjust their position using following one
span.vorteil1 img {
top: 5px;
position: relative;
}
span.vorteil1 {
position: relative;
top: -20px;
}
First one for the icons second one for the text
Best regards,
Yigit
Well done, thanks you.