Forum Replies Created
-
AuthorPosts
-
Hi Karolina,
Can you create an administrator account and send me it to avia.josue (at) gmail.com so i can check it personally?
Regards,
Josue
Hi,
Be sure you are using the latest version of Enfold, i just tested locally and it works fine.
Regards,
Josue
September 2, 2013 at 5:44 pm in reply to: Product images not showing up on single product page #138874Hi,
Can you post a link to your website please?
Regards,
Josue
Hi,
Can you post a link to your website please?
Regards,
Josue
September 2, 2013 at 5:31 pm in reply to: Force HD playback of YouTube video in a portfolio item #138846Hi Carl,
It’s not Enfold who strips the parameters but WordPress, try adding the Youtube embed code manually (change to text tab), and simply paste this (replace the youtube URL):
<div><div><iframe width="1500" height="844" src="https://www.youtube.com/embed/G0k3kHtyoqc?feature=oembed&wmode=opaque&autoplay=1&vq=hd720" frameborder="0" allowfullscreen=""></iframe></div></div>
Regards,
Josue
Hi Aaron,
We can’t do much with server related issues, do you have access to your logs? have you tried contacting your hosting support? are there other pages in the same server working?
Regards,
Josue
Hi Evan,
Be sure you are using the latest version of Enfold, then open this file: /wp-content/themes/enfold/functions.php
The settings you want to change starts in line 78:
$avia_config = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
$avia_config = array('width'=>180, 'height'=>180); // small image for blogs
$avia_config = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider
$avia_config = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider
$avia_config = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
$avia_config = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
$avia_config = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)
$avia_config = array('width'=>710, 'height'=>270); // big images for blog and page entries
$avia_config= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
Regards,
Josue
Hi,
Can you post a link to your website please?
Regards,
Josue
Hi,
You can always add a custom class to certain images:
And then you just need to target it with CSS:
.withBorder{ border: 1px solid gray; }
Regards,
Josue
Hi,
It means the assets used in the theme are retina ready, the content is up to you, i’d personally recommend the plugin just mentioned.
Regards,
Josue
Hi Sebastian,
To center the megamenu, try adding this:
#header .avia_mega_div{
left: -300px;
}
Regards,
Josue
Hi Steve,
Try adding this code to your CSS:
#top .main_menu .menu li ul a{
padding: 5px 15px;
}
That will change the top and bottom padding to 5px (from 10px), you can change that value to the desired value.
Regards,
Josue
Hi Sebastian,
This is the selector you need to change:
#top .header_color .main_menu .menu ul li>a:hover{
color: black;
}
Regards,
Josue
August 31, 2013 at 11:36 pm in reply to: How to change font size in non-English version menu? #138527Hi,
Can you post the link to your website please?
Regards,
Josue
Hi Tom,
I guess you want to disable the hover effect on certain images, if so you will simply need to add the “noLightbox” class to the hyperlink and the overlay won’t appear, example:
<a href="http://www.google.com" class="noLightbox">...</a>
Regards,
Josue
Hi,
Be sure you are in the Text tab when adding code to the post content:
Regards,
Josue
Hi Tal,
Try to use equal sized images in each post, also try defining the excerpt manually, if you don’t see the excerpt box please activate it.
Regards,
Josue
Hi,
You can always change the color using the WYSIWYG editor:
Regards,
Josue
Hi Tom,
That’s kinda weird, here’s is a quick fix:
@media only screen and (min-width: 1140px){
.avia-testimonial-wrapper{
width: 1030px;
}
}
Regards,
Josue
Hi,
I guess you mean the page title, the default structure is:
Site name | Site description (Front page)
Site name | Post title (Single page)
However, if you want to make a deeper customization i’d recommend using a plugin like this one.
Regards,
Josue
August 31, 2013 at 9:55 pm in reply to: How to remove the bar beneath the main menu on non-English version site. #138307Hi,
Can you post the link to your website please?
Regards,
Josue
Hi,
Have you tried defining a manual excerpt? if you don’t see the excerpt box please activate it.
Regards,
Josue
Hi,
Can you post the link to your website please?
Regards,
Josue
Hi,
The problem is that the ‘post slider’ element deletes all the inner shortcodes found in the post content, however i found a solution, you will need to edit this file: /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider.php:
Replace the 280 line:
$prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, '');
with this:
$prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : do_shortcode(avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 160) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", false, ''));
Regards,
Josue
August 31, 2013 at 5:54 pm in reply to: Adding menu items under Appearance: menus – Not working #138314Hi,
That would probably be a server-side limitation, not theme related.
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Regards,
Josue
August 31, 2013 at 5:48 pm in reply to: Can you remove tooltips from galleries only and not globally #138553Hi,
You can always apply CSS only to a specific page, example:
.page-id-22 .avia-tooltip.avia-tt { display: none !important; opacity: 0 !important; }
Regards,
Josue
Hi,
I don’t see the search widget, however if you want to reduce the sidebar padding, this CSS code will do it (change 20px for the desired amount):
.sidebar{ padding-top: 20px; padding-bottom: 20px }
.inner_sidebar{ margin-left: 20px }
Regards,
Josue
Hi,
Try adding this code to the Quick CSS area in the Theme options page:
.page-id-112 p { color: white; }
Regards,
Josue
-
AuthorPosts