Forum Replies Created

Viewing 30 posts - 61,681 through 61,710 (of 66,027 total)
  • Author
    Posts
  • in reply to: Custom sub-menu visible over search bar #188202

    Hi TheProductionHouseEvents!

    How did you move the submenu at the bottom? You need to add a z-index on header_main that is higher than the z-index of #header_meta.

    #header_main {
    z-index: 21;
    }

    The problem is it will cover up the sub-menu. Please post the code you use to move the submenu below.

    Best regards,
    Ismael

    Hi!

    Glad it is working now. :)

    Best regards,
    Ismael

    in reply to: photoswipe lightbox #188195

    Hey!

    Glad Peter provided a child theme. I won’t be able to check it on an IOS mobile device. Let’s wait for Yigit and Devin’s response. Anyway, the lightbox plugin works well on a desktop.

    Best regards,
    Ismael

    • This reply was modified 11 years, 7 months ago by Ismael.
    in reply to: multiple custom fonts #188193

    Hey!

    Please add this on your functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Indie Flower'] = 'Indie Flower';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Indie Flower'] = 'Indie Flower';
    return $fonts;
    }

    There are lots of h1 elements on the theme. You can apply the font on your Quick CSS or custom.css:

    h1 {
    font-family: 'Indie Flower', cursive !important;
    }

    Regards,
    Ismael

    in reply to: Open button link in lightbox #188191

    Hey!

    You can add something like this on a text block element, switch to HTML or Text editor:

    <a href="https://kriesi.at/support/topic/open-button-link-in-lightbox?iframe=true&width=100%&height=100%" rel="prettyPhoto[iframes]" title="Kriesi Rocks">Click Here</a>

    I used the url of this topic then added the “?iframe=true&width=100%&height=100%” parameter after. Please try it.

    Best regards,
    Ismael

    in reply to: Enfold remove menu underline #188187

    Hi sacden!

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

    .avia-menu-fx {
    display: none !important;
    opacity: 0;
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: How to remove layerslider plugin when using child theme #188186

    Hi!

    Yes, place it on the child theme’s functions.php.

    Cheers!
    Ismael

    Hey gentlemansgazette!

    You can actually add a sidebar below the masonry element without any problem. Can you please post a link to the website with the issue? There is a workaround if you want. Edit a page then look for Layout > Sidebar > select “No Sidebar”. Go to Advance Layout Builder then insert a slider. Below, insert a 2/3 and 1/3 column layout. Add the Widget Area element on the 1/3 column layout and add content elements on the 2/3 column.

    Cheers!
    Ismael

    in reply to: How can I change the default sidebar menu content? #188183

    Hi emaniocreative!

    Go to Appearance > Widgets then create a widget area on “Enfold Custom Widget Area”. Call it “Contact Sidebar”, add the widgets that you want. Edit the Contact page then look for Layout > Sidebar Setting > select the “Contact Sidebar” widget area.

    Best regards,
    Ismael

    Hi RDCSI!

    You can change the hover color of the search icon using this:

    .header_color .main_menu ul:first-child > li:last-child a:hover {
    color: red;
    }

    Go to Appearance > Menus then click “Screen Options”. Enable the CSS Classes. Add a css selector on a menu item that you want to change to donate button. Example, add “donate-button” as the css class. Go to Enfold > Styling > Quick CSS then add this code:

    #top .main_menu .menu li.donate-button a {
    background: red;
    height: 30px !important;
    display: block;
    line-height: 30px !important;
    position: relative;
    top: 28px;
    }

    Best regards,
    Ismael

    in reply to: Error in the first install. #188175

    Hi CloudChoice!

    Looks like the server can’t start a session. Please contact your host and ask them to check the server configuration. Make sure that the data session folder is writable & ask them if it exist. Download the Enfold theme again on your themeforest account, just to make sure no files are corrupt and all of it is working properly.

    Cheers!
    Ismael

    in reply to: Contact Form Not Working #188174

    Hi eastmanbrent!

    Please try to use plugins like this: http://wordpress.org/plugins/easy-wp-smtp/

    Best regards,
    Ismael

    in reply to: blog grid images are very out of proportion in IE 8 only #188172

    Hey zzalienzz!

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

    .avia-content-slider .slide-image img {
    height: auto;
    max-height: 230px;
    }

    Regards,
    Ismael

    in reply to: Blog Comments #188171

    Hi!

    If you want to delete the comment template on posts, you can edit single.php and find this code:

     //wordpress function that loads the comments template "comments.php"
                            comments_template( '/includes/comments.php');

    Replace it with:

     //wordpress function that loads the comments template "comments.php"
                            //comments_template( '/includes/comments.php');

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Control Order of Portfolio Categories? #188170

    Hey!

    I’m not sure if that is possible. Have you tried the “ID” parameter? You need to create the categories according to the order that you want. Click on Portfolio Item > Portfolio Categories then create the categories again. You’ll see the “ID” if you edit the category then look for the URL, it looks like this: http://localhost/kriesi/enfold/wp-admin/edit-tags.php?action=edit&taxonomy=portfolio_entries&tag_ID=22&post_type=portfolio

    The ‘ID’ of the category on the example above is “22”.

    Cheers!
    Ismael

    in reply to: Gallery in Enfold layout builder #187687

    Hi petersandin!

    Edit js > shortcodes.js, find this code:

    //trigger displaying of thumbnails
    gallery.on('avia_start_animation', function()
    {
    images.each(function(i)
    {
    var image = $(this);
    setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
    });
    });

    Replace it with:

    //trigger displaying of thumbnails
    gallery.on('avia_start_animation', function()
    {
    images.each(function(i)
    {
    var image = $(this);
    setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
    });
    }).trigger('avia_start_animation');

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Categories trouble #187682

    Hi!

    That is exactly what you need. Please try to specify an excerpt on the Excerpt box then visit the category page. You can also use the <!–more–> tag.

    Regards,
    Ismael

    in reply to: Table colour change #187676

    Hey Otakar!

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

    .main_color .pricing-table li.avia-pricing-row {
        background-color:red;
    }

    Remove browser cache then reload the page. http://css-tricks.com/ is a nice website to learn css tricks.

    Cheers!
    Ismael

    Hey PeterPan2!

    I don’t have an IOS device to check this with but as far as I know it should work on iPhone and iPad. Let’s wait for Devin’s response. I tested it on a laptop with a touch screen and it works properly.

    Regards,
    Ismael

    in reply to: woocommerce "basket" sign disappear #187673

    Hey PeterPan2!

    It should appear on all pages once you click the “Add to cart” button. It loads a little while on pages with sliders.

    Cheers!
    Ismael

    in reply to: Google Fonts Disappeared #187618

    Hi!

    You forget to close it. Glad it is working now. :)

    Cheers!
    Ismael

    in reply to: remove image default styling for hard coded linked images #187617

    Hey!

    You can add this on your custom.css or Quick CSS to remove the image overlay:

    .image-overlay.overlay-type-extern {
    display: none !important;
    }

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Changing Main Content to Transparent #187616

    Hi TheodoraPhotography!

    Can you please post a screenshot of what you’re trying to do? A link to your website will help. Maybe, you can try this on your custom.css or Quick CSS:

    #main, .html_stretched #wrap_all {
    background-color: transparent;
    }
    
    .alternate_color, .alternate_color .site-background, .alternate_color .first-quote, .alternate_color .related_image_wrap, .alternate_color .gravatar img .alternate_color .hr_content, .alternate_color .news-thumb, .alternate_color .post-format-icon, .alternate_color .ajax_controlls a, .alternate_color .tweet-text.avatar_no, .alternate_color .big-preview, .alternate_color .toggler, .alternate_color .toggler.activeTitle:hover, .alternate_color #js_sort_items, .alternate_color.inner-entry, .alternate_color .grid-entry-title, .alternate_color .related-format-icon, .grid-entry .alternate_color .avia-arrow, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery img, .alternate_color .grid-content {
    background-color: transparent;
    color: #666666;
    }
    
    .main_color, .main_color .site-background, .main_color .first-quote, .main_color .related_image_wrap, .main_color .gravatar img .main_color .hr_content, .main_color .news-thumb, .main_color .post-format-icon, .main_color .ajax_controlls a, .main_color .tweet-text.avatar_no, .main_color .big-preview, .main_color .toggler, .main_color .toggler.activeTitle:hover, .main_color #js_sort_items, .main_color.inner-entry, .main_color .grid-entry-title, .main_color .related-format-icon, .grid-entry .main_color .avia-arrow, .main_color .avia-gallery-big, .main_color .avia-gallery-big, .main_color .avia-gallery img, .main_color .grid-content {
    background-color: transparent;
    color: #666666;
    }

    Cheers!
    Ismael

    in reply to: Control Order of Portfolio Categories? #187615

    Hi Brad!

    Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 410:

    //get all categories that are actually listed on the page
    			$categories = get_categories(array(
    				'taxonomy'	=> $params['taxonomy'],
    				'hide_empty'=> 0
    			));

    Replace it with:

    //get all categories that are actually listed on the page
    			$categories = get_categories(array(
    				'taxonomy'	=> $params['taxonomy'],
    				'hide_empty'=> 0,
    				'orderby' => 'name',
    				'order' => 'DESC'
    			));

    Remove browser cache then reload the page. Refer to this link for more order parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters

    Cheers!
    Ismael

    in reply to: How to easily copy styles from one language to another? #187614

    Hi!

    Change the settings on the Theme Styling then edit http://**removed**/wp-content/uploads/dynamic_avia/enfold.css. Copy everything, place it on your custom.css which is located in http://**removed**/wp-content/themes/enfold/css/ folder. You need to do this every time you change something on Enfold > Styling settings.

    Cheers!
    Ismael

    • This reply was modified 11 years, 7 months ago by Yigit. Reason: Removed links upon request
    in reply to: Linking Portfolio items to pages or post #187613

    Hey RDCSI!

    You can use the “Overwrite Portfolio Link setting”. Switch it to “Define custom link”. You need to add the post or page url manually.

    Cheers!
    Ismael

    in reply to: Install Enfold #187612

    Hi Mario!

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

    Regards,
    Ismael

    in reply to: Editing the code of avia builded pages #187611

    Hi heufti65!

    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]

    Note that you can’t use the Default Editor and the Advance Layout Builder simultaneously.

    Best regards,
    Ismael

    Hey Helgi!

    No, that is not possible. It will break the responsiveness of the theme. Can you please give us a link to the website?

    Cheers!
    Ismael

    in reply to: iconbox link #187609

    Hey erantdo!

    What are you trying to do? What is the position of your icon? Is it top or left?

    Regards,
    Ismael

Viewing 30 posts - 61,681 through 61,710 (of 66,027 total)