Forum Replies Created

Viewing 30 posts - 61,801 through 61,830 (of 66,027 total)
  • Author
    Posts
  • in reply to: Initial Queries #185943

    Hey markw1!

    1.) Edit index.php, find this code:

    $title = __('Blog - Latest News', 'avia_framework'); //default blog title

    2.) Edit the page, go to Layout > Header > select “Don’t display header”.

    3.) Add this on your custom.css or Quick CSS:

    #top .social_bookmarks {
    float: right;
    top: 80px;
    position: relative;
    }
    
    .main_menu {
    right: 120px;
    }

    4.) Go to Appearance > Menus, look for Theme locations then enable Enfold Main Menu for your main menu.

    Best regards,
    Ismael

    in reply to: Avia Post NAV with the same category ? #185940

    Hi!

    Glad it’s working. :)

    Best regards,
    Ismael

    in reply to: Easy Slider pics not resizing to spec #185916

    Hi!

    It will inherit the size of the container. The size that you set on the “Slideshow Image Size” is the thumbnail size that you’re going to use on the slider but not the actual size of the slider.

    Best regards,
    Ismael

    Hey!

    I’ll ask Dude and Kriesi. Let’s wait for their response.

    Cheers!
    Ismael

    in reply to: Featured Image Captions? #185461

    Hi!

    Edit includes > loop-index.php, find this code:

    if($slider) $slider = '<a href="'.$link.'">'.$slider.'</a>';
    			if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';

    Below, add Dude’s code:

    $description = get_post_field('post_content', get_post_thumbnail_id());
    			echo $description;

    Edit the images on Media > Library > Edit and put the caption on the Description field of the image.

    Best regards,
    Ismael

    in reply to: Enfold Bug – Buttons in sidebar, text color issue #185459

    Hey Monsoon!

    Can you please give us a link to the page with the button with dark text?

    Best regards,
    Ismael

    in reply to: Insert ID from URL to link in the slider #185458

    Hi!

    You can’t insert php codes on the layer slider. I’m not sure if this is possible. I’m sorry but please hire a freelance developer to modify it for you.

    Best regards,
    Ismael

    in reply to: Logo Issue with IE8 and New Update #185457

    Hey!

    Please add this:

    .logo img, .logo a {
    height: 58px !important;
    height: 58px\9;
    height: 58px;
    }

    Then below add this:

    .logo img { min-height: 58px !important; height: auto}
    .logo > a { max-height: 58px !important; }
    .logo img, .logo a { max-height: 58px !important; }

    We will start again. I’m running out of ideas. Please let me know if you added the codes then we will check your website.

    Regards,
    Ismael

    in reply to: Problem with portfolio and video #185456

    Hey!

    Edit the Portfolio Grid element then increase the Post Number and disable the Pagination.

    Cheers!
    Ismael

    in reply to: Content slider one column problem on mobile #185454

    Hi edebe!

    I’m sorry but I don’t see the issue on mobile view. It looks like this:

    Best regards,
    Ismael

    in reply to: Change Size of Image in Single Post With Big Preview Image #185452

    Hi grpetz!

    You can only force the height of the featured image because the width will vary on the content width. Add this on your custom.css or Quick CSS:

    .big-preview.single-big img {
    height: 350px;
    min-height: 350px;
    max-height: 350px;
    }

    This will stretch some of the images and may not look good afterwards.

    Cheers!
    Ismael

    in reply to: Mobile Theme Toggle Menu #185451

    Hi!

    Did you remove the mega menus on the main menu? I don’t see any mega menus on the list.

    Regards,
    Ismael

    in reply to: All about changing hover colors #185447

    Hi!

    There are lots of Learn More button on the slider. Did you add an attribute to each of them? Please use the class attribute if you’re planning to add the same style on every learn more button.

    Best regards,
    Ismael

    in reply to: Responsive Button Shortcode #185444

    Hey!

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

    @media only screen and (min-width: 1161px) and (max-width: 1350px)  {
    .avia-button.avia-size-large {
    min-width: 668px;
    }
    }
    
    @media only screen and (min-width: 1007px) and (max-width: 1160px)  {
    .avia-button.avia-size-large {
    min-width: 550px;
    }
    }
    
    @media only screen and (min-width: 786px) and (max-width: 1006px)  {
    .avia-button.avia-size-large {
    min-width: 678px;
    }
    }
    
    @media only screen and (max-width: 785px)  {
    .avia-button.avia-size-large {
    min-width: 428px;
    }
    }
    

    Cheers!
    Ismael

    Hey pixelmixture!

    I’m not sure if it is possible but you can choose to open the link on a new tab. Edit config-templatebuilder > avia-shortcodes > masonry_entries.php, find this code:

    //set the html tags. depending on the link settings use either an a tag or a div tag
    				if(!empty($this->atts['container_links']) || !empty($custom_url))
    				{
    					$this->loop[$key]['html_tags'] = array('a href="'.$this->loop[$key]['url'].'"','a'); //opening and closing tag for the masonry container
    				}
    				else
    				{
    					$this->loop[$key]['html_tags'] = array('div','div');
    				}

    Replace it with:

    //set the html tags. depending on the link settings use either an a tag or a div tag
    				if(!empty($this->atts['container_links']) || !empty($custom_url))
    				{
    					$this->loop[$key]['html_tags'] = array('a target="_blank" href="'.$this->loop[$key]['url'].'"','a'); //opening and closing tag for the masonry container
    				}
    				else
    				{
    					$this->loop[$key]['html_tags'] = array('div','div');
    				}

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Top main menu and smooth scrolling #185438

    Hi spmg67!

    1.) When creating the link on Appearance > Menus, just add the id of the section. For example, the Opportunity menu items should have the URL “#opportunity” only.

    2.) Please do step 1 then check it again on safari.

    3.) Please do step 1 then check it again on firefox.

    4.)

    Regards,
    Ismael

    in reply to: How can I make the navigation menu go responsive sooner? #185421

    Hi!

    Please edit js > avia.js, find this code:

    var menu 			  = header.find('.main_menu ul:eq(0)'),
    	    	first_level_items = menu.find('>li').length,
    	    	bottom_menu 	  = $('html').is('.bottom_nav_header'),
    	    	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:

    var menu 			  = header.find('.main_menu ul:eq(0)'),
    	    	first_level_items = menu.find('>li').length,
    	    	bottom_menu 	  = $('html').is('.bottom_nav_header'),
    	    	switchWidth 	  = 1024;
    
        	if(first_level_items > 7 + header.find('#menu-item-search').length && !bottom_menu)
        	{
        		switchWidth = 1024;
        		header.addClass('mobile_menu_tablet');
        	}

    Make sure that you remove the browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: Avia Post NAV with the same category ? #185420

    Hey!

    The code works for me. Please copy this code directly on your functions.php:

    add_filter('avia_post_nav_categories', 'use_same_category_filter');
    function use_same_category_filter($same_category)
    {
    $same_category = true;
    return $same_category;
    }

    Regards,
    Ismael

    in reply to: Change font size #185419

    Hi MatHom!

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

    body, body p {
    font-size: 15px;
    }

    Cheers!
    Ismael

    in reply to: Responsive headings #185416

    Hi!

    Please give us a link to the page so that we can give you a proper css solution.

    Regards,
    Ismael

    in reply to: Enfold Front Page Settings not showing pages. #185415

    Hey microh!

    Can you please provide a screenshot? Upload the theme again via FTP. Please post the link of the website here.

    Regards,
    Ismael

    in reply to: Theme Button Text Size #185410

    Hi glozemedia!

    What button? There are various button elements on the theme. Is it the button shortcode? The contact form button? Can you please give us a link to the page with the button element? You can try this on your custom.css or Quick CSS:

    .avia_iconbox_title {
    font-size: 20px;
    }

    Best regards,
    Ismael

    in reply to: Centered Logo with menu below #185409

    Hi!

    Please try this:

    div .logo {
    left: 40%;
    position: relative;
    top: -40px;
    }
    
    .main_menu {
    position: relative;
    z-index: 100;
    line-height: 10px;
    height: 100%;
    margin: 0;
    left: 20%;
    bottom: -40px;
    }

    Best regards,
    Ismael

    in reply to: Display shortcodes in postslider / grid elements #185407

    Hey StuWeTueHo!

    Edit config-templatebuilder > avia-shortcodes > postslider.php, find this code:

    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, '');

    Replace it with:

    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : do_shortcode(avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 300) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", false, ''));

    This will increase the excerpt length. You should increase the “300” value for longer shortcodes.

    Best regards,
    Ismael

    in reply to: How do I get the lightbox to work? #185404

    Hi bethperkins!

    You can use the Image element then change the Image Link? to Set Manually. Add the url of any vimeo or youtube videos. It will automatically open in lightbox. You can also add this code on a text block.

    <a href="VIDEO OR IMAGE URL HERE" rel="lightbox">CLICK HERE</a>

    Cheers!
    Ismael

    Hey!

    Please try this:

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
    .logo img, .logo a {
    width: 152px;
    max-width: 152px;
    min-width: 152px;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    }
    }

    Best regards,
    Ismael

    in reply to: Contact Submit Button #185396

    Hi!

    Can you please remove the field “Name*”? Create it again from scratch. Deactivate all plugins.

    Regards,
    Ismael

    Hi!

    You can edit functions.php, find this code:

    $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)

    You can replace the height and width then regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    in reply to: Single Image Landing Page w/menu #184675

    Hi!

    You can add the .home selector:

    .home .fixed_header #main {
    padding-top: 0;
    }
    
    .home .header_bg {
    opacity: .1;
    filter: alpha(opacity=10);
    }

    Best regards,
    Ismael

    in reply to: Header and CSS problem with IE8 and IE9 #184671

    Hey!

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

    #header {
    background-color: white;
    }
    
    #top .social_bookmarks li a {
    display: initial\9;
    }

    Best regards,
    Ismael

Viewing 30 posts - 61,801 through 61,830 (of 66,027 total)