-
Search Results
-
Hi, I would like to change the height of the code below using my child’s theme functions.php.
This is line 101 in the parent functions.php
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entriesI tried the below but that did not work.
if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'entry_with_sidebar'' ); set_post_thumbnail_size( 710, 470 ); // New big images for blog and page }Thanks for your help.
VictorTopic: Masonry blog layout
Hi,
Thanks for a great theme! I am using it on 3 websites and finding it extremely useful!
Question: I would like to be able to control the size of the thumbnail images in my masonry blog layout, as well as the gap size between them. Is there any short-code for this?
Here is my blog as it looks now:http://www.escuelaveranoarteterapia.org/blog/
Thanks,
JetteI have tried the following to hide a post slider on smartphones; unfortunately, this Quick CSS entry also hides the thumbnail previews of blog categories in the grid layout. Is there a way to hide the post slider element, but leave the grid? Thank you! :)
@media only screen and (max-width: 767px) {
.avia-content-slider { display: none;}
}There are some posts titles where I have had to add a little bit of html like a img src for a quick small icon…its great and simple as it adds a little flag for the origin of a post right in front of the title.The problem is that any mouseover the thumbnail in the masonry or on the latest post or on the story itself shows a title mouseover with the html (obviously)
I need to remove all these titles on mouseover from showing at all anywhere on the site.
Recommendations?
Thanks in advanceTopic: Gallery issues
I have inserted a simple gallery, however I cannot get the thumbnail images to downsize to 80X80 they stop somewhere around 20% of their original size. Then as you hover over different images the gallery itself jumps up the page by 10 or so pixels and continues to do this until there is no large preview image.
Any thoughts?
My uploaded images for my portfolio are 1000px x 1000 px.
I have used the following custom CSS to change the small thumbnails (they were previously cropped vertically).portfolio-preview-image {
width: 500px;
}This fixed the small thumbnail icons, but when I click on one and the AJAX portfolio opens, the image is cropped. How do I fix this?
Thanks!Hello,
I used this CSS code to change the size of the magazine thumbnail:
.av-magazine-thumbnail { width: 150px; }
But somehow the image does not stretch and is still a small square.
Is there a fix for this?Hey there,
I need to use the size 600×338 for the thumbnails in my portfolio as that keeps the ratio correct for 16:9 videos. I tried to add a video_thumbnail, but then realized that wouldn’t work. Where in the functions.php do I make this edit so the thumbnails in the grid layout will be this correct size?
HERE IS THE CODE I AM WORKING WITH:
##################################################################
# AVIA FRAMEWORK by Kriesi# this include calls a file that automatically includes all
# the files within the folder framework and therefore makes
# all functions and classes available for later userequire_once( ‘framework/avia_framework.php’ );
##################################################################
/*
* Register additional image thumbnail sizes
* Those thumbnails are generated on image upload!
*
* If the size of an array was changed after an image was uploaded you either need to re-upload the image
* or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
*/$avia_config[‘imgSize’][‘widget’] = array(‘width’=>36, ‘height’=>36); // small preview pics eg sidebar news
$avia_config[‘imgSize’][‘square’] = array(‘width’=>180, ‘height’=>180); // small image for blogs
$avia_config[‘imgSize’][‘featured’] = array(‘width’=>1500, ‘height’=>430 ); // images for fullsize pages and fullsize slider
$avia_config[‘imgSize’][‘featured_large’] = array(‘width’=>1500, ‘height’=>630 ); // images for fullsize pages and fullsize slider
$avia_config[‘imgSize’][‘extra_large’] = array(‘width’=>1500, ‘height’=>1500 , ‘crop’ => false); // images for fullscrren slider
$avia_config[‘imgSize’][‘portfolio’] = array(‘width’=>495, ‘height’=>400 ); // images for portfolio entries (2,3 column)
$avia_config[‘imgSize’][‘portfolio_small’] = array(‘width’=>260, ‘height’=>185 ); // images for portfolio 4 columns
$avia_config[‘imgSize’][‘video_thumbnail’] = array(‘width’=>600, ‘height’=>338 ); // images for video on demand thumbnails
$avia_config[‘imgSize’][‘gallery’] = array(‘width’=>710, ‘height’=>575 ); // images for portfolio entries (2,3 column)
$avia_config[‘imgSize’][‘magazine’] = array(‘width’=>710, ‘height’=>375 ); // images for magazines
$avia_config[‘imgSize’][‘masonry’] = array(‘width’=>705, ‘height’=>705 , ‘crop’ => false); // images for fullscreen masonry
$avia_config[‘imgSize’][‘entry_with_sidebar’] = array(‘width’=>710, ‘height’=>270); // big images for blog and page entries
$avia_config[‘imgSize’][‘entry_without_sidebar’]= array(‘width’=>1030, ‘height’=>360 ); // images for fullsize pages and fullsize slider//overwrite blog and fullwidth image on extra large layouts
if(avia_get_option(‘responsive_layout’) == “responsive responsive_large”)
{
$avia_config[‘imgSize’][‘gallery’] = array(‘width’=>845, ‘height’=>684 ); // images for portfolio entries (2,3 column)
$avia_config[‘imgSize’][‘entry_with_sidebar’] = array(‘width’=>845, ‘height’=>321); // big images for blog and page entries
$avia_config[‘imgSize’][‘entry_without_sidebar’]= array(‘width’=>1210, ‘height’=>423 ); // images for fullsize pages and fullsize slider
}$avia_config[‘selectableImgSize’] = array(
‘square’ => __(‘Square’,’avia_framework’),
‘featured’ => __(‘Featured Thin’,’avia_framework’),
‘featured_large’ => __(‘Featured Large’,’avia_framework’),
‘portfolio’ => __(‘Portfolio’,’avia_framework’),
‘gallery’ => __(‘Gallery’,’avia_framework’),
‘video_thumbnail’ => __(‘Video on Demand’,’avia_framework’),
‘entry_with_sidebar’ => __(‘Entry with Sidebar’,’avia_framework’),
‘entry_without_sidebar’ => __(‘Entry without Sidebar’,’avia_framework’),
‘extra_large’ => __(‘Fullscreen Sections/Sliders’,’avia_framework’),);
avia_backend_add_thumbnail_size($avia_config);
if ( ! isset( $content_width ) ) $content_width = $avia_config[‘imgSize’][‘featured’][‘width’];
HERE IS THE PAGE ON MY SITE:
http://dev.questcommunity.com/watch/
Thanks,
NateTopic: Images in footer too small
We have put two widget in the footer. One with blog posts and one with the product in offer. We would like to display a bit bigger images
I see for the product in offer
img width=”120″ height=”120″
attachment-shop_thumbnail wp-post-imageand for the blog posts
img width=”36″ height=”36″
attachment-widget wp-post-imageAlmoust all our products have variations and the two full prices and the two discounted prices wrap to a new line. It would be better to have full prices in one line and discounted prices on another. Is it possible?
Thank you Mauro
