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: Suchleiste vergrößern

    Nils

    • Schreiberling
    • Beiträge: 422
    • Geschlecht:
    Suchleiste vergrößern
    am: 05. Mai 2015, 21:12:32
    Hallo,

    ich wollte die Suchleiste vergrößern und bin wie folgt vorgegangen:

    In der Datei templates/xtc5/source/boxes/search.php habe ich die Zeile:

    Code: PHP  [Auswählen]
    $box_smarty->assign('INPUT_SEARCH', xtc_draw_input_field('keywords', IMAGE_BUTTON_SEARCH, 'style="width:190px;" maxlength="30" onfocus="if(this.value==this.defaultValue) this.value=\'\';" onblur="if(this.value==\'\') this.value=this.defaultValue;"'));

    geändert in:

    Code: PHP  [Auswählen]
    $box_smarty->assign('INPUT_SEARCH', xtc_draw_input_field('keywords', IMAGE_BUTTON_SEARCH, 'size="60" style="width:190px;" maxlength="50" onfocus="if(this.value==this.defaultValue) this.value=\'\';" onblur="if(this.value==\'\') this.value=this.defaultValue;"'));

    Die Anzahl eingebbarer Ziffern wurde zwar von 30 auf 50 erfolgreich geändert; jedoch wurde die Größe der Input-Leiste nicht geändert. Muss die irgendwo anders geändert werden? Irgendwie zieht hier das Kommando size=... nicht. Habs auch versucht zu verkleinern. Dabei gibts dasselbe Problem.

    MFG
    Nils

    Linkback: https://www.modified-shop.org/forum/index.php?topic=32892.0

    sv.brueck

    • Fördermitglied
    • Beiträge: 524
    Re: Suchleiste vergrößern
    Antwort #1 am: 05. Mai 2015, 21:25:15
    Hallo Nils,

    der Befehl size hat darauf keinen Einfluß. Die Höhe musst Du zusätzlich im Style einbinden, also so:

    Code: PHP  [Auswählen]
    $box_smarty->assign('INPUT_SEARCH', xtc_draw_input_field('keywords', IMAGE_BUTTON_SEARCH, 'style="width:160px; height: 25px;" maxlength="30" onfocus="if(this.value==this.defaultValue) this.value=\'\';" onblur="if(this.value==\'\') this.value=this.defaultValue;"'));

    Hier habe ich einfach mal die Höhe auf 25px gesetzt. Diese kannst Du natürlich ändern.

    Gruß

    Sven

    Nils

    • Schreiberling
    • Beiträge: 422
    • Geschlecht:
    Re: Suchleiste vergrößern
    Antwort #2 am: 05. Mai 2015, 21:37:39
    Hallo Sven,

    danke für deinen Tipp!

    Leider hilft der aber nicht. Ich habe mal deine komplette Zeile übernommen, aber stattdessen bei 25 für height nur 5 eingegeben. Keinerlei Änderung. Hättest du noch eine Idee?

    MFG
    Nils

    sv.brueck

    • Fördermitglied
    • Beiträge: 524
    Re: Suchleiste vergrößern
    Antwort #3 am: 05. Mai 2015, 21:44:02
    Du hast also anstatt

    Code: PHP  [Auswählen]
    style="width:160px; height: 25px;"

    es so

    Code: PHP  [Auswählen]
    style="width:160px; height: 5px;"

    in der Zeile drin stehen, oder?

    Warum den so schmal?

    Gruß

    Sven

    Matt

    • Experte
    • Beiträge: 4.241
    Re: Suchleiste vergrößern
    Antwort #4 am: 05. Mai 2015, 22:04:49
    size wirkt sich schon aus, wenn man das CSS entfernt (warum hat das Feld eigentlich Inline-Styles?). Ich vermute Nils wollte nur sehen ob die Angabe überhaupt greift. Mach ich auch gern so, indem ich unrealistische Werte oder Farben angebe. Eigentlich sollte 5px die gewünschte Wirkung zeigen.

    Nils

    • Schreiberling
    • Beiträge: 422
    • Geschlecht:
    Re: Suchleiste vergrößern
    Antwort #5 am: 06. Mai 2015, 00:06:39
    Ja, die 5px waren wie Matt schon sagte - nur zum Testen. Ich habe nun den Code:

    Code: PHP  [Auswählen]
    $box_smarty->assign('INPUT_SEARCH', xtc_draw_input_field('keywords', IMAGE_BUTTON_SEARCH, 'style="width:190px;" maxlength="30" onfocus="if(this.value==this.defaultValue) this.value=\'\';" onblur="if(this.value==\'\') this.value=this.defaultValue;"'));

    mal testweise durch den Code:

    Code: PHP  [Auswählen]
    $box_smarty->assign('INPUT_SEARCH', xtc_draw_input_field('keywords', IMAGE_BUTTON_SEARCH, 'size="12"'))

    ersetzt. Nun funktioniert es. Ich frage mich jetzt nur, wozu die Sachen da sind, die ich weggekürzt habe. Ist das nur kosmetischer Code oder wird der für die Shop-Funktion benötigt oder wie sollte ich sonst am besten kürzen?

    MFG
    Nils

    Ergänzung: Code scheint nicht unwichtig zu sein, denn die Suchfunktion funktioniert nun nicht mehr...

    weitere Ergänzung:
    Ich habs jetzt:

    Code: PHP  [Auswählen]
    $box_smarty->assign('INPUT_SEARCH', xtc_draw_input_field('keywords', IMAGE_BUTTON_SEARCH, 'size="60" maxlength="50" onfocus="if(this.value==this.defaultValue) this.value=\'\';" onblur="if(this.value==\'\') this.value=this.defaultValue;"'));

    Nils

    • Schreiberling
    • Beiträge: 422
    • Geschlecht:
    Re: Suchleiste vergrößern
    Antwort #6 am: 06. Mai 2015, 06:20:58
    Hi, ich schon wieder.
    Ich bekomme es leider nicht hin, im Popup zum Modul Anfrage zu einem Artikel, die untere Texteingabezeile in der Breite zu ändern. Ich hab schon stundenlang rumprobiert, aber keine Änderung greift. Könnt mir jemand sagen, wo man das ändern kann. Ich füge mal die 1. contact_us_popup.html und die 2. contact_us_popup.php als Code ein und hoffe, dass dieser nicht zu umfangreich ist und dass ich keine Schläge bekomme.  :beef:

    Falls zu lang, könnte sie vielleicht ein Admin kürzen?

    Code: PHP  [Auswählen]
    {config_load file="$language/lang_$language.conf" section="newsletter"}
    {config_load file="$language/lang_$language.conf" section="contact_us"}

    <body style="background:-moz-linear-gradient(bottom,#000000,#E7F6FF); /* Firefox */
    background:-webkit-gradient(linear,left top,left bottom,from(#000000),to(#E7F6FF)); /* Chrome, Safari */
    filter: progid:DXImageTransform.Microsoft.gradient(start
    Colorstr='#000000',endColorstr='#E7F6FF'); /* Internet Explorer */; font-family:'Courier New', Courier, monospace;overflow-x: hidden;padding-left:0px;padding-right:0;padding-top:15px;padding-bottom:0px;margin-right:12px;position:relative;bottom:51px;font-size:10px;line-height:1.48em;"
    >

    <div style="background:#FFF;overflow:hidden;">
    <div align="justify" style="color:#000;">
    <div style="border:thick ridge #09C;padding-left:27px;padding-right:11px;padding-top:17px;padding-bottom:11px;margin-top:0px;margin:bottom:0px;"><div style="font-size:10px;"><h1>Meine Artikel-Anfrage</h1>
    <span class="Zeilenabstandxxs"><br /><br /><br /><br /></span>

    {if $error_message!=''}
      <div class="popup_message_error">
        <table width="100%" border="0" cellspacing="0" cellpadding="4">
          <tr>
            <td>{$error_message}</td>
          </tr>
        </table>
      </div>
    {/if}

    {if $success!='1'}
      {$FORM_ACTION}
      <div class="popup_content">
        <table width="100%" border="0" cellspacing="0" cellpadding="4">
          <tr>
            <td class="popup_name">{#text_name#}</td>
           <td class="popup_input2">{$INPUT_NAME}</td>
          </tr>
          <tr>
            <td class="popup_name">{#text_email#}*</td>
           <td class="popup_input2">{$INPUT_EMAIL}</td>
          </tr>
          <tr>
            <td class="popup_name">{#text_phone#}</td>
           <td class="popup_input2">{$INPUT_PHONE}</td>
          </tr>
          <tr>
            <td class="popup_name">{#text_fax#}</td>
           <td class="popup_input2">{$INPUT_FAX}</td>
          </tr>
          <tr>
            <td class="popup_name">{#text_street#}</td>
           <td class="popup_input2">{$INPUT_STREET}</td>
          </tr>
          <tr>
            <td class="popup_name">{#text_postcode#}</td>
           <td class="popup_input2">{$INPUT_POSTCODE}</td>
          </tr>
          <tr>
            <td class="popup_name">{#text_city#}</td>
           <td class="popup_input2">{$INPUT_CITY}</td>
          </tr>
          <tr>
            <td class="popup_name">{#text_company#}</td>
           <td class="popup_input2">{$INPUT_COMPANY}</td>
          </tr>
          <tr>
            <td class="popup_name">{#text_sec_code#}</td>
           <td>{$VVIMG}</td>
          </tr>
          <tr>
            <td class="popup_name">{#text_sec_code#}*</td>
           <td>{$INPUT_CODE}</td>
          </tr>
          <tr>
            <td class="popup_name">Artikel / Artikelnummer:</td>
            <td class="popup_input3">{$INPUT_PRODUCTS_NAME}{$INPUT_PRODUCTS_NAME_ID}</td>
          </tr>

             <tr>
            <td class="popup_name">Typ / Attributartikelnummer:</td>
            <td class="popup_input3">{$INPUT_PRODUCTS_NAME}{$INPUT_PRODUCTS_NAME_ID}</td>
         </tr>
         <tr>

            <td class="popup_name" valign="top">{#text_message#}*</td>
           <td class="popup_textarea2">{$INPUT_TEXT}</td>
          </tr>
          <tr>
            <td class="popup_name">&nbsp;</td>
            <td>{$BUTTON_SUBMIT}</td>
          </tr>
          <tr>
            <td style="position:relative;bottom:20px;left:340px;" colspan="2"><strong>{#text_hint#}</strong></td>
         </tr>
        </table>
      </div>
      {$FORM_END}
    {else}
      <div class="popup_message_success">
        <table width="100%" border="0" cellspacing="0" cellpadding="4">
          <tr>
            <td>{#text_success#}</td>
         </tr>
        </table>
      </div>
    {/if}
    </div>

    </body>

    Code: PHP  [Auswählen]
    <?php
    /* -----------------------------------------------------------------------------------------
       $Id: contact_us.php 4321 2013-01-15 16:42:37Z web28 $

       modified eCommerce Shopsoftware
       http://www.modified-shop.org

       Copyright (c) 2009 - 2013 [www.modified-shop.org]
       -----------------------------------------------------------------------------------------
       based on:
       (c) 2006 XT-Commerce

       Released under the GNU General Public License
       ---------------------------------------------------------------------------------------*/


    //included by shop_content_popup.php

      //use contact_us_popup.php language file
    // BOF - Artikel Anfrage PopUp
      require_once (DIR_WS_LANGUAGES.$_SESSION['language'].'/contact_us_popup.php');
    // EOF - Artikel Anfrage PopUp
     
      $error = false;
      if (isset ($_GET['action']) && ($_GET['action'] == 'send')) {

        //BOF - web28 - 2010-04-03 - New error handling for required fileds
        //jedes Feld kann hier auf die gewünschte Bedingung getestet und eine Fehlermeldung zugeordnet werden
        //BOF error handling
        $err_msg = '';
        if (!xtc_validate_email(trim($_POST['email']))) $err_msg .= ERROR_EMAIL;
        if ((strtoupper($_POST['vvcode']) != $_SESSION['vvcode']) || $_SESSION['vvcode']=='') $err_msg .= ERROR_VVCODE;
        if (trim($_POST['message_body']) == '') $err_msg .= ERROR_MSG_BODY;
        //EOF error handling

        $smarty->assign('error_message', ERROR_MAIL . $err_msg);

        if ($err_msg != '') $error = true;

        //Wenn kein Fehler Email formatieren und absenden
        if (!$error) {
          // Datum und Uhrzeit
          $datum= date("d.m.Y");
          $uhrzeit= date("H:i");

          // BOF - Tomcraft - 2009-11-05 - Advanced contact form (additional fields)
          $additional_fields = '';
          if (isset($_POST['company']))  $additional_fields =  EMAIL_COMPANY. $_POST['company'] . "\n" ;
          if (isset($_POST['street']))   $additional_fields .= EMAIL_STREET . $_POST['street'] . "\n" ;
          if (isset($_POST['postcode'])) $additional_fields .= EMAIL_POSTCODE . $_POST['postcode'] . "\n" ;
          if (isset($_POST['city']))     $additional_fields .= EMAIL_CITY . $_POST['city'] . "\n" ;
          if (isset($_POST['phone']))    $additional_fields .= EMAIL_PHONE . $_POST['phone'] . "\n" ;
          if (isset($_POST['fax']))      $additional_fields .= EMAIL_FAX . $_POST['fax'] . "\n" ;
    // BOF - Artikel Anfrage PopUp
          if (isset($_POST['products_name_field'])) $additional_fields .= EMAIL_ARTICLE . $_POST['products_name_field'] . "\n";
          if ($_POST['products_name_id'] != '') $additional_fields .= EMAIL_ARTICLE_LINK . xtc_href_link(FILENAME_PRODUCT_INFO, xtc_product_link(trim($_POST['products_name_id']), trim($_GET['products_name']))) . "\n";
    // EOF - Artikel Anfrage PopUp
          // EOF - Tomcraft - 2009-11-05 - Advanced contact form (additional fields)

          // BOF - Tomcraft - 2009-11-05 - Advanced contact form (check for USE_CONTACT_EMAIL_ADDRESS)
          $use_contact_email_query = xtc_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'USE_CONTACT_EMAIL_ADDRESS'");
          $use_contact_email = xtc_db_fetch_array($use_contact_email_query);
          if ($use_contact_email['configuration_value'] == 'true') {
              $email = trim(CONTACT_US_EMAIL_ADDRESS);
            $name = CONTACT_US_NAME;
            $notify =  EMAIL_NOTIFY . "\n\n";
          } else {
            $email = trim($_POST['email']);
            $name = $_POST['name'];
            $notify =  '';
          }
          // EOF - Tomcraft - 2009-11-05 - Advanced contact form (check for USE_CONTACT_EMAIL_ADDRESS)

          $email_layout = sprintf(EMAIL_SENT_BY, CONTACT_US_NAME, CONTACT_US_EMAIL_ADDRESS, $datum , $uhrzeit) . "\n" .
                  "--------------------------------------------------------------" . "\n" . $notify .
                  EMAIL_NAME. $_POST['name'] . "\n" .
                  EMAIL_EMAIL. trim($_POST['email']) . "\n" .
                  // BOF - Tomcraft - 2009-11-05 - Advanced contact form (additional fields)
                  $additional_fields .
                  // EOF - Tomcraft - 2009-11-05 - Advanced contact form (additional fields)
                  "\n".EMAIL_MESSAGE."\n ". $_POST['message_body'] . "\n";

    // BOF - Artikel Anfrage PopUp
    // added to e-mail subject
          if ($_POST['products_name_id'] != '') {
            $CONT_US_SUBJ = CONTACT_US_EMAIL_SUBJECT . EMAIL_SUBJECT . $_POST['products_name_field'];
          } else {
            $CONT_US_SUBJ = CONTACT_US_EMAIL_SUBJECT;
          }
          xtc_php_mail($email,
                 $name,
                 CONTACT_US_EMAIL_ADDRESS,
                 CONTACT_US_NAME,
                 CONTACT_US_FORWARDING_STRING,
                 $email,
                 $name,                                                              
                 '',
                 '',
                 $CONT_US_SUBJ, //new variable defined above for e-mail subject, noRiddle
                 nl2br($email_layout),
                 $email_layout
                 );
    // EOF - Artikel Anfrage PopUp

          if (!isset ($mail_error)) {
    // BOF - Artikel Anfrage PopUp
            xtc_redirect(xtc_href_link(FILENAME_POPUP_CONTACT, 'action=success&coID='.(int) $_GET['coID']));
    // EOF - Artikel Anfrage PopUp
          } else {
            $smarty->assign('error_message', $mail_error);
          }
        }
        //EOF - web28 - 2010-04-03 - New error handling for required fileds
      }

      $smarty->assign('CONTACT_HEADING', $shop_content_data['content_heading']);
      if (isset ($_GET['action']) && ($_GET['action'] == 'success')) {
        $smarty->assign('success', '1');
        $smarty->assign('BUTTON_CONTINUE', '<a href="'.xtc_href_link(FILENAME_DEFAULT).'">'.xtc_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE).'</a>');

      } else {
        if ($shop_content_data['content_file'] != '') {
          ob_start();
          if (strpos($shop_content_data['content_file'], '.txt'))
            echo '<pre>';
          include (DIR_FS_CATALOG.'media/content/'.$shop_content_data['content_file']);
          if (strpos($shop_content_data['content_file'], '.txt'))
            echo '</pre>';
        $contact_content = ob_get_contents();
        ob_end_clean();
        } else {
          $contact_content = $shop_content_data['content_text'];
        }
        require (DIR_WS_INCLUDES.'header.php');

        // BOF - Tomcraft - 2009-11-05 - Advanced contact form (fix override by error request)
        if (isset ($_SESSION['customer_id']) && !$error) {
        // EOF - Tomcraft - 2009-11-05 - Advanced contact form (fix override by error request)
          $customers_name = $_SESSION['customer_first_name'].' '.$_SESSION['customer_last_name'];
          // BOF - Dokuman - 2009-09-04: preallocate email address on contact form
          //$email_address = $_SESSION['customer_email_address'];
    // BOF - Artikel Anfrage PopUp
          $c_query = xtc_db_query("SELECT * FROM ".TABLE_CUSTOMERS." AS c
                                       LEFT JOIN "
    .TABLE_ADDRESS_BOOK." AS ab
                                              ON (ab.customers_id = c.customers_id)
                                           WHERE c.customers_id='"
    .$_SESSION['customer_id']."'");
    // EOF - Artikel Anfrage PopUp
          $c_data  = xtc_db_fetch_array($c_query);
          $email_address = stripslashes($c_data['customers_email_address']);
          // EOF - Dokuman - 2009-09-04: preallocate email address on contact form
          // BOF - Tomcraft - 2009-11-05 - Advanced contact form (additional fields)
          $phone   = stripslashes($c_data['customers_telephone']);
          $fax     = stripslashes($c_data['customers_fax']);
          // BOF - Dokuman - 2010-10-14: preallocate additional fields on contact form correctly
          //$company  = stripslashes($c_data['entry_company']);
          //$street   = stripslashes($c_data['entry_street_address']);
          //$postcode = stripslashes($c_data['entry_postcode']);
          //$city     = stripslashes($c_data['entry_city']);
          $address_query = xtc_db_query("select
                            entry_company,
                            entry_street_address,
                            entry_city,
                            entry_postcode
                            from "
    . TABLE_ADDRESS_BOOK . "
                            where customers_id = '"
    . (int)$_SESSION['customer_id'] . "'
                            and address_book_id = '"
    . (int)$_SESSION['customer_default_address_id'] . "'");
          $address_data = xtc_db_fetch_array($address_query);
          $company  = stripslashes($address_data['entry_company']);
          $street   = stripslashes($address_data['entry_street_address']);
          $postcode = stripslashes($address_data['entry_postcode']);
          $city     = stripslashes($address_data['entry_city']);
          // EOF - Dokuman - 2010-10-14: preallocate additional fields on contact form correctly
          // EOF - Tomcraft - 2009-11-05 - Advanced contact form (additional fields)
        } elseif (!$error) {
            $customers_name = '';
            $email_address = '';
            $phone = '';
            $company = '';
            $street = '';
            $postcode = '';
            $city = '';
            $fax = '';
        }

        $smarty->assign('CONTACT_CONTENT', $contact_content);
        //BOF - Dokuman - 2009-12-23 - send contact form information with SSL
    // BOF - Artikel Anfrage PopUp
        //$smarty->assign('FORM_ACTION', xtc_draw_form('contact_us', xtc_href_link(FILENAME_CONTENT, 'action=send&coID='.(int) $_GET['coID'])));
        $smarty->assign('FORM_ACTION', xtc_draw_form('contact_us', xtc_href_link(FILENAME_POPUP_CONTACT, 'action=send&coID='.(int) $_GET['coID'], 'SSL')));
    // EOF - Artikel Anfrage PopUp
        //EOF - Dokuman - 2009-12-23 - send contact form information with SSL
        //BOF - web28 - 2009-07-28 - FIX SSL captcha image path
        $smarty->assign('VVIMG', '<img src="'.xtc_href_link(FILENAME_DISPLAY_VVCODES,'','SSL').'" alt="Captcha" />');
        //EOF - web28 - 2009-07-28 - FIX SSL captcha image path
        $smarty->assign('INPUT_CODE', xtc_draw_input_field('vvcode', '', 'size="8" maxlength="6"', 'text', false));
        $smarty->assign('INPUT_NAME', xtc_draw_input_field('name', ($error ? $_POST['name'] : $customers_name), 'size="30"'));
        $smarty->assign('INPUT_EMAIL', xtc_draw_input_field('email', ($error ? $_POST['email'] : $email_address), 'size="30"'));
        // BOF - Tomcraft - 2009-11-05 - Advanced contact form (additional fields)
        $smarty->assign('INPUT_PHONE', xtc_draw_input_field('phone', ($error ? $_POST['phone'] : $phone), 'size="30"'));
        $smarty->assign('INPUT_COMPANY', xtc_draw_input_field('company', ($error ? $_POST['company'] : $company), 'size="30"'));
        $smarty->assign('INPUT_STREET', xtc_draw_input_field('street', ($error ? $_POST['street'] : $street), 'size="30"'));
        $smarty->assign('INPUT_POSTCODE', xtc_draw_input_field('postcode', ($error ? $_POST['postcode'] : $postcode), 'size="30"'));
        $smarty->assign('INPUT_CITY', xtc_draw_input_field('city', ($error ? $_POST['city'] : $city), 'size="30"'));
        $smarty->assign('INPUT_FAX', xtc_draw_input_field('fax', ($error ? $_POST['fax'] : $fax), 'size="30"'));
        // EOF - Tomcraft - 2009-11-05 - Advanced contact form (additional fields)
        // BOF - Tomcraft - 2009-09-29 - fixed word-wrap in contact-form
        //$smarty->assign('INPUT_TEXT', xtc_draw_textarea_field('message_body', 'soft', 50, 15, ($error ? xtc_db_input($_POST['message_body']) : $first_name)));
        // BOF - Tomcraft - 2010-02-18 - Fixed width of textarea in FireFox under Linux.
        //$smarty->assign('INPUT_TEXT', xtc_draw_textarea_field('message_body', 'soft', 50, 15, ($error ? $_POST['message_body'] : $message_body)));
        $smarty->assign('INPUT_TEXT', xtc_draw_textarea_field('message_body', 'soft', 45, 15, ($error ? $_POST['message_body'] : $message_body)));
        // EOF - Tomcraft - 2010-02-18 - Fixed width of textarea in FireFox under Linux.
        // EOF - Tomcraft - 2009-09-29 - fixed word-wrap in contact-form
        $smarty->assign('BUTTON_SUBMIT', xtc_image_submit('button_send.gif', IMAGE_BUTTON_SEND));
    // BOF - Artikel Anfrage PopUp
        // for products_id to get link in e-mail, noRiddle
        $smarty->assign('INPUT_PRODUCTS_NAME', xtc_draw_input_field('products_name_field', ($error ? xtc_db_input($_POST['products_name_field']) : $product->data['products_name'] . ' | ' . $product->data['products_model'])));
        $smarty->assign('INPUT_PRODUCTS_NAME_ID', xtc_draw_hidden_field('products_name_id', ($error ? xtc_db_input($_POST['products_name_id']) : $product->data['products_id'])));
    // EOF - Artikel Anfrage PopUp
        $smarty->assign('FORM_END', '</form>');
      }

      $smarty->assign('language', $_SESSION['language']);
      $smarty->caching = 0;
    // BOF - Artikel Anfrage PopUp
      $main_content = $smarty->fetch(CURRENT_TEMPLATE.'/module/contact_us_popup.html');
    // EOF - Artikel Anfrage PopUp
    ?>

    MFG
    Nils

    Ergänzung: Hui, Glück gehabt. Der Code wird mit Box und Scrollbar versehen.  :cheers:

    Nils

    • Schreiberling
    • Beiträge: 422
    • Geschlecht:
    Re: Suchleiste vergrößern
    Antwort #7 am: 06. Mai 2015, 09:30:58
    So, habs hinbekommen. War dasselbe Problem wie vorher (hat Matt oben erklärt). Man muss die Styles alle entfernen, um size verwenden zu können oder alternativ schauen, wie die Klassen heißen, diese kopieren, umbenennen, die umbenannten dann anpassen und verwenden und die originalen belassen, da sie für andere Formularfelder noch benötigt werden...
    rechtstexte für onlineshop
    2 Antworten
    1800 Aufrufe
    22. Januar 2018, 19:45:56 von m.susok
    17 Antworten
    7662 Aufrufe
    11. April 2010, 15:58:32 von JoEy
    2 Antworten
    1059 Aufrufe
    23. März 2022, 19:35:54 von awids
    2 Antworten
    3930 Aufrufe
    29. Juli 2012, 16:48:26 von Nessy
               
    anything