Forum Replies Created

Viewing 30 posts - 60,361 through 60,390 (of 67,460 total)
  • Author
    Posts
  • in reply to: Black Header / Menu in IE9 #234253

    Hi!

    How are you? I hope you’re doing well today.

    Use the BWP Minify plugin again. Please add the code that I gave you on custom.css then add !important after the css values:

    .header_color .header_bg, .header_color .main_menu ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div {
    background-color: #ffffff !important;
    background: #ffffff !important;
    }

    Add this on functions.php to exclude the custom.css file:

    add_filter('bwp_minify_style_ignore', 'exclude_my_css');
     
    function exclude_my_css($excluded)
    {
        $excluded = array('avia-custom');
        return $excluded;
    }

    You might need to add the !important for every css values on custom.css file.

    Cheers!
    Ismael

    in reply to: Buttons Look Different on Live Page #234249

    Hey!

    There is a plugin that blocks editing on the page editor. Please disable that. We can’t inspect the website with that enabled.

    Best regards,
    Ismael

    in reply to: Drop Down Menu #234248

    Hi!

    How are you? I hope you’re doing well today.

    Please use this to reposition the advance menu toggle on mobile screens:

    @media only screen and (max-width: 767px) {
    .mobile_active #advanced_menu_toggle {
    display: block;
    left: 124px;
    }
    }
    
    @media only screen and (max-width: 480px) {
    .mobile_active #advanced_menu_toggle {
    display: block;
    left: 70px;
    }
    }

    Regards,
    Ismael

    in reply to: Enfold Gallery #234245

    Hi!

    Thank you for using the theme. I hope you’re doing great.

    Please add this:

    .main_color .sidebar a, .main_color .sidebar  {
    color: #ffffff !Important;
    }

    Regards,
    Ismael

    Hi!

    Please replace the code that I gave you with this:

    $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="search-text">'.__( 'Search', 'avia_framework' ).'</span></a></li>';
    

    This will make the “Search” string translatable. If the translation is not automatic when you switch language, please use this plugin to translate the string: http://wordpress.org/plugins/codestyling-localization/

    Please hire a freelance developer if you want to integrate the Choices’ or the Propulsion’s search form on Enfold.

    You can set the facebook account on Enfold (En) and Enfold (Fr) separately. Switch between languages when you are on the wp dashboard.

    Cheers!
    Ismael

    in reply to: Vidoes Not Working. Help, please. #234242

    Hi!

    You didn’t update the theme to 2.5.4. Please download the latest version on your themeforest account. Note that the videos on mobile version will be disabled on the next release of Enfold. You will be required to add a fallback image for the video for mobile devices.

    Best regards,
    Ismael

    Hey kinnear!

    What do you mean by standard width? You can resize the slider on Global Settings > Basic > Slider Width.

    Regards,
    Ismael

    in reply to: Add image does not work in editor #233864

    Hey CreatorsCreations!

    Please post the link to the website. Try to increase the wordpress php memory limit. Refer to this link: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,
    Ismael

    Hey!

    Thank you for using the theme. I hope you’re doing great.

    The next update will include an option to provide a fallback image for mobile devices. There are lot of issues regarding videos on different devices so Kriesi decided that unless he found a full proof integration of mobile video background, videos won’t be available for mobile devices. This image will be shown on mobile device instead of the video background.

    Cheers!
    Ismael

    in reply to: How to do not display the default featured image? #233850

    Hi pako69!

    Thank you for using the theme. I hope you’re doing great.

    Please add this on Quick CSS or custom.css:

    .fallback-post-type-icon {
    display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Enfold translation; WMPL and default MO file location #233849

    Hi dngood!

    How are you? I hope you’re doing well today.

    The languages should be located on wp-content/languages by default but enfold loads the languages files on the lang folder.

    if(!function_exists('avia_lang_setup'))
    {
    	add_action('after_setup_theme', 'avia_lang_setup');
    	function avia_lang_setup()
    	{
    		$lang = get_template_directory()  . '/lang';
    		load_theme_textdomain('avia_framework', $lang);
    	}
    }
    

    http://codex.wordpress.org/Function_Reference/load_theme_textdomain

    Regards,
    Ismael

    in reply to: Third slider is not showing #233846

    Hey!

    I thought I posted something here before. Anyway, have you tried to recreate the slider from scratch? Looks like it is doable using the Fullwidth Easy Slider because you’re not creating any complex animations. Anyway I created a new slider called “Aentuinen Test Slider”. All 4 slides show up properly.

    http://www.aentuinen.be/test-page/

    Please watch this video on how to use the Layer Slider: http://www.youtube.com/watch?v=ZY9SxVyugx4

    Regards,
    Ismael

    in reply to: Logo in secondary menu #233842

    Hi juliettereniers!

    Can you please post a screenshot of what you’re trying to do? Maybe, you can edit header.php then add the logo or image code inside the header_meta container:

    <div id='header_meta' class='container_wrap container_wrap_meta'>
    
    <div class='container'>

    Cheers!
    Ismael

    in reply to: Page edit functionality not appearing #233840

    Hi!

    Please watch this video by Devin to update the theme via FTP: http://vimeo.com/channels/aviathemes/67209750

    Looks like you have a permission issue. Make sure that wp root folder and all the files and folders inside are write/read enabled. Set the permission to 755 or higher.

    Regards,
    Ismael

    in reply to: header transparency – mobiles #233835

    Hi envapk2!

    Thank you for using the theme. I hope you’re doing great.

    What type of header do you have? Maybe, you can add this below the code to prevent the “content push” on mobile device:

    @media only screen and (min-width: 768px) {
    .content {
    padding-top: 0px;
    padding-bottom: 1px;
    }
    }

    This can make the Small Fixed Header transparent:

    .fixed_header #main {
    padding-top: 0;
    }
    
    .header_color .header_bg, #header_main {
    background-color: transparent !important;
    border: none;
    }
    
    .header_color div {
    border: none;
    }

    Cheers!
    Ismael

    in reply to: Promo Box HTML Content Not Displaying Correctly #233829

    Hey markofwits!

    How are you? I hope you’re doing well today.

    Please add this on Quick CSS or custom.css:

    td {
    vertical-align: top;
    }

    Cheers!
    Ismael

    Hey anton123!

    Can you please give us a screenshot of what you’re trying to do?

    Enfold doesn’t have option for retina display. The technique is to use image with twice the size as needed then resize it in half using css. So for example you have a 100x100px image with selector id “awesome-image”, you can add this on Quick CS or custom.css:

    #awesome-image {
    width: 50px;
    height: 50px;
    }

    The image displayed will have a size of 50x50px but the actual size of the image that is use is 100x100px. The image will still look crisp on retina display. You can also use this plugin: http://wordpress.org/plugins/wp-retina-2x/

    Regards,
    Ismael

    in reply to: Separating groups of posts when using post nav #233822

    Hi!

    Are you planning to have two posts only? Maybe, you can hide the previous navigation. Add this on Quick CSS:

    .avia-post-prev {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: Deutsche Sprache aktivieren #233819

    Hi Piepmatz!

    Can you please give us a link to the website? Please wait for Dude to respond.

    Regards,
    Ismael

    in reply to: Inaccurate bounce rate? #233815

    Hey!

    No, that is not possible. Enfold is using shortcodes to display elements within a SINGLE page. It doesn’t have any resource or function to load two pages at the same time. Please ask the google forum or community about this. They can give you better explanations why the bounce rate decrease on so many levels.

    Regards,
    Ismael

    in reply to: Oupss: i've lost my subheader #233809

    Hey!

    Can you please deactivate the AddThis toolbox plugin? Deactivate all plugins if possible. Check the blog page again. Make sure that the subheader display is enabled.

    Cheers!
    Ismael

    in reply to: Enfold fixed header #233802

    Hi spirit1977!

    Thank you for using the theme. I hope you’re doing great. Use this instead:

    #header_main .container, .logo img, .logo a {
    height: 88px !important;
    line-height: 88px !important;
    max-height: none !important;
    }
    
    .header_color .main_menu ul:first-child > li > a {
    height: 88px !important;
    line-height: 88px !important;
    }

    Regards,
    Ismael

    in reply to: Adding php code to header #233796

    Hi!

    Please edit header.php, find this code on line 123:

    if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";
    

    Below, add this code:

    echo do_shortcode('[google-translator]'); 
    

    Add this on Quick CSS or custom.css:

    #google_language_translator {
    position: absolute;
    right: 250px;
    }
    

    Regards,
    Ismael

    in reply to: Olark Widget Text Boxes #233791

    Hi Jonathan!

    You can just add the code on Quick CSS or custom.css:

    #top textarea { 
    min-height: 30px; 
    line-height: .5em; 
    } 

    Please give us a link to the page with the plugin. A screenshot of the issue will help.

    Cheers!
    Ismael

    in reply to: How to highlight the actual menu page #233785

    Hey!

    Please give us a link to the actual website. Add !important on the css values:

    .main_menu ul:first-child > li a {
    line-height: 40px !important
    height: 40px !important;
    }

    Best regards,
    Ismael

    in reply to: Header with social icons resized but jumps sometimes #233783

    Hi!

    I’m sorry but I don’t see the jump on the header menu. My internet connection is not that fast and I don’t see the “jump” issue on every page. You can improve the loading speed by using cache and minify plugins. Suggested plugins are:

    http://wordpress.org/plugins/w3-total-cache/
    http://wordpress.org/plugins/bwp-minify/

    Cheers!
    Ismael

    in reply to: Forum vs forum. They bring me to different pages. #233772

    Hi!

    I already set the sidebar on Enfold > Sidebar > Sidebar on Single Post Pages to “right sidebar”. This will enable the sidebar for forum pages or technically forum posts.

    Cheers!
    Ismael

    in reply to: Layout Sections Background Colour #233637

    Hi!

    Sorry `bout that. You can add a color section then add a unique id on “For Developers: Section ID” field. Add “awesome-section” for example, use this on Quick CSS or custom.css to apply a white background inside the color section’s container.

    #awesome-section .container  {
    background: white;
    padding: 15px;
    margin-top: 20px;
    }

    In order to achieve the same look as the screenshot, you can insert two 1/2 column layouts inside the color section then insert the Image element on the first one and the text block on the other. Add another text block under the image element for the name, phone number, social icons etc.

    Best regards,
    Ismael

    in reply to: Fullwidth Masonry Gallery: Automatic Placement Problem #233633

    Hey!

    You can use imgur or clipular to post a screenshot here. I tried to resize the browser to increase the browser resolution and the masonry gallery adjust properly.

    Cheers!
    Ismael

    in reply to: Lizenzfrage #233632

    Hi set_carsten!

    I’ll ask Dude to answer this. AFAIK you need to buy a new license for the second website that you’re going to build. Regular license only grants you permission to sell the end product on a single client only.

    Regards,
    Ismael

Viewing 30 posts - 60,361 through 60,390 (of 67,460 total)