Jump to content

[SOLVED] Bigger thickbox and scroll with background


Recommended Posts

Just want to share some solution that I have implemented on my site. I saw in the forum there were some bit and pieces so I compiled it plus some of my own modifications.

Effect : In the product page once you click on the product the thickbox comes out bigger than the default and then you can scroll up and down the screen. These changes you can modify them as you like them to look like on your site since everybody has their own preference.
Prestashop version 1.3.1.1

Change in js/jquery/thickbox-modified.js (from - to +)

var pagesize=tb_getPageSize();var x=pagesize[0]-150;var y=pagesize[1]-150;


to

var pagesize=tb_getPageSize();var x=pagesize[0]+150;var y=pagesize[1]+150;



Change in css/thickbox.css (fixed to absolute and top: x%)

#TB_window {
   position: fixed;
   background: #ffffff;
   z-index: 102;
   color:#000000;
   display:none;
   border: 4px solid #525252;
   text-align:left;
   top:50%;
   left:50%;


to

#TB_window {
   position: absolute;
   background: #ffffff;
   z-index: 102;
   color:#000000;
   display:none;
   border: 4px solid #525252;
   text-align:left;
   top:80%;
   left:50%;

Link to comment
Share on other sites

  • 2 weeks later...
  • 4 weeks later...
  • 1 month later...
  • 2 months later...
  • 3 months later...
  • 4 months later...

Hola, para la version 1.4 hay que cambiar algo mas?

 

He visto que en la version 1.4 hay que modificar fancybox , alguien sabe como?

 

Gracias

 

Por si le interesa a mas gente he encontrado la solucion en otro post: solution: in file jquery.fancybox-1.3.4.js line 1108 autoscale has to be false and line 1109 also has to be false.

Link to comment
Share on other sites

  • 1 year later...
  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...