Hi,
first of all, i would like to apologize for my english is not so well, therefore i use a link to explain my question will be more better and less confusing you,
here is the link to the question and image, http://bit.ly/UIPsAB
Thanks
G
Hi,
first of all, i would like to apologize for my english is not so well, therefore i use a link to explain my question will be more better and less confusing you,
here is the link to the question and image, http://bit.ly/UIPsAB
Thanks
G
The theme framework does not support portfolio categories for widgets at the moment but you can use widget logic: http://wordpress.org/extend/plugins/widget-logic/ instead. You can use the is_tax() conditional to check against a certain portfolio category: http://codex.wordpress.org/Function_Reference/is_tax
If you have a portfolio category called "company" the conditional would look like:
is_tax('portfolio_entries', 'company')
You can also use the term id instead of the term slug and you can use an array if you want to display a widget on several archive pages like:
is_tax('portfolio_entries', array('company','foundation','organization'))oh,...seem like i have to think again how to sort out my items :)
btw, how to change this? http://bit.ly/ZO35A8
thanks
G
Hi G,
Kindly open functions.php and find this line of code (line 65):
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
Just replace the height and width.
Regards,
Ismael
yes Ismael, i tried b4 and now, i changed only the width to 60, it still same "square" as default?
Hey G,
Can we take a look at your page live? I believe the widget also needs a minor change to the css but I'd like it to be specific to the footer area and widget for your site so that it doesn't effect any other setting/widgets.
Regards,
Devin
Hi, Devin, can i have your email? so i can sent you a backend login password or you can sent your email to my email.
Sure thing, You can send the information to my email at DevinVinson (at) gmail.com. Make sure to include a link to this topic so that my spam filter doesn't grab it :)
Regards,
Devin
hi, Devin, an email sent to you !
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#footer #portfoliobox-2 .image_size_widget .news-thumb img {
height: 36px;
width: 60px;
}
#footer #portfoliobox-2 .image_size_widget .news-thumb {
height: 36px;
width: 60px;
}
That should allow you to modify both the height and the width in conjunction with changing the code in the php file as you've already done.
Regards,
Devin
hi, may i know why use #portfoliobox-2 ? is it stand for widget no2?
and how to remove the border(frame) or make it thinner?
Hey!
I tagged the thread for Devin.
Best regards,
Peter
hi, how to change this text color??
http://bit.ly/XlrNpC
Thanks
You can change the color with following css code - add it to css/custom.css and change the color value:
.slideshow_color .breadcrumb {
color: #8F8F8F !important;
}
.slideshow_color .breadcrumb a:hover {
color: #333 !important;
}Yes, i set the color to black, but it only works for partial text ! , the "1 search result for: ASF" text and link text did not changed !
http://bit.ly/UGT0Ff
also, how to modify the search display thumbnail size?
Thanks
Hi,
Please add this on your custom.css to change the text color
.title_meta p, .breadcrumb-trail a {
color: black !important;
}
To modify the thumbnail size, try this one
.search .news-thumb {
width: 100px;
height: 100px;
}
.search .news-thumb img {
width: 100%;
height: 100%;
}
Regards,
Ismael
Thanks Ismael, Dude and Devin,
the code works, for the Ismael last code i used, it was changed the thumb size but the image becomes blurry??
how to fix it?
http://bit.ly/VIkwDt
Hi giore,
I checked your site and found this code:
.search .news-thumb {
width: 100px;
height: 60px;
}
Try to replace it with:
.search .news-thumb {
width: 60px;
height: 36px;
}
Hope this helps. :)
Regards,
Ismael
Thanks Ismael, the 100px and 60px size is what i like but NOT the smaller 60px and 36px.
size is okay for me, just the blurry image problem now.
Hi!
You can try to increase the thumbnail quality: http://inspectelement.com/snippets/change-the-default-wordpress-thumbnail-jpg-compression-quality/
Regards,
Peter
hi dude,
is it only for jpeg file? how about png file?
i had tried to change to png name in the code
but seem like no luck :(
i added b4
require_once( 'functions-choices.php');
Hi,
You need to get back on my previous post, try to change this line on your function.php
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
Replace it with
$avia_config['imgSize']['widget'] = array('width'=>100, 'height'=>60); // small preview pics eg sidebar news
Now, regenerate thumbnails.
Regards,
Ismael
You must log in to post.