How to make large the size of PrettyPhoto on HTML

1k Views Asked by At

I want to make the picture width & height more larger example fullwidth. but i dont know how to do it in prettyphoto

My code for prettyphoto is

/*-- PRETTY PHOTO --*/
$("a[data-rel^='prettyPhoto']").prettyPhoto({
social_tools: false
/*-- PRETTY PHOTO END --*/
1

There are 1 best solutions below

2
Monkey D. Luffy On

Try the following code:

$("a[rel^='prettyPhoto']").prettyPhoto({
    allow_resize: true, /* Resize the photos bigger than viewport. true/false */
    default_width: 500,
    default_height: 344,
    horizontal_padding: 20
});