Ich habe im Footer die Links Impressum, etc, eingebaut.
Leider sind diese icons nach unten gerutscht. Ich muss also irgendwo den Abstand ändern, weiss nur nicht wo genau, hab schon im css alles ausprobiert. Kann einer helfen???
VG
css
HTML
/*-----------------------------------------------------------------------------------*/
/* = Footer
/*-----------------------------------------------------------------------------------*/
#footer-wrap{
width: 100%;
background: #333;
margin-top: 30px;
font-size: 13px;
border-top: 4px solid #ddd;
}
#footer{
width: 920px;
margin: 0 auto;
-webkit-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
color: #7f7f7f;
}
#footer a{
color: #999;
text-decoration: none;
}
#footer a:hover{
color: #1f82cb;
}
/*footer widgets*/
#footer-widget-wrap{
}
#footer-left,
#footer-middle,
#footer-right{
float: left;
width: 280px;
margin-top: 30px;
}
#footer-right{
}
#footer-middle{
margin-left: 40px;
margin-right: 40px;
}
#footer-right{
}
.footer-widget{
color: #7f7f7f;
margin-bottom: 30px;
}
.footer-widget h4{
color: #fff;
font-size: 16px;
margin: 0 0 20px;
}
.footer-widget li{
padding: 10px 0;
border-bottom: 1px solid #444;
}
.footer-widget ul li:first-child{
border-top: 1px solid #444;
}
.footer-widget li:first-child{
border-top: 1px solid #333;
}
/*flickr widget footer*/
#footer .gopress-flickr-widget li{
border: 0px;
padding: 0px;
}
#footer .gopress-flickr-widget{
margin-right: -4px;
}
#footer .gopress-flickr-widget a{
float: left;
width: 57px;
height: 57px;
margin-right: 4px;
margin-bottom: 4px;
border: 5px solid #222;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
#footer .gopress-flickr-widget a:hover{
border-color: #1f82cb;
}
#footer .gopress-flickr-widget img{
display: block;
width: 57px;
height: 57px;
}
#copyright{
font-size: 12px;
color: #666;
margin-top: 15px;
padding-top: 15px;
border-top: double #ddd;
}
#designby{
text-align: right;
}
Alles anzeigen