Forum Replies Created

Viewing 30 posts - 62,491 through 62,520 (of 66,623 total)
  • Author
    Posts
  • Hey!

    Please use this:

    #avia_google_maps-2.widget {
    padding-bottom: 0 !important;
    }

    Cheers!
    Ismael

    in reply to: Logo Squished in IE10 #183599

    Hey daiuto99!

    I tested your website on IE10 and I don’t get the squished logo when clicked issue. Can you please provide us a screenshot of the issue?

    Cheers!
    Ismael

    in reply to: Page Background and translucent items on forfolio grid #183597

    Hey KingConga!

    1.) I’m not sure if this is possible. You might need to manually replace the uploaded background image located on wp-content/uploads folder with the actual gif image. Please try this plugin: http://wordpress.org/plugins/wp-backgrounds-lite/

    2.) Can you please give us a link to the portfolio page?

    Best regards,
    Ismael

    in reply to: Ajax Portfolio defaulting to 1030 x 510px on preview #183596

    Hey!

    I tested the preview text on my own portfolio item and it the spacing is rendering properly.

    There has to be a plugin that is causing the issue. Can you please deactivate all of them then test it on another browser?

    Regards,
    Ismael

    in reply to: Where can I find the code for the default blog view? #183593

    Hey kaMai!

    I’m not sure what you’re trying to do but the code is located on config-templatebuilder > avia-shortcodes > blog.php.

    Cheers!
    Ismael

    in reply to: Just some recomendations from example shown #183590

    Hi CivilC!

    1.) You can use the Enfold Advertising Area or just plain HTML code using the Text Widget.

    2.) You need to hire a freelance developer to add that kind of search filter.

    Regards,
    Ismael

    in reply to: Adding facebook social icon and link to main menu #183266

    Hey petersandin!

    You can create facebook menu item on Appearance > Menus. Go to Links and add the URL and then label it Facebook, add the menu. Click Screen Options on the top right corner then enable CSS Classes. Edit the Facebook menu item then add the css class “facebook”. You can now style the facebook menu item using this selector.

    #top .main_menu .menu li.facebook {
    display: block;
    width: 32px;
    height: 32px;
    background: red;
    text-indent: 9999px;
    }

    Change the background property to background: url(‘FACEBOOK ICON URL HERE’);

    Regards,
    Ismael

    in reply to: Adding Custom Icon into Social Header #183263

    Hi murphy88!

    Can you please post a screenshot of what you’re trying to do? A link to your site will help.

    Best regards,
    Ismael

    in reply to: Remove "Blog" from title bar #183262

    Hey!

    Edit index.php, find this code:

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

    Replace it with:

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

    Regards,
    Ismael

    in reply to: Transparent Header #183261

    Hey simonac!

    What type of header are you using? Please check on Header > Header Type. You can adjust the opacity of the header background. Add this on your custom.css or Quick CSS:

    .header_bg {
    opacity: .2;
    filter: alpha(opacity=20);
    }

    Regards,
    Ismael

    in reply to: Header options #183260

    Hey SolingLover!

    You can add this on your custom.css or Quick CSS to adjust the size of the header meta and phone number.

    .social_header .phone-info span {
    font-size: 20px;
    height: 40px;
    }
    
    #top .social_bookmarks {
    height: 40px;
    }

    Regards,
    Ismael

    in reply to: Magic Quotes escapes headers H1, H2, H3… #183259

    Hi!

    Do you have the latest version of Enfold? I think Kriesi fixed this on the latest updates of the theme.Can you please give us a link to the website? Deactivate all your plugins then test it on another browser. I tested this on my end and it doesn’t produce any backslashes on the code.

    Best regards,
    Ismael

    Hey oliviad!

    Are you talking about sort filter for portfolio items?

    1. Please add this on your functions.php:

    add_filter('avf_portfolio_sort_first_label','avia_change_portfolio_label', 10, 2);
    
    	function avia_change_portfolio_label($all, $params)
    	{
    		$all =  "Name of your label";
    		return $all;
    	}

    2.) Edit config-templatebuilder > avia-shortcodes > portfolio.php, find thi code:

    $output .= "<span class='text-sep ".$category->category_nicename."_sort_sep'>/</span>";

    3.) Edit the same file again and look for 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' => 'title',
    				'order' => 'DESC'
    			));
    

    Regards,
    Ismael

    in reply to: Customize Accordion Sortable "All" Tag #183256

    Hey!

    There is no filter for the seperator. You need to manually edit the file again and look for this code on line 269:

    $output .= "<span class='tag-seperator'>/</span>";

    Best regards,
    Ismael

    in reply to: woocomerce produit image size #183249

    Hey!

    Please add this on your custom.css or Quick CSS to remove the scrollbar:

    .four.units.single-product-main-image.alpha {
    overflow: hidden;
    }

    Cheers!
    Ismael

    in reply to: Link Within a Page and header issue #183248

    Hi!

    You can add this on your custom.css or Quick CSS to remove the transparency of the header:

    .header_bg {
    opacity: 1;
    filter: alpha(opacity=100);
    }

    I’m sorry but I don’t understand the problem with the button. I clicked it and it goes down like it should.

    Best regards,
    Ismael

    in reply to: button text color changed to black after upgrading to 2.3.2 #183245

    Hi!

    Glad it is fixed. :)

    Cheers!
    Ismael

    in reply to: Fixed Header with Social & Navigation #183244

    Hi jono713!

    First, please use the non-fixed header with social icons then add this on your custom.css or Quick CSS:

    #header_meta {
    display: none;
    }
    
    #header {
    position: fixed;
    }
    
    /*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:55px; line-height: 55px; }

    Best regards,
    Ismael

    in reply to: Background color doesn't change #183240

    Hey!

    Glad you fixed it. :)

    Regards,
    Ismael

    in reply to: Blog Post Style #183238

    Hey!

    If you want to change the overall font size for posts. You can add this on your custom.css or Quick CSS:

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

    Regards,
    Ismael

    Hey kriru!

    You have an old version of the theme. Please download the latest version on your themeforest account then we’ll get back on you.

    Regards,
    Ismael

    in reply to: "Automatic" / "Fixed" Scrolling #183206

    Hey prezzemolo!

    Thank you for using the theme!

    Sorry but this is a beyond of what we can do as support team. Please hire a freelance developer to add the feature for you. You can visit odesk.com or freelancer.com.

    Best regards,
    Ismael

    in reply to: "Read more" for (Fullwidth) Easy Slider? #183205

    Hey Jan!

    This is possible. Just add an image and edit it. You can add html tags on the caption area of the images. Something like:

    <a href="LINK HERE" target="_blank">Read More...</a>

    Regards,
    Ismael

    in reply to: How to use featured images from a custom field #183203

    Hi kaMai!

    You replace these lines with the get_post_meta for custom fields:

    //on single page replace the link with a fullscreen image
            if(is_singular())
            {
                $link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url');
            }
    
            //echo preview image
            if(strpos($blog_style, 'big') !== false)
            {
                if($slider) $slider = '<a href="'.$link.'">'.$slider.'</a>';
                if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
            }

    Cheers!
    Ismael

    in reply to: Layer Slider Display Errors #183201

    Hey 500Webmaster!

    You can use Media Queries to adjust the position of the a certain element. First, edit the layers then go to the Attribute panel. Give each of these layers a unique id. You can then use Media Query to move them on a specific position when you’re viewing on a mobile device. Note that there are crappy Android screens. We really can’t fix the slider on those devices. The website looks great on mobile. Check here: http://responsinator.com/?url=http%3A%2F%2Fsiptrunkplus.com%2F

    Best regards,
    Ismael

    in reply to: Enfold: EasySlider – two questions #182781

    Hey!

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

    html {
    -webkit-font-smoothing: antialiased;
    }

    Cheers!
    Ismael

    in reply to: Copying/Moving Elements to Different Pages #182779

    Hey!

    Sorry but you need to hire a freelance developer to modify the partner element. It can’t automatically update the shortcode whenever you use it on another page.

    Cheers!
    Ismael

    in reply to: Link Within a Page and header issue #182778

    Hi LA_BREVA!

    Can you please give us a link to the website? The Header image you posted is not working.

    Regards,
    Ismael

    Hi t3lgroup!

    Can you please give us a link to the website? Do you have the latest version of Enfold. Please deactivate all plugins then try again. Post the login details here as a private reply.

    Best regards,
    Ismael

    in reply to: Featured Image Captions? #182774

    Hi jenerdman!

    What kind of Blog Style do you have for your single post page?

    Regards,
    Ismael

Viewing 30 posts - 62,491 through 62,520 (of 66,623 total)