Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #518688

    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

    • This topic was modified 8 years, 5 months ago by combra.
    #518835

    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

    #519061

    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 :)

    #519138

    Hi!

    Please add following code to Quick CSS as well

    
    .vorteil1 > a {
        top: -5px;
        position: relative;
    }

    Best regards,
    Yigit

    #519153

    This cant work, vorteil1 arent a elements. its just text.

    #519166

    Hey!

    In that case please change the code to following one

    .vorteil1 {
        top: -5px;
        position: relative;
    }

    Best regards,
    Yigit

    #519198

    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?

    #519201

    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

    #519251

    Well done, thanks you.

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘top bar styling – move text to the middle of line’ is closed to new replies.