Forum Replies Created

Viewing 30 posts - 62,251 through 62,280 (of 66,608 total)
  • Author
    Posts
  • in reply to: How to increase header height? #188231

    Hi!

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

    /*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
    #header_main .container, .main_menu ul:first-child > li a{ height:88px; line-height: 88px; }
    
    /*header with social icons: */
    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 116px; line-height: 116px; }
    
    /*header with social icons and bottom nav */
    .bottom_nav_header.social_header #header_main .container{height:88px; line-height: 88px;}
    .bottom_nav_header.social_header .main_menu ul:first-child > li a {
    height:35px; line-height: 35px;
    }

    Select the selectors according to the header that you have. Change the value of the height and the line-height.
    Regards,
    Ismael

    in reply to: Show posts as a summary #188230

    Hi!

    You should create a page then switch to Advance Layout Builder, add the Blog Posts element. Configure the Blog Content length to show the excerpt. Don’t set a blog page on Enfold > Theme Options > Where do you want to display blog?. If you don’t do this, you might need to use the <!–more–> tag to specify the excerpt manually. You can also a post then click “Screen Options” and enable the Excerpt option. You can input the summary on the Excerpt box manually.

    Best regards,
    Ismael

    in reply to: How to increase header height? #188229

    Hey Jorge!

    What type of header do you have? Please check on Enfold > Header > Header Type.

    Best regards,
    Ismael

    in reply to: what file is generating the homepage? #188223

    Hey!

    The other themes usually use the index.php but on Enfold there is no specific file for the homepage. If you’re not using the Advance Layout Builder for it, it will use the page.php file. Note that all other pages that is not using the Advance Layout Builder will use the same file. Why do you need to edit it? If you’re using the ALB, you can edit the template-builder.php file.

    Best regards,
    Ismael

    in reply to: placement submit button gravity forms #188221

    Hey!

    Please add this code on your custom.css file located on wp-content/themes/enfold/css folder:

    #header_meta {
    background: gray !important;
    }

    Regards,
    Ismael

    in reply to: Slider text transparency #188219

    Hi!

    Please edit js > avia.js, find this code on line 90:

    switchWidth 	  = 767;
    
        	if(first_level_items > 7 + header.find('#menu-item-search').length && !bottom_menu)
        	{
        		switchWidth = 989;
        		header.addClass('mobile_menu_tablet');
        	}

    Replace it with:

    switchWidth 	  = 1006;
    
        	if(first_level_items > 7 + header.find('#menu-item-search').length && !bottom_menu)
        	{
        		switchWidth = 1006;
        		header.addClass('mobile_menu_tablet');
        	}

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Portfolio non clickable image #188218

    Hey midischool!

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

    .avia-slideshow-inner li a {
    pointer-events: none;
    }

    Remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: Facebook and Header Menu not Friends #188217

    Hi!

    What do you mean by Website Page Tab? I clicked Home and it working fine. The header is showing properly. I’m sorry but can you please elaborate the problem. A screenshot will help. :)

    Cheers!
    Ismael

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

    Hi!

    You don’t need to disable the mega menu. They won’t exist if you don’t create them yourself.

    Regards,
    Ismael

    in reply to: Avia Content Slider Alignment to top of container #188204

    Hi!

    Yes, it is because of the page id. You can remove it.

    .avia-content-slider { margin: -10px 0 0 0; }

    Regards,
    Ismael

    Hi bkheld!

    I’m not sure if this is possible. Let me ask Dude and Kriesi.

    Best regards,
    Ismael

    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, 11 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

Viewing 30 posts - 62,251 through 62,280 (of 66,608 total)