Forum Replies Created

Viewing 30 posts - 61,891 through 61,920 (of 66,017 total)
  • Author
    Posts
  • 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

    in reply to: enfold 2.4.1 name should be left crumbs Product Name #182772

    Hi livemx!

    You can choose not to display the Header on single product pages. Edit the product then look for Header Settings > select Don’t display header.

    Best regards,
    Ismael

    in reply to: Code in Article #182770

    Hi macrunner!

    I tested the plugin and it works great. :)

    Cheers!
    Ismael

    in reply to: Easy Slider Scrolling #182767

    Hey covaun!

    You need to hire a freelance developer to modify the slider for you.

    Regards,
    Ismael

    in reply to: jQuerry problem with internet explorer #182764

    Hi!

    This is a screenshot of your website on IE10. Everything looks ok.

    Best regards,
    Ismael

    Hi!

    You’re using a very old version of the theme. You might need to recreate the slider from scratch. The new version of the theme has an Import and Export slider capability. You might want to try that.

    Cheers!
    Ismael

    in reply to: Enfold Theme Load Time – How Quick Should It Be? #182759

    Hi!

    I tried the plugin that you mentioned and the Total Load Time is 3.0682seconds avg on my end. I have minimal plugins installed.

    Best regards,
    Ismael

Viewing 30 posts - 61,891 through 61,920 (of 66,017 total)