Neuigkeiten
  • Die modified eCommerce Shopsoftware ist kostenlos, aber nicht umsonst.
    Spenden
  • Damit wir die modified eCommerce Shopsoftware auch zukünftig kostenlos anbieten können:
    Spenden
  • Thema: ANLEITUNG: Content Boxen im Footer

    alien

    • Mitglied
    • Beiträge: 179
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #45 am: 21. März 2012, 21:05:32
    Oh, Denkfehler :)

    Aber auch dort kann ich keinen solchen Befehl finden.... :/

    Code: PHP  [Auswählen]
    {config_load file="$language/lang_$language.conf" section="index"}
    <div id="wrap">
      <div id="header">
            <div id="logo"><img src="{$tpl_path}img/spacer.gif" width="400" alt="{$store_name}" /></div>
            <div id="cart">{$box_CART}</div>
        </div>
        <div id="topmenuwrap">
            <ul id="topmenu">
                <li><a href="{$index}">{#link_index#}</a></li>
               <li><a href="{$cart}">{#link_cart#}</a></li>
               {if $account}
                <li><a href="{$account}">{#link_account#}</a></li>
               {/if}
                {if $smarty.session.customers_status.customers_status_id == '1'}
                <li><a href="{php}echo xtc_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL');{/php}">{#new_customer#}</a></li>
               {/if}
                <li><a href="{$checkout}">{#link_checkout#}</a></li>
               {if $smarty.session.customer_id}
                <li><a href="{$logoff}">{#link_logoff#}</a></li>
               {else}
                <li><a href="{$login}">{#link_login#}</a></li>
               {/if}
            </ul>
            <div id="languages">{$box_LANGUAGES}</div>
        </div>
        <div id="breadcrumb">{$navtrail}</div>
        <div id="contentwrap"> {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
           <div id="rightcol">{$box_CART}{$box_LOGIN}{$box_ADMIN}{$box_NEWSLETTER}{$box_BESTSELLERS}{$box_INFOBOX}{$box_CURRENCIES}{$box_MANUFACTURERS_INFO}{$box_MANUFACTURERS}</div>
        {/if} </div>
    <div class="abstand"></div>
    <div id="bottom">
      <div class="bottom-divs">
        <!-- Bottom Left -->
        <div id="bottom-left">
          {$box_CONTENT}
        </div>
        <!-- Bottom Mid -->
        <div id="bottom-mid">
          {$box_INFORMATION}
        </div>
        <!-- Bottom Right -->
        <div id="bottom-right">
          {$box_NEWSLETTER}
        </div>
      </div>
    </div>

                    {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
                            id="content"
                    {else}
                            id="contentfull"
                    {/if}
                     >
            {if strstr ($smarty.server.PHP_SELF, 'index')}
                {if $smarty.get.cPath==null and $smarty.get.manufacturers_id==''}
                     {if $BANNER}{$BANNER}{/if}
               {/if}
            {/if}
            {$main_content}</div>
        {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
        <div id="rightcol"></div>
        {/if} </div>
    <p class="footer">{$smarty.const.TITLE} &copy; {$smarty.now|date_format:"%Y"} | Template &copy; 2009 by modified eCommerce Shopsoftware eCommerce Shopsoftware</p>
    </div>

    gar85

    • Schreiberling
    • Beiträge: 347
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #46 am: 21. März 2012, 22:06:04
    du hast 2x rigthcol drin

    Code: PHP  [Auswählen]
     <div id="rightcol">{$box_CART}{$box_LOGIN}{$box_ADMIN}{$box_NEWSLETTER}{$box_BESTSELLERS}{$box_INFOBOX}{$box_CURRENCIES}{$box_MANUFACTURERS_INFO}{$box_MANUFACTURERS}</div>

    und direkt vor dem footer

    Code: PHP  [Auswählen]
    {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
        <div id="rightcol"></div>
        {/if} </div>

    das könnte dir das Layout zerstören.

    alien

    • Mitglied
    • Beiträge: 179
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #47 am: 23. März 2012, 00:10:31
    Hallo,

    vielen Dank für deine Antwort :)
    Was kann ich denn da machen? Ich kann ja schlecht einfach eins löschen, oder?^^

    Danke. Alien

    twe

    • Schreiberling
    • Beiträge: 293
    • Geschlecht:
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #48 am: 23. März 2012, 06:40:49
    Den Code aus dem 2. Zitat von gar85  kannst du löschen.

    gar85

    • Schreiberling
    • Beiträge: 347
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #49 am: 23. März 2012, 08:04:20
    das erste rightcol ist im Standard leftcol

    Durch deine 2malige Anordnung verschiebst du den Hauptteil unter das 2. rigthcol und den footer unter das erste rightcol. Damit der footer funtioniert brauchst du die Anordnung

    Code: PHP  [Auswählen]
    <div id="leftcol">
    ...
    <div
                    {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
                            id="content"
                    {else}
                            id="contentfull"
                    {/if}
                     >
    {if strstr ($smarty.server.PHP_SELF, 'index')}
                {if $smarty.get.cPath==null and $smarty.get.manufacturers_id==''}
                     {if $BANNER}{$BANNER}{/if}
               {/if}
            {/if}
            {$main_content}</div>
        {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
        <div id="rightcol"></div>
        {/if} </div>
    ...
       <div id="rightcol"></div>

    ...

    <div id="bottom">
    <div class="bottom-divs">
        <!-- Bottom Left -->
        <div id="bottom-left">
          {$box_CONTENT}
        </div>
    ....

    <p class="footer">
     

    alien

    • Mitglied
    • Beiträge: 179
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #50 am: 23. März 2012, 18:38:32
    Hallo,

    Vielen Dank!
    Ich komme aber leider irgendwie nicht damit klar... könntest du es in meine Index so einsetzen/bearbeiten, dass ich nur noch das Ganze einfügen muss und hochladen kann?

    Wäre mir eine unglaubliche Hilfe!!

    Dankeschön, Alien :)

    Code: PHP  [Auswählen]
    {config_load file="$language/lang_$language.conf" section="index"}
    <div id="wrap">
      <div id="header">
            <div id="logo"><img src="{$tpl_path}img/spacer.gif" width="400" alt="{$store_name}" /></div>
            <div id="cart">{$box_CART}</div>
        </div>
        <div id="topmenuwrap">
            <ul id="topmenu">
                <li><a href="{$index}">{#link_index#}</a></li>
               <li><a href="{$cart}">{#link_cart#}</a></li>
               {if $account}
                <li><a href="{$account}">{#link_account#}</a></li>
               {/if}
                {if $smarty.session.customers_status.customers_status_id == '1'}
                <li><a href="{php}echo xtc_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL');{/php}">{#new_customer#}</a></li>
               {/if}
                <li><a href="{$checkout}">{#link_checkout#}</a></li>
               {if $smarty.session.customer_id}
                <li><a href="{$logoff}">{#link_logoff#}</a></li>
               {else}
                <li><a href="{$login}">{#link_login#}</a></li>
               {/if}
            </ul>
            <div id="languages">{$box_LANGUAGES}</div>
        </div>
        <div id="breadcrumb">{$navtrail}</div>
        <div id="contentwrap"> {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
           <div id="rightcol">{$box_CART}{$box_LOGIN}{$box_ADMIN}{$box_NEWSLETTER}{$box_BESTSELLERS}{$box_INFOBOX}{$box_CURRENCIES}{$box_MANUFACTURERS_INFO}{$box_MANUFACTURERS}</div>
        {/if} </div>
    <div class="abstand"></div>
    <div id="bottom">
      <div class="bottom-divs">
        <!-- Bottom Left -->
        <div id="bottom-left">
          {$box_CONTENT}
        </div>
        <!-- Bottom Mid -->
        <div id="bottom-mid">
          {$box_INFORMATION}
        </div>
        <!-- Bottom Right -->
        <div id="bottom-right">
          {$box_NEWSLETTER}
        </div>
      </div>
    </div>

                    {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
                            id="content"
                    {else}
                            id="contentfull"
                    {/if}
                     >
            {if strstr ($smarty.server.PHP_SELF, 'index')}
                {if $smarty.get.cPath==null and $smarty.get.manufacturers_id==''}
                     {if $BANNER}{$BANNER}{/if}
               {/if}
            {/if}
            {$main_content}</div>
        {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
        <div id="rightcol"></div>
        {/if} </div>
    <p class="footer">{$smarty.const.TITLE} &copy; {$smarty.now|date_format:"%Y"} | Template &copy; 2009 by modified eCommerce Shopsoftware eCommerce Shopsoftware</p>
    </div>

    gar85

    • Schreiberling
    • Beiträge: 347
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #51 am: 23. März 2012, 22:46:02
    ich hoffe, so passt es:

    Code: PHP  [Auswählen]
     {config_load file="$language/lang_$language.conf" section="index"}
        <div id="wrap">
          <div id="header">
                <div id="logo"><img src="{$tpl_path}img/spacer.gif" width="400" alt="{$store_name}" /></div>
                <div id="cart">{$box_CART}</div>
            </div>
            <div id="topmenuwrap">
                <ul id="topmenu">
                    <li><a href="{$index}">{#link_index#}</a></li>
                  <li><a href="{$cart}">{#link_cart#}</a></li>
                  {if $account}
                    <li><a href="{$account}">{#link_account#}</a></li>
                  {/if}
                    {if $smarty.session.customers_status.customers_status_id == '1'}
                    <li><a href="{php}echo xtc_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL');{/php}">{#new_customer#}</a></li>
                  {/if}
                    <li><a href="{$checkout}">{#link_checkout#}</a></li>
                  {if $smarty.session.customer_id}
                    <li><a href="{$logoff}">{#link_logoff#}</a></li>
                  {else}
                    <li><a href="{$login}">{#link_login#}</a></li>
                  {/if}
                </ul>
                <div id="languages">{$box_LANGUAGES}</div>
            </div>
            <div id="breadcrumb">{$navtrail}</div>
            <div id="contentwrap"> {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
               <div id="leftcol">{$box_CART}{$box_LOGIN}{$box_ADMIN}{$box_NEWSLETTER}{$box_BESTSELLERS}{$box_INFOBOX}{$box_CURRENCIES}{$box_MANUFACTURERS_INFO}{$box_MANUFACTURERS}</div>
            {/if} </div>
       
         
                        {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
                                id="content"
                        {else}
                                id="contentfull"
                        {/if}
                         >
                {if strstr ($smarty.server.PHP_SELF, 'index')}
                    {if $smarty.get.cPath==null and $smarty.get.manufacturers_id==''}
                         {if $BANNER}{$BANNER}{/if}
                   {/if}
                {/if}
                {$main_content}</div>
            {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
            <div id="rightcol"></div>
            {/if} </div>
                     <div class="abstand"></div>
        <div id="bottom">
          <div class="bottom-divs">
            <!-- Bottom Left -->
            <div id="bottom-left">
              {$box_CONTENT}
            </div>
            <!-- Bottom Mid -->
            <div id="bottom-mid">
              {$box_INFORMATION}
            </div>
            <!-- Bottom Right -->
            <div id="bottom-right">
              {$box_NEWSLETTER}
            </div>
          </div>
        </div>
        <p class="footer">{$smarty.const.TITLE} &copy; {$smarty.now|date_format:"%Y"} | Template &copy; 2009 by modified eCommerce Shopsoftware eCommerce Shopsoftware</p>
        </div>

    alien

    • Mitglied
    • Beiträge: 179
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #52 am: 24. März 2012, 11:16:30
    Hallo,

    Danke, die Tendenz ist schon mal richtig, jetzt wird der Slider und auch die Produkte wieder oben ongezeigt und nicht unter dem Footer.
    Aber leider überlagern sie jetzt die Sidebar (Siehe: http://bit.ly/yGdHE4).
    Und auch unterhalb des Footers befindet sich sehr viel freier Platz bis zum Copyright :/

    Vielleichtt lag es an meiner Version der Index.html, ich hatte sie ja bereits bearbeitet bei meinen Bemühungen den neuen Footer einzubauen.
    Ich habe aber natürlich  vorher eine unveränderte Version gespeichert. Ich habe sie mal unten eingefügt und würde mich freuen wenn du es noch einmal versuchen würdest.

    Code: PHP  [Auswählen]
    {config_load file="$language/lang_$language.conf" section="index"}
    <div id="wrap">
      <div id="header">
            <div id="logo"><img src="{$tpl_path}img/spacer.gif" width="400" alt="{$store_name}" /></div>
            <div id="cart">{$box_CART}</div>
        </div>
        <div id="topmenuwrap">
            <ul id="topmenu">
                <li><a href="{$index}">{#link_index#}</a></li>
               <li><a href="{$cart}">{#link_cart#}</a></li>
               {if $account}
                <li><a href="{$account}">{#link_account#}</a></li>
               {/if}
                {if $smarty.session.customers_status.customers_status_id == '1'}
                <li><a href="{php}echo xtc_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL');{/php}">{#new_customer#}</a></li>
               {/if}
                <li><a href="{$checkout}">{#link_checkout#}</a></li>
               {if $smarty.session.customer_id}
                <li><a href="{$logoff}">{#link_logoff#}</a></li>
               {else}
                <li><a href="{$login}">{#link_login#}</a></li>
               {/if}
            </ul>
            <div id="languages">{$box_LANGUAGES}</div>
        </div>
        <div id="breadcrumb">{$navtrail}</div>
        <div id="contentwrap"> {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
            <div id="leftcol">{*$box_CART*}{$box_CATEGORIES}{$box_LOGIN}{$box_ADMIN}{$box_SHOP_BEWERTUNG}{$box_NEWSLETTER}{$box_BESTSELLERS}{$box_SPECIALS}{$box_WHATSNEW}{$box_CURRENCIES}{$box_CONTENT}{$box_LAST_VIEWED}{$box_REVIEWS}</div>
            {/if}
            <div
                    {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
                            id="content"
                    {else}
                            id="contentfull"
                    {/if}
                     >
            {if strstr ($smarty.server.PHP_SELF, 'index')}
                {if $smarty.get.cPath==null and $smarty.get.manufacturers_id==''}
                     {if $BANNER}{$BANNER}{/if}
               {/if}
            {/if}
            {$main_content}</div>
        {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
        <div id="rightcol"></div>
        {/if} </div>
    <p class="footer">{$smarty.const.TITLE} &copy; {$smarty.now|date_format:"%Y"} | Template &copy; 2009 by modified eCommerce Shopsoftware eCommerce Shopsoftware</p>
    </div>

    Vielen Dank für deine Bemühungen!
    Gruß,Alien

    gar85

    • Schreiberling
    • Beiträge: 347
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #53 am: 24. März 2012, 11:20:38
    Ich hoffe, Dein Wochenende ist jetzt gerettet.  :-)

    Code: PHP  [Auswählen]
     {config_load file="$language/lang_$language.conf" section="index"}
        <div id="wrap">
          <div id="header">
                <div id="logo"><img src="{$tpl_path}img/spacer.gif" width="400" alt="{$store_name}" /></div>
                <div id="cart">{$box_CART}</div>
            </div>
            <div id="topmenuwrap">
                <ul id="topmenu">
                    <li><a href="{$index}">{#link_index#}</a></li>
                  <li><a href="{$cart}">{#link_cart#}</a></li>
                  {if $account}
                    <li><a href="{$account}">{#link_account#}</a></li>
                  {/if}
                    {if $smarty.session.customers_status.customers_status_id == '1'}
                    <li><a href="{php}echo xtc_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL');{/php}">{#new_customer#}</a></li>
                  {/if}
                    <li><a href="{$checkout}">{#link_checkout#}</a></li>
                  {if $smarty.session.customer_id}
                    <li><a href="{$logoff}">{#link_logoff#}</a></li>
                  {else}
                    <li><a href="{$login}">{#link_login#}</a></li>
                  {/if}
                </ul>
                <div id="languages">{$box_LANGUAGES}</div>
            </div>
            <div id="breadcrumb">{$navtrail}</div>
            <div id="contentwrap"> {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
                <div id="leftcol">{*$box_CART*}{$box_CATEGORIES}{$box_LOGIN}{$box_ADMIN}{$box_SHOP_BEWERTUNG}{$box_NEWSLETTER}{$box_BESTSELLERS}{$box_SPECIALS}{$box_WHATSNEW}{$box_CURRENCIES}{$box_CONTENT}{$box_LAST_VIEWED}{$box_REVIEWS}</div>
                {/if}
                <div
                        {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
                                id="content"
                        {else}
                                id="contentfull"
                        {/if}
                         >
                {if strstr ($smarty.server.PHP_SELF, 'index')}
                    {if $smarty.get.cPath==null and $smarty.get.manufacturers_id==''}
                         {if $BANNER}{$BANNER}{/if}
                   {/if}
                {/if}
                {$main_content}</div>
            {if !strstr ($smarty.server.PHP_SELF, 'checkout')}
            <div id="rightcol"></div>
            {/if} </div>
                    <div class="abstand"></div>
    <div id="bottom">
      <div class="bottom-divs">
        <!-- Bottom Left -->
        <div id="bottom-left">
          {$box_CONTENT}
        </div>
        <!-- Bottom Mid -->
        <div id="bottom-mid">
          {$box_INFORMATION}
        </div>
            <!-- Bottom Mid2 -->
        <div id="bottom-mid">
          {$box_PAYBOX}
        </div>
        <!-- Bottom Right -->
        <div id="bottom-right">
          {$box_NEWSLETTER}
        </div>
      </div>
    </div>
        <p class="footer">{$smarty.const.TITLE} &copy; {$smarty.now|date_format:"%Y"} | Template &copy; 2009 by modified eCommerce Shopsoftware eCommerce Shopsoftware</p>
        </div>

    alien

    • Mitglied
    • Beiträge: 179
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #54 am: 24. März 2012, 11:55:22
    Danke! Jetzt läuft es perfekt!
    Damit hast du mein Wochenende wirklich gerettet und ich kann die Sonne genießen gehen! :D Du hoffentlich auch! :D

    hechicero

    • Mitglied
    • Beiträge: 233
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #55 am: 24. März 2012, 11:59:18
    Hallo,

    ich habe die Variante 2 in meinem Testshop eingebaut. Sieht echt klasse aus. Vielen Dank!

    Jetzt ist mir aufgefallen, dass ohne die Änderung die Content Boxen während des Bestellvorgangs ausgeblendet werden um nicht abzulenken. Nach der Änderung wird der Content Bereich im Footer aber immer angezeigt.

    Wie kann man den Content während des Bestellvorgangs ausblenden?

    Grüße

    hechicero

    Aragorn45

    • Mitglied
    • Beiträge: 108
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #56 am: 19. Juni 2012, 17:15:00
    Hallo bin neu hier und grüße alle.
    Habe im xt5 temp. agb usw. im footer reingemacht genauso wie es ganz am anfang beschrieben ist.
    Würde aber gerne auch noch Startmenü sowie Anmelden usw. im header haben neben dem Banner. Wie funktioniert das den?

    sunfreak

    • Fördermitglied
    • Beiträge: 97
    • Geschlecht:
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #57 am: 15. Juli 2012, 11:00:30
    Hallo,
    habe Variante2 installiert(ohne Rahmen). Läuft soweit, bis auf die Tatsache, dass die Schriftfarbe in den zwei linken Boxheadern blau und in der rechten Boxh weis ist...
    [ Für Gäste sind keine Dateianhänge sichtbar ]

    Hier meine Modifikation:
    index.html
    Code: PHP  [Auswählen]
    <div id="abstand"></div>
    <div id="bottom">
      <div id="bottom-divs">
        <!-- Bottom Left -->
        <div id="bottom-left">
          {$box_CONTENT}
        </div>
        <!-- Bottom Mid -->
        <div id="bottom-mid">
          {$box_INFORMATION}
        </div>
        <!-- Bottom Right -->
        <div id="bottom-right">
          {$box_WHATSNEW}
        </div>
      </div>
    </div>
     

    stylesheet.css
    Code: PHP  [Auswählen]
    #abstand {
               background:#FFFFFF none repeat scroll 0 0;
               clear:both;
                height:15px;
        }
         
    #bottom {
               background-color:#EDEDED;
               border-color:#CCCCCC;
               border-style:solid;
                border-width:1px 1px 1px;
                clear: both;
                float: left;
                width: 978px;
                height: 100%;
                font-size: 0.9em;
                text-align: left;
                color: #383838;
       }
    #bottom-divs {
               float: left;
                clear: both;
                margin: 0;
                padding: 0px;
                width: 100%;
        }
    #bottom-left,
    #bottom-mid,
    #bottom-right {
               width: 27%;
                padding: 10px 0 20px 60px;
                float: left;
    }
    #bottom h2 {
               margin: 0 0 10px 0;
                padding: 0 0px;
                font-size: 1.6em;
                color: #004B76;
       }
    #bottom h2 span {
               color: #1474b4;
       }
    #bottom ul {
               margin: 0;
                padding: 0;
                list-style-type: none;
                border-top: 1px solid #ccc;
       }
    #bottom ul li {
               line-height: 26px;
                border-bottom: 1px solid #ccc;
       }
    #bottom ul li a {
               display: block;
                padding: 0 10px;
                color: #383838;
               text-decoration: none;
                outline: none;
        }
    #bottom ul li a:hover {
               background: #CCCCCC;
               outline: none;
        }
    #bottom-sep {
               clear: both;
        }
    div#bottom h2.boxheader {
               background: none;
        }
    div#bottom .boxbody {
               border: none;
                padding: 0px;
                margin: 0px;
        }
    div#bottom .boxbody ul.contentlist {
               margin: 0px;
        }
         
    div#bottom .contentlist a {
               border: none;
        }
     
    Meine Frage: Hat jemand ein Beispiel für mich mit 4 "Boxen" und evtl. einen Hinweis für mich wegen der Boxüberschriften?
    Danke
    Frank

    Lionne

    • Mitglied
    • Beiträge: 189
    • Geschlecht:
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #58 am: 15. Juli 2012, 11:52:58
    Dein Problem mit den Farben der Überschriften besteht, weil die Überschrift "Neue Artikel" verlinkt ist und sich damit auf Zeile 456 (h2.boxheader a:link) in deiner stylesheet.css bezieht. Die anderen Überschriften beziehen sich auf Zeile 1349 (div#bottom h2.boxheader).

    Für 4 Boxen kannst du dir meine index.html als Vorlage nehmen:
    Code: CSS  [Auswählen]
     
    <div id="bottom">
      <div id="bottom-divs">
        <!-- Bottom Left -->
        <div id="bottom-left">
            {$box_CONTENT}
            </div>
                <!-- Bottom Midl -->
        <div id="bottom-midl">
            {$box_INFORMATION}
           
         </div>
        <!-- Bottom midr -->
        <div id="bottom-midr">
            {$box_PAYMENT}
          </div>
             <!-- Bottom Right -->
        <div id="bottom-right">
                    {$box_TRANSPORT}
              </div>

    Die Vorlage für die stylesheet.css:

    Code: CSS  [Auswählen]
    #bottom-left {
            width: 21%;
            padding: 10px 0 25px 30px;
            float: left;
    }

    #bottom-midl{
            width: 21%;
            padding: 10px 0 10px  30px;
            float: left;
    }

    #bottom-midr {
            width: 21%;
            padding: 10px 0 5px 30px;
            float: left;
    }
                   
    #bottom-right {
            width: 21%;
            padding: 10px 0 0 30px;
            float: left;
                   

    Viele Grüße
    Lionne

    sunfreak

    • Fördermitglied
    • Beiträge: 97
    • Geschlecht:
    Re: ANLEITUNG: Content Boxen im Footer
    Antwort #59 am: 17. Juli 2012, 19:37:21
    @Lionne

    ohne Zweifel hast Du recht, sonst sähe es ja anders aus.
    Ich habe aber keine Ahnung wie ich es ändern soll. All meine Firefox css analyse Dinger meinen es käme aus dem #bottom-divs. Ich habe immernoch den ursprünglichen Code drin (3 Boxen).
    Wärest Du so nett mir die Änderung zu sagen, die ich machen muss?

    Danke Dir
    Frank
    6 Antworten
    7540 Aufrufe
    29. August 2011, 15:04:15 von B2112
    1 Antworten
    2307 Aufrufe
    27. März 2013, 12:05:15 von sunfreak
    6 Antworten
    3726 Aufrufe
    14. Januar 2017, 08:30:42 von karl
    1 Antworten
    2608 Aufrufe
    13. April 2014, 02:28:37 von p3e
               
    anything