Forum Replies Created
-
AuthorPosts
-
Hi,
You can decrease the font size and the padding of the menus before they switch to slide or dropdown. Add this on your custom.css or Quick CSS
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .main_menu ul:first-child>li>a {
padding: 0 7px;
font-size: 11px;
}
}Regards,
Ismael
Hi,
Forums don’t support the Advance Layout Editor. You can add this feature by hacking the theme files but we won’t provide support for this customization (i.e. we won’t answer questions like element xy doesn’t work with blg posts, etc.). If you want to add the builder to post pages open up wp-contentthemesenfoldconfig-templatebuilderavia-template-builderconfigmeta.php and replace:
array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
Replace the code with this
array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page','post','forum'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
As stated above, we won’t give support for modifications.
Regards,
Ismael
Hi,
1.) Did you use the Portfolio Grid? There is the “Link Handling” option where you can select to “Open an entry on a new page”. This will disable the AJAX portfolio and clicking on the images will open the actual portfolio item page.
Regards,
Ismael
Hi,
First, upgrade to Enfold 1.8.1. Do you have any plugins that may cause the issue? Try to deactivate them first, see if the Styling works. You can also add css modifications on your custom.css.
Regards,
Ismael
Hi,
On the youtube settings, you can upload a custom thumbnail. Please upload a thumbnail with the play button.
This is the current youtube thumbnails: http://img.youtube.com/vi/U36XJaETbh8/maxresdefault.jpg
Regards,
Ismael
Hi,
Do you mean padding? Did you try to put them inside a column layout?
Please check the text block again, see if you have accidentally enter a line break somewhere.
Regards,
Ismael
July 20, 2013 at 10:50 am in reply to: Dropdown navigation suddenly became huge and spreads across the page #130532Hi,
Please give us a link to the website. You should probably upgrade to Enfold 1.8.1, backup your theme files and database.
Did you add a new plugin prior to this issue?
Regards,
Ismael
Hi,
Do you mean the iconbox icons? You can use this on your custom.css or Quick SSS
.iconbox_icon.heading-color.avia-font-entypo-fontello {
color: #336699;
}Regards,
Ismael
July 20, 2013 at 10:45 am in reply to: How adding social buttons in the header ? (the return) #130528Hi,
We only said that Kriesi is working on it and we can’t be sure when. For the meantime, you can refer to this link.
https://kriesi.at/support/topic/youtube-icon
Regards,
Ismael
Hi,
Looks like the issue has been fixed here: https://kriesi.at/support/topic/javascript-broken-on-post-edit-page
Regards,
Ismael
July 20, 2013 at 6:41 am in reply to: HOW TO – See Tags like in Twitter Post & Before FB Plugin #129802Hi,
You can create your own change log to monitor theme files that you modified.
Regards,
Ismael
July 20, 2013 at 6:35 am in reply to: YouTube related videos, responsive heading titles and saving theme settings #129050Hi,
You can request to add the function here:
https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Ismael
July 20, 2013 at 6:32 am in reply to: Featured Image works on every page except my "Frontpage" #130566Hi,
First,upgrade to Enfold 1.8.1. See if it fixes the issues.
Increase the wp php memory limit to 128M or higher. Edit wp-config.php, add this code:
define('WP_MEMORY_LIMIT', '128M');
If you have .htaccess file, add this code:
php_value memory_limit 128M
Regards,
Ismael
Hi,
Open functions-enfold.php, find this code
//now we got everything we need to preapre the output
foreach($sorted as $key => $post_type)
{
if(isset($post_type_obj[$key]->labels->name))
{
$output .= "<h4>".$post_type_obj[$key]->labels->name."</h4>";
}
else
{
$output .= "<hr />";
}Replace it with:
//now we got everything we need to preapre the output
foreach($sorted as $key => $post_type)
{
if(isset($post_type_obj[post]->labels->name))
{
$output .= "<h4>Articles</h4>";
}
elseif(isset($post_type_obj[page]->labels->name))
{
$output .= "<h4>Pages</h4>";
}
elseif(isset($post_type_obj[$key]->labels->name))
{
$output .= "<h4>".$post_type_obj[$key]->labels->name."</h4>";
}Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
#top.avia-blank #main {
display: block;
}Regards,
Ismael
Hi,
You can adjust the padding and the font-size of the menu on screen widths just before they switch to mobile or slide menu. Use Media Queries on your custom.css or Quick CSS
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .main_menu ul:first-child>li>a {
padding: 0 7px;
font-size: 11px;
}
}Regards,
Ismael
Hi,
First, upgrade to Enfold 1.8. Create a test page, add a Text Block for example. Edit the element, you’ll see a custom css field below. You can add a unique css selector for that specific element.
Regards,
Ismael
Hi,
1.) Re-install the woocommerce plugin, please use the latest version.
2.) Adding your own social icons is a bit complicated right now. Please refer to this link: https://kriesi.at/support/topic/youtube-icon
Regards,
Ismael
July 20, 2013 at 5:03 am in reply to: Remove Feature Image From Post (Devin's) Code Not working #130073Hi,
If you only want to remove it from single post view. You can use this:
.single .big-preview.multi-big, .single .small-preview {
display: none;
}Regards,
Ismael
Hi,
I visited the site on Chrome: http://www.aqb.com/quickbooks-enterprise/
It loads approximately in less than 10 secs.
There are several things you can do to speed up page loads.
1.) Use CDN.
2.) Use caching plugin like WT3 Total Cache or WP Super Cache.
3.) Use minify plugins like bwp-minify.
4.) Optimize image sizes.
5.) Upgrade domain host.
Regards,
Ismael
July 20, 2013 at 4:58 am in reply to: How to remove theme credit to Kriesi at bottom of footer #130607Hey,
@wacky: Thanks for the tip.
@skosmer: Go to Enfold > Footer > Copyright > Insert [nolink].
You can also edit the footer.php manually, find this code
$kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://kriesi.at'>Enfold Theme by Kriesi</a>");
Regards,
Ismael
July 20, 2013 at 4:53 am in reply to: How do you shorten the length between the header and the content? #130603Hi,
You can decrease the top padding of the main div.
.fixed_header.social_header #main {
padding-top: 110px;
}Regards,
Ismael
July 20, 2013 at 4:51 am in reply to: margin or padding for all contents including the header, title, and sliders #129368Hi,
Please send the login details to ///.
Include “Kriesi” on the subject. Add the url of this thread on your email.
You can use the Custom Menu widget for the additional navigation on the sidebar.
Regards,
IsmaelJuly 20, 2013 at 4:41 am in reply to: Submit button displaying facebook connect image on rollover #130132Hi,
Just add this on your custom.css or Quick CSS
.button.gform_button:hover {
background: none;
}Regards,
Ismael
-
AuthorPosts