2010-10-08 39 views
1

我只是想問你如何改變nextGen(galleryview template)wordpress插件中圖像的寬度/高度?將所有東西都放好之後,它就像魅力一樣,但我無法增加圖像的大小。這是我發現的模板中的代碼:如何增加nextGen(galleryview template)wordpress插件中圖片的寬度?

<script type="text/javascript" defer="defer"> 
jQuery("document").ready(function(){ 
    jQuery('#<?php echo $gallery->anchor ?>').galleryView({ 
     panel_width: 650, 
     panel_height: 400, 
     frame_width: 40, 
     frame_height: 40, 
     transition_interval: 0, 
     overlay_color: '#222', 
     overlay_text_color: 'white', 
     caption_text_color: '#222', 
     background_color: 'transparent', 
     border: 'none', 
     nav_theme: 'dark', 
     easing: 'easeInOutQuad' 
    }); 
}); 

但是這裏的寬度/高度僅適用於整個容器而不是圖像本身。我不想通過CSS來改變這些值,因爲圖像看起來很糟糕。任何人都可以幫我用這個漂亮的嗎?

回答

2

不能完全肯定,如果這是你所需要的,但如果你想改變默認的320×240大小不同的東西,看在admin/tinymce/window.php

+0

嗯不大 - 這是真的,我試圖改變寬度和高度圖庫中的圖像,但在galleryview模板中。這有點不同,但無論如何感謝:) – Pavel 2010-10-08 08:38:23

相關問題