Forum Replies Created

Viewing 30 posts - 64,231 through 64,260 (of 66,696 total)
  • Author
    Posts
  • in reply to: Enfold is the only theme that doesn't work ! #134622

    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 WordPress

    Let 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

    in reply to: Change Navigation Text #136919

    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

    in reply to: Error in the option: Transition LayerSlider Builder #135724

    Hey,

    No, you will not lose the slider effects because they are saved on your database.

    Regards,

    Ismael

    in reply to: Embed Progress Bars to Advanced Layer Slider #136994

    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

    in reply to: Header image #137004

    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

    in reply to: Modules after Layerslider are broken #136991

    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

    Hi,

    Go to Enfold > Theme Options > Favicon. Upload your own image.

    Regards,

    Ismael

    in reply to: Home Page Does not Update or Publish #136760

    Hi,

    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

    in reply to: Enfold is the only theme that doesn't work ! #134620

    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

    in reply to: Featured image dimension #136876

    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

    in reply to: Gallery image re-order #135556

    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

    in reply to: Twitter widget pro css #136450

    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

    in reply to: Mega Menu Overload? #136664

    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 = 5000

    You can also manually add this on your .htaccess file:

    php_value suhosin.post.max_vars 2048
    php_value suhosin.request.max_vars 2048

    Regards,

    Ismael

    in reply to: Saving didnt work! Please reload the page and try again #136517

    Hi,

    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

    in reply to: Form Working Problem #127332

    Hey,

    Glad it is working now. :)

    Cheers,

    Ismael

    in reply to: Add custom font #136804

    Hey,

    If you have your own you can try this plugin: http://wordpress.org/plugins/font-uploader/

    Regards,

    Ismael

    in reply to: Portfolio slider #136801

    Hey,

    Configure the Post Slider, under “Which Entries?” select Portfolio Entries.

    Cheers,

    Ismael

    in reply to: Can I add additional content to the header? #136790

    Hey,

    Yes but you need to manually edit header.php.

    Regards,

    Ismael

    in reply to: Blog Pagination Not working in Grid view #135262

    Hey,

    Please upgrade to Enfold 2.0.1. It will fix the post meta infos. :)

    Cheers,

    Ismael

    in reply to: Shortcode doesn't render in promobox #135695

    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

    in reply to: Shortcode doesn't render in promobox #135694

    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

    in reply to: Fullscreen Slider Tweaks #136468

    Hey,

    You can check it now. You forgot to change the name of the slider “full_slider_1′ to “fullscreen_slider_0”.

    Cheers,

    Ismael

    in reply to: Blog page -> not really nice without sidebar #136584

    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

    in reply to: Mega Menu resizing #132975

    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

    Hi,

    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

    in reply to: Video porfolios stopped working #136628

    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

    in reply to: Pictures in table #136307

    Hey,

    Just add this on your custom.css or Quick CSS:

    .main_color .avia-data-table .avia-highlight-col {
    vertical-align: middle;
    }

    Regards,

    Ismael

    in reply to: search bar RTL #136177

    Hey,

    You can use this:

    #top .header_color #s[placeholder] {
    text-align: right;
    clear: left;
    }

    Regards,

    Ismael

    in reply to: Enfold: Page Title Changes Do Not Flow to Menu #136866

    Hey,

    I’m sorry but I don’t understand the question clearly. What did you change and how did you change it?

    Regards,

    Ismael

    in reply to: Enfold: Font & Bullet Issues in Icon List Text #136853

    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

Viewing 30 posts - 64,231 through 64,260 (of 66,696 total)