Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to change the search box height.


Jackzzz

Recommended Posts

Posted

I have been trying to change the search box height,

 

I want to make the search box(height) size just same as the input(height) size.

 

 

How to change the search box height? where to change it???

 

 

Thankss many

  • 1 month later...
Posted
I have been trying to change the search box height,

 

I want to make the search box(height) size just same as the input(height) size.

 

 

How to change the search box height? where to change it???

 

 

Thankss many

 

I am also trying to figure out the same thing... Please can anyone help with this problem???? :)

Posted
I am also trying to figure out the same thing... Please can anyone help with this problem???? :)

 

Hey i got the solution for that problem..

 

just go to your Cagalog/includes/classes/boxes.php

 

find this function

 

**********

 

function infoBoxContents($contents) {

$this->table_cellpadding = '3';

$this->table_parameters = 'class="infoBoxContents"';

$info_box_contents = array();

$info_box_contents[] = array(array('text' => tep_draw_separator('pixel_trans.gif', '100%', '1')));

for ($i=0, $n=sizeof($contents); $i<$n; $i++) {

$info_box_contents[] = array(array('align' => (isset($contents[$i]['align']) ? $contents[$i]['align'] : ''),

'form' => (isset($contents[$i]['form']) ? $contents[$i]['form'] : ''),

'params' => 'class="boxText"',

'text' => (isset($contents[$i]['text']) ? $contents[$i]['text'] : '')));

}

$info_box_contents[] = array(array('text' => tep_draw_separator('pixel_trans.gif', '100%', '')));

return $this->tableBox($info_box_contents);

}

}

 

******

 

 

 

now the last second line of the code needs to be changed

 

i.e.,

$info_box_contents[] = array(array('text' => tep_draw_separator('pixel_trans.gif', '100%', '')));

return $this->tableBox($info_box_contents);

 

 

Replace 100% with whatever height you want and see the changes to the boxes..

 

 

Cheers...!!! B)

  • 4 months later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...