Forum Replies Created
-
AuthorPosts
-
August 12, 2013 at 2:36 am in reply to: Remove pipe in title of main page; Social media icons in footer #131827
Hi,
Please use this plugins for the social icons on footer widgets
http://wordpress.org/plugins/addthis/
http://wordpress.org/plugins/share-this/
Regards,
Ismael
Hi,
It always say “”Your access to this site has been limited”” when I clicked on any links. I don’t see the original issue where you place a table for name and age fields.
Edit config-templatebuilder > aviashortcode > portfolio.php, find this code:
$link_markup = apply_filters('avf_portfolio_custom_image_container', array("a href='{$link}' title='".esc_attr(strip_tags($title))."' ",'a'), $entry);
Replace it with:
$link_markup = apply_filters('avf_portfolio_custom_image_container', array("a target='_blank' href='{$link}' title='".esc_attr(strip_tags($title))."' ",'a'), $entry);
Regards,
Ismael
Hi,
You can use this on your custom.css or Quick CSS
.tax-product_cat .page-thumb {
display: none;
}You can be more specific and remove it on certain product category only. For example, you have a category called “CSS”, use this:
.term-css .page-thumb {
display: none;
}Regards,
Ismael
August 12, 2013 at 1:33 am in reply to: Problem with post slider and testimonials not rotating #134430Hi,
First, you need to decrease the template content div.
@media only screen and (min-width: 1140px) {
.responsive .container .nine.units {
width: 660px;
}
)The sidebar’s width will increase automatically on this screen width because it is set to 100%.
You need to use Media Queries to target the next screen size for the content, the sidebar will follow:
.container .nine.units {
width: 570px;
}And another, to target smaller screen sizes:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .container .nine.units {
width: 399px;
}
}We decrease the content width by 100px for each screen sizes therefore you will have a 100px bigger sidebar.
Regards,
Ismael
Hi,
I think Dude’s suggestion is what you’re looking for. Create two or three sliders, one layer slider for page 1 and the other for page 2. You can’t select or filter the slides to show on a certain page and not on the other.
Regards,
Ismael
Hi,
@elames: Thanks for the tip.
@bevlogenverf: I don’t see the breadcrumbs or page title on every page. I assume you already fixed it. If you didn’t, just add this on your custom.css or Quick CSS
.title_container {
display: none;
}And I can see that you’re having a style issue on your menus, I think this will fix it:
.main_menu ul:first-child > li > a {
font-size: 13px;
font-weight: 500;
}You can adjust the font size to 12.
Regards,
Ismael
Hi,
Can you give us a screenshot of what you’re trying to do?
On LayerSlider WP, edit the layer, under Style panel add a padding on top, bottom, left and right. Give it a background or add this on custom style settings field:
background: rgba(255,255,255,.5);
This will create a transparent white box around the logo.
Regards,
Ismael
Hi,
Please give us a link to the actual website so that we can check it and give you a proper solution. It is not happening on our end.
Regards,
Ismael
Hi,
You have a lot of cufon fonts on your site and targeting them each will be a pain in the arse. I suggest you use the default google fonts or add your own. Edit functions.php, add this line of code below line 3:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Arvo'] = 'Arvo:400,700';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Arvo'] = 'Arvo:400,700';
return $fonts;
}You can browse google web fonts here:
http://www.google.com/fonts/
Regards,
Ismael
Hi,
Edit js > avia.js, find this code under smoothscroll function:
var target = container.offset().top - fixedMainPadding,
oldLocation=window.location.href.replace(window.location.hash, ''),
newLocation=this,
duration= data.duration || 800,
easing= data.easing || 'easeOutQuint';Set duration= data.duration || with a higher value like 8000.
Regards,
Ismael
Hey,
@kommbuero: You can actually do it by editing function-enfold.php, find this code:
if(!function_exists('avia_post_nav'))
{
function avia_post_nav($same_category = false)Set it to true:
if(!function_exists('avia_post_nav'))
{
function avia_post_nav($same_category = true)Regards,
Ismael
Hi,
I can’t access your website.
“Your access to this site has been limited”
Regards,
Ismael
Hi,
You can directly upgrade 1.9.1. Please create a backup of your old theme files and your database for security purposes.
Regards,
Ismael
Hi,
Unfortunately, there is no fix for it yet.
https://kriesi.at/support/topic/page-based-pagination-is-flawed
Regards,
Ismael
Hi,
Use this code instead. Place a class=”alignleft” on the anchor tag:
<a href="http://www.mcelhearn.com/2013/01/24/just-updated-take-control-of-itunes-10-the-faq-second-edition//" class="alignleft"><img src="http://www.mcelhearn.com/wordpress/wp-content/uploads/tc-itunes1.png" alt="Take Control of iTunes 11: The FAQ" width="131" height="168"></a>
Regards,
Ismael
Hi,
Please refer to this link: https://kriesi.at/support/topic/scrolling-to-bottom-before-gallery-loads
Regards,
Ismael
Hey,
Please add this on your custom.css or Quick CSS
.single .avia-video iframe {
position: absolute;
left: 0;
}Regards,
Ismael
August 10, 2013 at 8:21 am in reply to: Styling > Quick CSS missing on default language (using WPML) #134238Hi,
Please copy the code on your custom.css to affect all other languages. What is the css code you’re using? Please paste it here.
Regards,
Ismael
Hi,
How did you add the video? Can you give us a link to the website? It doesn’t auto play on my end even if I set autoplay=1.
Regards,
Ismael
Hi,
You can add this to remove the meta info for single post view.
.single .post-meta-infos {
display: none;
}Add the code on custom.css or Quick CSS
Regards,
Ismael
Hi,
It is using the Lucida font. Please add this on your custom.css or quick CSS, just to make sure:
body p, body {
font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif;
}Regards,
Ismael
Hi,
You can submit a request here: https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Ismael
Hey,
Please add this on your custom.css or Quick CSS
.news-excerpt p {
text-align: justify;
}Regards,
Ismael
Hi,
Can you please give us a link to your website with the featured images still appearing?
Regards,
Ismael
Hi,
You’re referring to the sidebar and the content?
#main .container_wrap .container {
background: black;
color: white;
}
.sidebar {
background: white;
color: black;
}Add the code on your custom.css or Quick CSS.
Regards,
Ismael
Hi,
I modified the code above. Let me tag the rest of the support team. The code works on my end, I’m not sure why it doesn’t work on yours.
Regards,
Ismael
Hi,
Please watch this video on how to update or upload the theme using FTP: https://vimeo.com/channels/aviathemes/64927356
For security, create a backup of your old theme files and your database before updating.
Regards,
Ismael
-
AuthorPosts