Forum Replies Created
-
AuthorPosts
-
Hey,
Please remove this line of code on .htaccess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /kriesi/enfold/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /kriesi/enfold/index.php [L]
</IfModule>
# END WordPressLet me tag Kriesi and the rest of the support team. I’m really not sure why this is just happening on your end.
Regards,
Ismael
Hey,
You can modify this code on your custom.css or Quick CSS:
.main_menu ul:first-child > li > a {
display: block;
text-decoration: none;
padding: 0 13px;
font-weight: normal;
font-weight: 600;
font-size: 15px;
}You can change the color of the menu, using this:
.header_color .main_menu ul:first-child > li > a {
color: red;
}Hover state with this:
.header_color .main_menu ul:first-child > li a:hover
color: blue;
}Can you please specify which headings?
You can change the overall font on Enfold > Styling > Defines the Font for your body text.
Regards,
Ismael
Hey,
No, you will not lose the slider effects because they are saved on your database.
Regards,
Ismael
Hi,
You forgot to enclose them on a unique div like this:
<div class="layerslider-progressbar"></div>Place the progress bar html code inside the div then add this on your custom.css:
.layerslider-progressbar {
width: 600px;
height: 50px;
}Like what I said on the other thread, we specify the width of the layerslider-progressbar div because the progress bar needs to inherit the size the parent element.
Regards,
Ismael
Hey,
Yes, that is possible. Go to Enfold > Styling > scroll a bit below then click Header > Background Image. You can select a predefined background images or upload your own.
Regards,
Ismael
Hey,
Can you please give us a link to the website? What do you mean by module? Please upgrade to Enfold 2.0.1 and WordPress 3.6 to get the most out of the theme.
Regards,
Ismael
August 22, 2013 at 1:23 pm in reply to: Thanks for such a great theme :) but a quick question re favicon.ico #136984Hi,
Please deselect the Frontpage on Enfold > Theme Options. Create a new home page from scratch then select it again as your Frontpage.
Do you have any caching plugin?
Regards,
Ismael
Hi,
I uploaded Enfold and it’s still not working. Please add this on your .htaccess file.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /kriesi/enfold/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /kriesi/enfold/index.php [L]
</IfModule>
# END WordPress
########
php_value upload_max_filesize 50M
php_value post_max_size 50M
php_value max_execution_time 500
php_value max_input_time 500
#########Edit wp-config.php, add this code:
define('WP_MEMORY_LIMIT, '128M'');Please let me know if the following changes has been made. I will check the site again.
Regards,
Ismael
Hey,
1030x360px is enough for blog and portfolio items. If you are planning to use the Fullwidth Slider, you might want to use images with 1600x700px dimension. You can find the custom thumbnail sizes on functions.php:
$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']['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']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)
$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
}Regards,
Ismael
Hi,
If you switch the Avia Builder to debug mode, you will see the actual order of the image id on the gallery shortcode. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}You will see the actual shortcode below the builder. If you insert the “Gallery” element then added some images, the shortcode will look like this:
[av_gallery ids='2617,2618,2616,2619' style='thumbnails' preview_size='portfolio' thumb_size='portfolio' columns='5' imagelink='lightbox' lazyload='avia_lazyload']Notice that the ids of the images are listed. You can rearrange them manually. You can also re-order them on the wordpress gallery UI.
Regards,
Ismael
Hi,
I’m not sure if this is what you want but you can add the code on your custom.css or Quick CSS. You need to provide a twitter icon for the content property:
#top .widget_twitter li:before {
content: url('IMAGE URL HERE');
position: absolute;
left: 0px;
margin-top: 20px;
}
#top .widget_twitter li {
padding: 0 0 8px 55px;
margin: 0 0 8px 0;
border-bottom-style: solid;
border-bottom-width: 2px;
}Regards,
Ismael
Hey,
Please contact your host, ask them to set the limit to 5000 for the following PHP values:
suhosin.post.max_vars = 5000
suhosin.request.max_vars = 5000You can also manually add this on your .htaccess file:
php_value suhosin.post.max_vars 2048
php_value suhosin.request.max_vars 2048Regards,
Ismael
August 22, 2013 at 12:36 pm in reply to: Saving didnt work! Please reload the page and try again #136517Hi,
InstantWP is using WordPress 3.4.2. Please update the installation to WordPress 3.6. It is much better if you do the installation manually.
Regards,
Ismael
Hey,
If you have your own you can try this plugin: http://wordpress.org/plugins/font-uploader/
Regards,
Ismael
Hey,
Configure the Post Slider, under “Which Entries?” select Portfolio Entries.
Cheers,
Ismael
Hey,
Please upgrade to Enfold 2.0.1. It will fix the post meta infos. :)
Cheers,
Ismael
Hey,
Sorry my bad. It is not working when using the Promo Box. Please use the actual html generated by each shortcode. This is the code generated by a button shortcode for example:
<div class="avia-button-wrap avia-button-center avia-builder-el-1 avia-builder-el-no-sibling "><a href="" class="avia-button avia-icon_select-yes avia-color-theme-color avia-size-small avia-position-center "><span class="avia_button_icon avia-font-entypo-fontello">♥</span><span class="avia_iconbox_title">Click me</span></a></div>Regards,
Ismael
Hey,
Please switch your theme to debug mode. Edit function.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}You will be able to see the actual shortcode below the builder. Shortcodes can be combine then, like this example. A combination of Promobox shortcode plus the Button shortcode:
[av_promobox button='yes' label='Click me' link='single' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='large' icon_select='no' icon='25']
Welcome Stranger! This is an example Text for your fantastic Promo Box! Feel Free to delete it and replace it with your own fancy Message!
[av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
[/av_promobox]Regards,
Ismael
Hey,
You can check it now. You forgot to change the name of the slider “full_slider_1′ to “fullscreen_slider_0”.
Cheers,
Ismael
Hi,
Did you change anything on the theme files? I’m not sure why the #footer div is inside the the container. Can you please delete that page then recreate it from scratch?
Regards,
Ismael
Hey,
Can you give us a screenshot on what you are trying to accomplish? What do you mean by “when it’s activated”?
Regards,
Ismael
August 22, 2013 at 5:24 am in reply to: Enfold: Subpage Font Formatting Issue in Main Menu Pulldown #136825Hi,
Did you use a Mega Menu for this item? Please check it first, disable the mega menu if you accidentally enabled it on Appearance > Menus > About.
Then add this on your custom.css or Quick CSS:
#top #header .mega_menu_title a {
font-size: 11px;
line-height: 11px;
color: #808080;
}Regards,
Ismael
Hey,
Please upgrade to WordPress 3.6 and update the theme to Enfold 2.0.1. I hope that will fix the issues.
Regards,
Ismael
Hey,
Just add this on your custom.css or Quick CSS:
.main_color .avia-data-table .avia-highlight-col {
vertical-align: middle;
}Regards,
Ismael
Hey,
You can use this:
#top .header_color #s[placeholder] {
text-align: right;
clear: left;
}Regards,
Ismael
Hey,
I’m sorry but I don’t understand the question clearly. What did you change and how did you change it?
Regards,
Ismael
Hi,
1.) You can change the color of the text black font using this:
.avia_textblock p {
color: blue;
}or this:
.main_color p {
color: red;
}2.) Use this to show the bullets on list elements:
.avia-icon-list li {
margin: 0;
padding: 0 0 30px 0;
list-style-type: circle !important;
list-style-position: outside;
clear: both;
overflow: visible;
position: relative;
min-height: 60px;
}Regards,
Ismael
-
AuthorPosts
