Forum Replies Created

Viewing 30 posts - 50,401 through 50,430 (of 66,288 total)
  • Author
    Posts
  • in reply to: Big problem with my settings frontpage #395675

    Hey!

    Thank you for using Enfold.

    If you don’t mind, we would like to see the actual website. Make sure that you’re using the latest version of the theme, 3.0.8, with WordPress 4.1. If possible, try to deactivate all plugins then test it again.

    Best regards,
    Ismael

    in reply to: Box um Spalte und andere Hintergrundfarbe? #395673

    Hey Dandy-power!

    Thank you for using Enfold.

    Place the 1/3 columns inside a color section with a unique id attribute (For Developers: Section ID). Use “custom-section” for example. Use this on the Quick CSS field to apply different background color to the column layouts:

    #custom-section .flex_column.av_one_third:nth-child(1) {
    background: red;
    }
    
    #custom-section .flex_column.av_one_third:nth-child(2) {
    background: blue;
    }
    
    #custom-section .flex_column.av_one_third:nth-child(3) {
    background: green;
    }

    Regards,
    Ismael

    Hey tansari!

    Thank you for using Enfold.

    If you don’t mind, we would like to see the actual website with the grid row element. Please post the website url here. :)

    Best regards,
    Ismael

    in reply to: how to make the buttons inside a fullscreen slider bigger? #395666

    Hey DROR!

    Thank you for using Enfold.

    Add this code to the Quick CSS field then adjust the properties:

    #top .avia-slideshow-button {
    border-radius: 3px;
    text-transform: uppercase;
    padding: 15px 16px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    }

    Regards,
    Ismael

    in reply to: Social Icons top bar change hover title #395663

    Hey adlinedesign!

    Thank you for using Enfold.

    Try to add to the functions.php file:

    add_filter('avia_filter_social_icons', 'avia_social_icons_title');
    function avia_social_icons_title($icons) {
    	$i = 0;
    	foreach ($icons as $icon) {
    		if($icon['social_icon'] == 'dribble') {
    			$icons[$i] = array(
    			'social_icon' => 'eBay',
    			'social_icon_link' => $icon['social_icon_link']
    			); break;
    		} $i++;
    	}
    	
    	return $icons;
    }

    Regards,
    Ismael

    in reply to: Positioning problem with picture- and iconboxes #395661

    Hi!

    Since you decrease the width of the container, expect that elements inside will become smaller. If you only want to decrease the padding or gap between the icon and the images, use this:

    #av_section_5 .container .flex_column.av_one_fourth {
    width: 24%;
    margin-left: 1%;
    }

    Cheers!
    Ismael

    in reply to: edit tag TITLE on social image profile changed by myself #395658

    Hi!

    Alright. Please ignore the suggestion above then add this to the functions.php file:

    add_filter('avia_filter_social_icons', 'avia_social_icons_title');
    function avia_social_icons_title($icons) {
    	$i = 0;
    	foreach ($icons as $icon) {
    		if($icon['social_icon'] == 'vimeo') {
    			$icons[$i] = array(
    			'social_icon' => 'trip advisor',
    			'social_icon_link' => $icon['social_icon_link']
    			); break;
    		} $i++;
    	}
    	
    	return $icons;
    }

    Best regards,
    Ismael

    in reply to: Disable lightbox effect for widget on footer #395646

    Hi Andrea!

    Thank you for using Enfold.

    Try to edit js > avia.js file then look for this code:

    exclude			:	'.noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added,
    

    Replace it with:

    exclude			:	'.noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added, .widget .element',
    

    Best regards,
    Ismael

    Hi!

    Which part of the page would you like to apply a transparent background to? A screenshot will help. You need to add custom css codes to the Enfold > General Styling > Quick CSS field.

    Cheers!
    Ismael

    in reply to: Photos in porfolio #395638

    Hey!

    Glad you figured it out. :)

    Best regards,
    Ismael

    in reply to: Masonry perfect grid displayed incorrect #395624

    Hey!

    I think you got a plugin which preloads the masonry images, lazy load. You can hide the duplicated images with this:

    img.lazy.data-lazy-ready {
    display: none !important;
    }

    Damn!.. those watches. :)

    Regards,
    Ismael

    in reply to: Use Icon Boxes in Footer? #395621

    Hi mgb913!

    Thank you for using Enfold.

    Generate the iconbox shortcode on a page or post using the shortcode wand then place it on a text widget.

    Best regards,
    Ismael

    Hey cwitdoeckt!

    Thank you for using Enfold.

    The video background option is disabled on mobile by default due to various incompatibility reasons. Please add a fallback image.

    Regards,
    Ismael

    Hey!

    Thank you for using Enfold.

    When parallax is set as background attachment, the background size is set to cover which scales the image to be as large as possible to cover the whole container and in a few cases, cut off parts of the background image. Set the background attachment to scroll, add a unique id attribute using the For Developers: Section ID field. Use “custom-section” for example, then add this to the Quick CSS field;

    #custom-section {
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: 100% 100% !important;
    }

    Cheers!
    Ismael

    in reply to: Quick CSS not running #395610

    Hi!

    Thank you for the info.

    Please delete the enfold.css file inside the wp-content > uploads > dynamic_avia folder then toggle any theme options. Save changes. This should regenerate the enfold.css file with the new settings and css markup.

    Cheers!
    Ismael

    in reply to: Menu and Formatting Messed Up After Updating Enfold #395606

    Hey classywebsites!

    Thank you for using Enfold.

    Looks like you updated the theme from a very old version, 2.1. We added the header configurator on version 2.6 which makes multiple header layouts a possibility. You may need to re-create the header from scratch. Please remove all css modifications related to the header then go to Enfold > Header panel. Start by adjust the Header Position to Logo Right, Menu below.

    Regards,
    Ismael

    in reply to: Menu Bar Not Wrapping Around on iPad #395601

    Hi!

    We’ll continue the thread here: https://kriesi.at/support/topic/menu-and-formatting-messed-up-after-updating-enfold/

    Regards,
    Ismael

    in reply to: Header meta bar different on homepage with mobile devices #395599

    Hey ronaldjan!

    Thank you for using Enfold.

    Replace the header meta css modification with this code:

    #top .av_header_transparency #header_meta {
    background-image: url("//interserve.org.au/wp-content/uploads/2014/08/meta-header.png") !important;
    background-color: #303030 !important;
    background-position: center bottom !important;
    background-size: 1220px 4px !important;
    background-repeat: repeat-x !important;
    }

    Cheers!
    Ismael

    in reply to: Missing slider #395593

    Hi!

    Looks like the js > shortcodes.js file is corrupted or incomplete. Please get a fresh copy then override the old one.

    Regards,
    Ismael

    in reply to: Side by side button in layrerslider #395592

    Hey mcraig77!

    Thank you for using Enfold.

    Generate the button shortcode on another page or post using the shortcode wand then copy it inside the text block with the “Project Map” or on a separate text block, whichever you want. Separate the shortcode using this html code:

    <div class="flex_column av_one_half first">
    BUTTON SHORTCODE HERE
    </div>
    <div class="flex_column av_one_half">
    BUTTON SHORTCODE HERE
    </div>

    Best regards,
    Ismael

    in reply to: Responsive Issues #395584

    Hi!

    Thank you for using Enfold.

    1.) Move the text block with the links below the images on the same column layout as the images.

    3.) Use this to change the width of the footer columns:

    @media only screen and (max-width: 767px) {
    .responsive #top #footer .flex_column {
    width: 31%;
    margin-left: 2%;
    }}

    4.) It is the default settings or style of the columns when viewing on tablet size screens. The 1/4 column layout is quite small when you force it to show side by side on smaller screens.

    Best regards,
    Ismael

    in reply to: Bug in responsive in my Homepage tables #395582

    Hi!

    You can try this on the Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive .avia_responsive_table .avia-data-table td {
    position: relative;
    float: left;
    width: 33.33%;
    min-height: 123px;
    }}

    Cheers!
    Ismael

    in reply to: Error with header background image #395581

    Hi!

    You should probably remove the text from the image then add it as a caption instead.

    Regards,
    Ismael

    in reply to: Add content type for Blogs-Latest-News override #395578

    Hey!

    The code we provided above works as expected. Please check it here: http://welstest.wpengine.com/wels-devotion/thursday-devotion-february-5/ (hosted on WPengine)

    Regards,
    Ismael

    in reply to: Problems with sidebar and woocommerce single product page #395577

    Hi!

    The first code provided on the article is incomplete. We updated the article. Please check it here: http://kriesi.at/documentation/enfold/product-page-left-or-right-sidebar/

    Regards,
    Ismael

    in reply to: Custom CPT widget #395098

    Hi!

    Remove the code above then use this on the functions.php file:

    add_action('wp_footer', 'ava_remove_test', 10);
    function ava_remove_test(){
    ?>
    <script>
    (function($){
    	$(window).load(function() {
    		$( "span.blog-categories.minor-meta a:contains('test')" ).css( "display", "none" );
    	});
    })(jQuery);
    </script>
    <?php
    }

    Regards,
    Ismael

    in reply to: Yoast WordPress SEO Plugin causing conflict #395087

    Hey dannish1!

    Thank you for using Enfold.

    I was able to create a page with WordPress SEO activated: http://boothology.co.uk/wp-admin/post.php?post=34&action=edit&message=1

    Regards,
    Ismael

    in reply to: Enfold UpdraftPlus #395084

    Hey Daniela!

    Thank you for using Enfold.

    I’m sorry but third party plugins such as this one and Digimembers are outside the scope of support. Again, you can contact the plugin author. If you can provide the login details of the website, we’ll try to help but we can’t promise anything.

    Regards,
    Ismael

    in reply to: Different logo for different pages possibility? #395079

    Hi gearouthere!

    Thank you for visiting the support forum.

    Upload a colored logo instead of the current white then use this on the Quick CSS field:

    .home .logo img {
    display: none;
    }
    
    .home .logo {
    width: 98px;
    background: url('https://aquaquestonline.com/wp-content/uploads/2015/02/aqlogowhite.png') no-repeat; 
    }

    This will apply the logo as background specifically for the home page.

    Regards,
    Ismael

    in reply to: WPML Language Switcher position and theme update #395073

    Hi!

    Sometimes code editors convert symbols and somehow breaks the actual code. Please get the code from this link: http://pastebin.com/Z3dUyhDK

    Regards,
    Ismael

Viewing 30 posts - 50,401 through 50,430 (of 66,288 total)