diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-02-12 19:10:18 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-02-12 19:10:18 +0100 |
commit | 6feaabf088cce4e898bc89afb25f1461e0c11d6b (patch) | |
tree | d332d59df82ef4c856d93843ef6f05d5dfb5106e | |
parent | b47d91127c4e03c85a68578f8cf3bda38b9d1498 (diff) | |
download | mutti-web-6feaabf088cce4e898bc89afb25f1461e0c11d6b.tar.gz mutti-web-6feaabf088cce4e898bc89afb25f1461e0c11d6b.tar.bz2 mutti-web-6feaabf088cce4e898bc89afb25f1461e0c11d6b.zip |
layout: Remove unneeded div for redboxes
Let the a-tag be it directly
-rw-r--r-- | style/style.css | 10 | ||||
-rw-r--r-- | xsl/layout.xsl | 22 |
2 files changed, 12 insertions, 20 deletions
diff --git a/style/style.css b/style/style.css index aae27ac..31b278b 100644 --- a/style/style.css +++ b/style/style.css @@ -285,17 +285,13 @@ label { /* side-bar classes */ -.redbox { +.redbox, a.redbox:hover { + display: block; + text-decoration: none; width: 170px; padding: 5px; margin-top: 5px; background: #983D3A; border: 2px #C02020 solid; - color: #FFFFFF; -} - -.redbox a { - display: block; - text-decoration: none; color: white; } diff --git a/xsl/layout.xsl b/xsl/layout.xsl index bf1a183..7db7d55 100644 --- a/xsl/layout.xsl +++ b/xsl/layout.xsl @@ -48,14 +48,11 @@ E-Mail: <a href="mailto:franzke.buetzow@t-online.de">franzke.buetzow@t-online.de</a> <hr style="margin-top: 3px"/> <br/> - <div class="redbox"> - <a href="contact{$suffix}"> - <strong>Kostenlose Analyse Ihrer Gründungsidee.</strong> - <br/> - Die Kostenlose Analyse schafft Klarheit darüber, welches Umsatzpotential Ihre Idee bietet. - </a> - </div> - + <a href="contact{$suffix}" class="redbox"> + <strong>Kostenlose Analyse Ihrer Gründungsidee.</strong> + <br/> + Die Kostenlose Analyse schafft Klarheit darüber, welches Umsatzpotential Ihre Idee bietet. + </a> <a style="margin-left: -5px" href="http://www.idz-zertifikat.de/voraussetzung-fachberater-existenzgruender"> <img src="idz-siegel.jpg" @@ -68,11 +65,10 @@ href="http://www.fuer-gruender.de/beratung/dienstleister-finden/firma/beratung-controlling/"> <img src="fuer-gruender.de-siegel.png" alt="Für-Gründer.de" /> </a> - <div class="redbox" style="text-align: center; font-size: 14px"> - <a href="https://beraterboerse.kfw.de/index.php?ac=consultant_projects&id=100021"> - Referenzen - </a> - </div> + <a class="redbox" style="text-align: center; font-size: 14px" + href="https://beraterboerse.kfw.de/index.php?ac=consultant_projects&id=100021"> + Referenzen + </a> </div> <div style="position:relative"> <xsl:apply-templates mode="html" /> |