Forum Replies Created

Viewing 30 posts - 63,121 through 63,150 (of 64,775 total)
  • Author
    Posts
  • in reply to: Adding images to table #130232

    Hi,

    You can add a request here: https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Ismael

    in reply to: Photo buttons don't appear for first time visitors #131072

    Hi,

    Are you talking about the Big Green Tokyo Image? It loads fine on my end. Maybe, a slow internet connection?

    Regards,

    Ismael

    in reply to: Flat Button Rollover #131280

    Hi,

    Edit functions.php, add this code:

    add_theme_support('avia_template_builder_custom_css');

    This will allow you to add unique css selector for each avia elements.

    Go to the Advance Layout Editor, insert a button then add a unique css selector “orange-button” for example.

    Edit custom.css or Quick CSS, add this code:

    .orange-button a {
    background-image: none !important;
    background-color: #cc3300 !important;
    border-color: #cc3300 !important;
    color: white !important;
    }

    .orange-button a:hover {
    background-image: none !important;
    background-color: white !important;
    border-color: white !important;
    color: #242424 !important;
    }

    Regards,

    Ismael

    in reply to: no header and no blank space on landing page #131266

    Hey,

    Glad you figured it out. :)

    To learn more about the theme, you can watch videos here: https://vimeo.com/channels/aviathemes

    Cheers,

    Ismael

    in reply to: Hide Bullet in Widget Title #131035

    Hey,

    Glad you figured it out. :)

    Cheers,

    Ismael

    in reply to: stop videos from overlapping header #131150

    Hi,

    Can you give us a link to the website? What is the previous thread url?

    Regards,

    Ismael

    in reply to: Easy slider not working properly #131142

    Hi,

    Edit config-templatebuilder > aviashortcodes > slideshow.php, find this code on line 503:

    $html .= 	"<a href='#prev' class='prev-slide' >".__('Previous','avia_framework' )."</a>";
    $html .= "<a href='#next' class='next-slide' >".__('Next','avia_framework' )."</a>";

    Replace it with:

    $html .= 	"<a href='#' class='prev-slide' >".__('Previous','avia_framework' )."</a>";
    $html .= "<a href='#' class='next-slide' >".__('Next','avia_framework' )."</a>";

    Regards,

    Ismael

    in reply to: Adding images to table #130230

    Hi,

    First, switch the Advance Layout Editor to debug mode.

    Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add the code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You’ll be able to see the actual shortcode below the Advance Layout Editor. Paste the code above on the shortcode field.

    Regards,

    Ismael

    in reply to: Featured Image works on every page except my "Frontpage" #130571

    Hi,

    I updated the page and the main post slider started showing the images again. I configure the Offset Number to 1, I think the issue is about the post slider pulling posts from the same categories. I’m not sure about this but it seems that the problem is solve.

    Check the page: http://up-shift.net/upshifttest/

    Regards,

    Ismael

    in reply to: left Side bar excess free space #126666

    Hi,

    You can try 1024. The Layers Container option will constrain all elements inside a specific width and the slider will create a centered inner area to place your content into that.

    Regards,

    Ismael

    in reply to: Slider only slides twice #129868

    Hi,

    Can you please recreate the Easy Slider from scratch? I can easily add 3 or more images on the Easy Slider on my end without it stopping or causing issues.

    Please increase the wordpress php memory limit:

    http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,

    Ismael

    in reply to: Custom Google Font #131097

    Hi,

    Open includes > admin >register-portfolio-options.php, find this code:

    Tangerine'=>'Tangerine',
    'Terminal Dosis'=>'Terminal Dosis',
    'Tenor Sans'=>'Tenor Sans',

    'Varela Round'=>'Varela Round',

    'Yellowtail'=>'Yellowtail',

    Add this code below:

    'Maven Pro'=>'Maven Pro',

    You can now use the font on your custom.css or Quick CSS

    /*default*/
    h1, h2, h3, h4, h5, h6 {
    font-family: 'Maven Pro', sans-serif;
    font-weight: 600; }

    Regards,

    Ismael

    in reply to: Image Sizes for Portfolio Previews #130797

    Hi,

    You can see all image thumbnail size on functions.php

    /*
    * Register additional image thumbnail sizes
    * Those thumbnails are generated on image upload!
    *
    * If the size of an array was changed after an image was uploaded you either need to re-upload the image
    * or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
    */

    $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
    }

    The one use for the portfolio featured image is this:

    $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

    Regards,

    Ismael

    in reply to: Page Flashes Background – when selecting Navigation #129375

    Hi,

    Please add this on your custom.css or Quick cSS

    html {
    background: white !important;
    }

    Neat website. :)

    Regards,

    Ismael

    in reply to: Easy 2 questions #131110

    Hi,

    I’m afraid you have to redo the site from scratch since Enfold is a far different theme than Propulsion. So much has change on the templates and the actual framework.

    You can find tutorial videos about Enfold here: https://vimeo.com/channels/aviathemes

    Regards,

    Ismael

    in reply to: REWARD: for sidebar top on mobile screens #130979

    Hey,

    Glad the solution worked. The template-builder is a bit tricky. Please try this:

    Edit template-builder.php, remove everything then paste this code: http://pastebin.com/QDsWKWPP

    Regards,

    Ismael

    Hi,

    Please switch your Advance Layout Editor to debug mode. 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’ll be able to see the actual shortcode below the Advance Layout Editor. Please increase the php memory limit to 128M or higher.

    Edit wp-config.php, add this code

    define('WP_MEMORY_LIMIT', '128M');

    Regards,

    Ismael

    Hi,

    Please send the login details on ///.

    Include the word “Kriesi” on the subject. Add the link of this thread on your email.

    Regards,
    Ismael

    in reply to: Ipad portrait view – overlapping logo and promo box #129076

    Hi,

    I visited the website, looks like you manage to use Media Queries to adjust the menus.

    Regards,

    Ismael

    in reply to: Photo buttons don't appear for first time visitors #131070

    Hi,

    Can you give us a link to the website? No, it is not a known issue. How did you add the button?

    Regards,

    Ismael

    in reply to: Need Help Installing The Download #131056

    Hi,

    You can find the videos here: https://vimeo.com/channels/aviathemes

    Regards,

    Ismael

    Hi,

    Have you tried using the Enfold > Styling > Use stretched or boxed layout? > Boxed Layout? I think it will solve all your problem. The layer slider width is too big, I don’t understand why you need 5000px on the slider.

    Regards,

    Ismael

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    in reply to: installing a slider, one day…i hope #130817

    Hey,

    Upgrade to Enfold 1.8.2.

    Did you add any plugins prior to this issue? Please deactivate them, see if the slider works.

    Increase your php memory limit to 128M or higher. Make sure you’re using wordpress version 3.5 up.

    Edit wp-config.php, add this code:

    define(‘WP_MEMORY_LIMIT’, ‘128M’);

    Regards,

    Ismael

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: left Side bar excess free space #126664

    Hi,

    You can specify the Layers Container width on LayerSlider WP > Slides > Global Settings > Basic > Layers Container. Specify the width (px).

    (px) This feature is useful if you are using a full-width slider and you want to avoid stretching your layers across the full viewport horizontally. Just specify a custom width in pixels, and the slider will create a centered inner area to place your content into that. Note that this feature is working only with pixel-positioned layers, but you can still use the value '50%' if you want centered positions.

    Regards,

    Ismael

    in reply to: Update Enfold Main theme with Child #130997

    Hi,

    Sorry for that. You should leave the theme version number or you’ll lose the theme settings configuration. We’ll update it for you.

    Regards,

    Ismael

    in reply to: Modify Size of Checkbox on Form #130996

    Hi,

    Please add this on your custom.css or Quick CSS

    #prayerengine_notifyme {
    min-width: 13px;
    min-height: 13px;
    }

    Can you give us a screenshot of what you see on IE?

    Regards,

    Ismael

    in reply to: youtube play button not visible in slider #130545

    Hi,

    You can add this on your custom.css or Quick CSS

    .ls-playvideo {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Newbie looking for a little help… pt2 #127907

    Hi,

    I visited your site ht tp://flop side.tech core.com.au/~jbolger/word press/, the menu looks ok. I tested it on this site and the you can see that the menu looks fine. http://responsinator.com/?url=http%3A%2F%2Fflopside.techcore.com.au%2F~jbolger%2Fwordpress%2F

    Regards,

    Ismael

Viewing 30 posts - 63,121 through 63,150 (of 64,775 total)