put + wishlist and + compare one under the other for the hover efect

ThemeBurn SupportForumsOpenCart ThemesShoppica OpenCart Themeput + wishlist and + compare one under the other for the hover efect

This topic has been marked as resolved.

1. how can i put + wishlist and + compare one under the other (for the hover efect)? centered both. the translation in romanian does not fit in one line and part of the compare goes on a second row. how can i split the line in 2 diferent positions? thanks

2. how can i make the drop down from sort by: (name price etc) stay over everything on the page? adding z-index to 9999 has no efect- i had to increase the price z-index to 10 to cover a efect for pictures and now this is always on top

seems that we can’t add pictures in the forum….

 Adyyda
August 12, 2011 at 9:07 pm #499

Hi,

1) Everywhere you have:

<a class="s_button_wishlist s_icon_10">
   <span class="s_icon s_add_10"></span>
</a>
&nbsp;
<a class="s_button_compare s_icon_10">
   <span class="s_icon s_add_10"></span>
</a>

replace with:

<div>
   <a class="s_button_wishlist s_icon_10">
      <span class="s_icon s_add_10"></span>
   </a>
</div>
<div>
   <a class="s_button_compare s_icon_10">
      <span class="s_icon s_add_10"></span>
   </a>
</div>

In the screen.css modify this:

.s_grid_view .s_item:hover {
    margin: -20px -10px -47px;
}

to:

.s_grid_view .s_item:hover {
    margin: -20px -10px -65px;
}

This should do the job.

Regards,
ThemeBurn team

August 15, 2011 at 2:03 am #606

thanks. can you tell me please from where does it come the 40x40px product images from cart and compare and wishlist popup messages? i want to make them bigger

 Adyyda
August 15, 2011 at 10:09 am #623

That’s in the system section of OpenCart, not the theme.

System/Settings/DefaultStore/Image

August 15, 2011 at 4:42 pm #638

if you mean the admin section of opencart, my store, system, images, it is not the case. i have all images set up , all are rectangular and olso all bigger than 40×40. any ideea?

 Adyyda
August 15, 2011 at 5:15 pm #643

Hi,

This is controlled from catalog/controller/module/shoppica.php.

At the end of this piece of code, are two numbers – width and height of the notify popup image.

$json['thumb'] = $this->model_tool_image->resize($product_info['image'], 40, 40);

Regards,
ThemeBurn team

August 16, 2011 at 2:13 am #668

thanks. all perfect now. have found olso the values in admin folder and modified them as well

 Adyyda
August 16, 2011 at 7:58 am #679
Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.