AbanteCart Community

Shopping Cart Operations => Support => General Support => Topic started by: Phanouman on January 02, 2014, 10:09:23 AM

Title: categories in search box
Post by: Phanouman on January 02, 2014, 10:09:23 AM
Hi all,

i've got an issue  with  the size of a category title in the search box  list
have  a look and u'll understand
http://clip2net.com/s/6vxO85

best
Title: Re: categories in search box
Post by: abantecart on January 02, 2014, 01:25:52 PM
Locate below code in file storefront/view/default_html5/stylesheet/style.css

Code: [Select]
.dropdown-menu {
padding: 15px;
position: absolute;
top: 97%;
left: 7px;
z-index: 99999;
display: none;
float: left;
min-width: 120px;
margin: 1px 0 0;
list-style: none;
background-color: #ffffff;
border: 1px solid #DDDDDD;
border-bottom: 4px solid #00A1CB;
border-radius: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0
}

Add:
Code: [Select]
white-space: normal;
Title: Re: categories in search box
Post by: Phanouman on January 06, 2014, 07:35:11 PM
Hi,

the workaround partially works as  you  can see  in  the link below

http://clip2net.com/s/6xdsSX

we actually split 'automates d'analyses'  in  two lines and would rather have  the
box  enlarged.
Title: Re: categories in search box
Post by: abantecart on January 07, 2014, 11:32:07 AM
Code: [Select]
.dropdown-menu > li > a {
white-space: normal;
}