Forum Replies Created

Viewing 30 posts - 62,401 through 62,430 (of 67,037 total)
  • Author
    Posts
  • in reply to: CSS needed #194680

    Hi!

    The promo box is responsive and it is full width when I checked the site. You can use this selector to change it:

    .av_promobox {
    position: relative;
    border-width: 1px;
    border-style: solid;
    overflow: hidden;
    padding: 20px 30px;
    clear: both;
    margin: 50px 0;
    width: 100%;
    float: left;
    padding: 15px 10px;
    }

    Cheers!
    Ismael

    in reply to: Totally break website BIG BUG : please help me. #194677

    Hey!

    1.) The HR uses this selector:

    .main_color div {
    border-color: #E1E1E1;
    }

    2.) Please remove the CSS:

    #top #wrap_all .avia-gallery-1 .avia-gallery-thumb a {
    width: 19% !important;
    }

    Cheers!
    Ismael

    in reply to: Sensei plugin looks horrible on my website #194668

    Hey!

    I’m not sure if Kriesi is planning to integrate the plugin. You can request it here: https://kriesi.at/support/topic/enfold-feature-requests/

    Cheers!
    Ismael

    in reply to: Increase Spacing Between Paragraphs in Blog Post #194654

    Hey!

    Can you please give us a link to your posts? Did you edit anything on the theme files?

    Regards,
    Ismael

    in reply to: Best way to have an horizontal image slider #194653

    Hi Jorge!

    You can use the Media Elements > Easy Slider.

    Best regards,
    Ismael

    in reply to: Is There a Way to Customise The Breadcrumbs? #194651

    Hey sgrobert!

    You can edit framework > php > class-breadcrumbs.php, find this codes on line 26:

    echo '<p class="breadcrumb"><span class="breadcrumb_info">'.__('You are here:','avia_framework').'</span> <a href="'.get_bloginfo('url').'">';

    and 186:

    'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',

    You can modify the breadcrumb text using this on Quick CSS:

    .title_container .breadcrumb {
    z-index: 10;
    line-height: 15px;
    font-size: 13px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
    }
    
    .alternate_color .breadcrumb {
    color : red;
    }

    Cheers!
    Ismael

    in reply to: Insert Default WordPress ShortCodes within Advanced Editor #194650

    Hi!

    You can use this plugin: http://wordpress.org/plugins/insert-php/

    This will enable you to insert php codes directly on the Text Editor. Instead of using “<?php CODE HERE ?>”, you need to use “[insert_php] CODE HERE [/insert_php]”.

    Cheers!
    Ismael

    Hi sgrobert!

    You can change the order of the portfolio using this on functions.php:

    function custom_post_grid_query( $query, $params ) {
    $query['orderby'] = 'rand';
    return $query;
    }
    add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);

    Best regards,
    Ismael

    in reply to: Russian localisation #194646

    Hey maximadz!

    You can use http://www.poedit.net/ to edit the strings and produce .mo file. I’m sorry but none of the support team member knows Russian as far as I know.

    Regards,
    Ismael

    in reply to: Datepicker and validation in Custom From #194642

    Hey!

    Sorry but you need to hire someone to modify it for you. Please visit http://werkpress.com/.

    Best regards,
    Ismael

    in reply to: Woocommerce cart empty when navigating as guest #194640

    Hi!

    Are you testing this on a browser that accepts cookies? I want to check the shop page but the woocommerce plugin is disabled. http://14.192.65.20/~mymakna/test/home-3/?page_id=2495

    Cheers!
    Ismael

    Hey!

    I can’t locate the Gallery. Can you please give us a link to the actual page with the gallery on it?

    Regards,
    Ismael

    in reply to: !URGENT! # in-page links on main menu not working #194637

    Hi!

    I checked the website using Chrome and the Solutions dropdown navigation works properly even when navigating from other pages. Please remove browser cache then reload the page. Please check it on another browser.

    Regards,
    Ismael

    in reply to: Product Page Images #194636

    Hey!

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

    .single-product .four.units.single-product-main-image.alpha {
    display: none;
    }
    
    .single-product .eight.units.single-product-summary {
    width: 100%;
    }

    You can manually add the featured image on the slider if you want.

    Cheers!
    Ismael

    in reply to: Change text in page header #194632

    Hi!

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

    #av_section_1 h2 {
    margin-top: 15px;
    }

    Regards,
    Ismael

    in reply to: Slideshow deactivate? #194631

    Hi!

    The changes has been applied. Please see the screenshot below:

    Cheers!
    Ismael

    in reply to: Totally break website BIG BUG : please help me. #194630

    Hey!

    As Devin said, you can’t use the Default Editor and the Advance Layout Editor at the same time. You need to choose which editor you want before you edit the page. On the other hand, you can switch the Advance Layout Builder to debug mode. This will render the actual shortcode below the Avia Builder. 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";
    }

    Regards,
    Ismael

    in reply to: Some questions #194313

    Hi!

    2.) Open class-breadcrumb.php again, find this code on line 26:

    echo '<p class="breadcrumb"><span class="breadcrumb_info">'.__('You are here:','avia_framework').'</span> <a href="'.get_bloginfo('url').'">';

    3.) Open loop-index.php again, find this code then change the Read More text:

    $current_post['content'] 	= $blog_content == "content" ? get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span>') : get_the_excerpt();
    	$current_post['content'] 	= $blog_content == "excerpt_read_more" ? $current_post['content'].'<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>' : $current_post['content'];

    Regards,
    Ismael

    in reply to: create an output (textfile) for contact form #194306

    Hi!

    You can hire someone to modify it for you. Please visit http://werkpress.com/. They do wordpress customizations. You can also try the plugins Josue suggested.

    Regards,
    Ismael

    in reply to: Gallery with thumbnails doesn't work properly #194304

    Hi!

    The Advance Layout Editor keeps on loading when I tried to edit the page. Did you change anything on the theme files? The gallery thumbnails looks fine on our end. I checked it on Firefox and Chrome and I see the same like Yigit’s screenshot.

    Best regards,
    Ismael

    in reply to: CSS needed #194301

    Hey!

    Can you please give us a link to the actual page?

    Best regards,
    Ismael

    in reply to: Pricing and data Tables #194298

    Hey!

    You can change the alternating background color using this:

    .main_color .pricing-table>li:nth-child(even), .main_color .pricing-table>li:nth-child(odd) {
    background-color: gray;
    }

    Regards,
    Ismael

    in reply to: Fixed Background issue in Enfold #194285

    Hi!

    You can set the max height of the full screen slider using this on your custom.css or Quick CSS:

    .avia-fullscreen-slider .avia-slideshow {
    max-height: 250px !important;
    }

    Regards,
    Ismael

    in reply to: Content width margin #194277

    Hey!

    I’m sorry but can you please post a screenshot of the issue? I’m not sure where it is. You can use imgur, dropbox etc to post the screenshot here.

    Best regards,
    Ismael

    in reply to: Hide Kriesi text in footer #194276

    Hey!

    @Perenso: Thanks for the tip. :)

    @Ricardo: You can do @Perenso’s suggestion or you can add this on your custom.css or Quick CSS:

    #socket .copyright {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Add script to head #194272

    Hey!

    What is the script or code that you added on the google analytics field? Note that the field is strictly for google analytics code. Please post the code on pastebin.com.

    Best regards,
    Ismael

    in reply to: Main menu text color #194269

    Hi!

    Please try to contact your host and ask them to increase the max_input_vars on php.ini. If you have access to the .htaccess file, please add this:

    php_value suhosin.post.max_vars 7000
    php_value suhosin.request.max_vars 7000

    Cheers!
    Ismael

    in reply to: Widgets settings seem to be not responsive #194268

    Hey!

    I think the script is broken, please post it on http://pastebin.com/.

    Regards,
    Ismael

    in reply to: How to move the comments section ? #194266

    Hey!

    Glad it worked. :)

    Cheers!
    Ismael

    in reply to: Fixed Background issue in Enfold #194262

    Hey!

    The Color Section is responsive. You can add a background image then set the Background Repeat to Stretch to fit to make it fullwidth. Set the Background Position to Fixed. It should resize according to screen sizes. If you don’t think that it is responsive enough, you can add an ID to the Color Section then use Media Queries to edit the style on different screen sizes.

    Regards,
    Ismael

Viewing 30 posts - 62,401 through 62,430 (of 67,037 total)