Viewing 30 results - 89,971 through 90,000 (of 142,836 total)
  • Author
    Search Results
  • #693233

    Hey Neil,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top .main_color .avia-color-theme-color * {
        color: black;
    }
    

    Best regards,
    Yigit

    #693232

    Hey jelle,

    Please edit your page and click “screen options” on the top right corner and check “discussion” then scroll below your content and make sure that you have enabled discussion.

    Best regards,
    Yigit

    #693211

    Hey reamisag,

    You can go to Enfold theme options > Header > Header Behaviour and check “Unstick topbar” so when scrolled down, header meta section will be hidden.

    If you would like to hide only secondary menu when scrolled down, please add following code to Quick CSS in Enfold theme options under General Styling tab

    .header-scrolled .sub_menu { display: none; }

    Best regards,
    Yigit

    #693203
    #693122
    benbrinnand
    Participant

    Hi enfold

    Im trying to get rid of this space at the top

    https://drive.google.com/file/d/0B-0P-Ma0-co7enNFa2M5R0tFSm8/view

    To open the light box I am using this

    <div class=’avia-button-wrap avia-button-left ‘><span class=’avia_iconbox_title’>Demandez un devis</span></div>

    I have the light box in another page (I don’t know how to hide stuff on the same page) I’v turned off all the menus and set everything to no padding but its still giving me this large space at the top..

    any Ideas

    thanks in advance Ben

    #693082

    Topic: import new DEMO?

    in forum Enfold
    Chris_85
    Participant

    hi,

    i found a new DEMO on kreisi.at (http://kriesi.at/themes/enfold-creative-studio/#top)
    At the Moment i cant find a possibility to import the new-demo with enfold version 3.71. Is it possible to import the new DEMO with the next enfold-version or is there another solution for enfold 3.71?

    best regards

    Chris

    #693068

    In reply to: Background color of H2

    Thanks Andy,

    For instance, on this page: http://www.arbejdsmarkedsanalyser.dk/ I would like the text (which is H2) in the top picture “PRAKSISNÆR DOKUMENTATION OG EVALUERING” to be on a coloured background, so that it is easier to read. Will I accomplish that by changing the background colour of H2?

    BR,
    Kim

    #693067
    fluid
    Participant

    Dear Enfold Gurus!
    Thank you very much for setting up this great Theme, I hope ypu can help me this question:
    I’d like to add a hoover effect to images placed in a footer widget. I got them there with plain html, not via Avia Builder as I did not find the short codes.
    So now I would like to have coloured images with a greyscale filter and when the cursor is placed on them the filter is turend off. So its gonna be something like:

    div.avia-image-container div a img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    }

    div.avia-image-container:hover div a img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    }

    Found this in an other topic.
    Now I don’t know how to adress those images placed with plain htm in a footer widget – can you guys help me out?

    Thank you very much in advance!

    #693065

    This code solved my issue:

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    	?>
    	<script type="text/javascript">
    	(function($) {
    
    		$('.av-section-color-overlay-wrap').on('click', '.custom-mute', function() {
    				$(this).toggleClass("icon-sound-on");
    				
    				
    			});
    		
    
    		function a() {
    			$('.av-section-color-overlay-wrap').prepend('<div class="custom-mute"></div>');
    			$('.av-section-color-overlay-wrap').on('click', '.custom-mute', function() {
    				$('#top .mejs-controls .mejs-volume-button button').trigger('click');
    
    			});
    		}
    
    		a();
    	})(jQuery);
    	</script>
    	<?php
    }

    And here’s what I added on the quickCSS:

    .custom-mute {
        display: block;
        background-image: url('../../../wp-content/uploads/2016/09/icon-unmute.png');
        background-size: 48px;
        width: 48px;
        height: 48px;
        position: absolute;
        bottom: 50px;
        right: 10px;
        z-index: 1000;
    }
    
    .custom-mute:hover{
    opacity: 0.5;
    }
    
    .icon-sound-on{
    background-image: url('../../../wp-content/uploads/2016/09/icon-mute.png');
    }
    
    @media only screen and (max-width: 1290px) {
    .custom-mute {
        
        right: 190px;
        
    }
    }

    You guys are awesome!
    You can mark this as solved. Thanks

    #693061

    In reply to: Overlap logo and menu

    Hi,

    I’m not sure I completely follow. What do you mean by put the logo on top of the menu? Do mean you would want the logo placed above the nav menu in a situation like that where it overlaps?

    Best regards,
    Jordan

    #693059

    In reply to: Overlap logo and menu

    Thank you! It works: combining both solutions, the logo is in line with the menu and there is no overlap.

    However, is it possible to put the logo on top of the menu for the case when I don´t want to show the mobile menu yet and there is an overlap.

    For example for your site kriesi.at: a solution for the overlap at screen widths between 862px to 767px.
    What would be the css code (for the Enfold Theme)? Or is it not that simple?

    #693043

    In reply to: Problem Restore Backup

    Hey 4paintaker,

    The database may need to be repaired”, then you need to repair your database.
    You can do this by adding the following line in your wp-config.php file. Add it just before ‘That’s all, stop editing! Happy blogging’ line wp-config.php.

    
    define('WP_ALLOW_REPAIR', true);

    Once you have done that, you can see the settings by visiting this page: http://www.yoursite.com/wp-admin/maint/repair.php

    Once you are done repairing and optimizing your database, make sure to remove this from your wp-config.php. Let us know how it goes.

    Best regards,
    Jordan

    #693033

    Hey mcraig77,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top .iconbox_left_content .iconbox_icon, #top .iconbox_right_content .iconbox_icon {
        font-size: 50px;
    }
    

    You will need to add the section class to the code and replace the #top to target only that section’s icon.

    Best regards,
    Jordan

    #693026

    I’ve got the buttons looking ok now. I made the columns they are have no spacing between them. I’ll copy and paste my original post at the top of this thread to a new ticket then Andy.

    #693024

    In reply to: Overlap logo and menu

    Thank you for the quick reply.
    Well, the problem is that the site is still under development and the menu structure (and so the width) is not completely determined

    But the same problem happens with your site:
    kriesi.at

    From width 862px to 767px there is an overlap

    screenshot3

    (in my case for the moment from 980px to 767 px)

    I would like for this situation the menu aligned left and the logo on top of it (also aligned left)

    Thanks for the help!

    #693011

    In reply to: Masonary Gallery

    Hi,

    To make the changes Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    1. Masonry background color

    .av-inner-masonry {
    background-color: #e7e7e7!important;
    }
    #top .av-caption-style-overlay a.av-masonry-item-with-image .av-inner-masonry-content {
        background: rgba(0, 0, 0, 0)!important;
    }
    

    2. and 3. To align the masonry title and change font size.

    .av-masonry-entry-title.entry-title {
           font-size:26px!important;
    	position:absolute;
    	left:50%;
    	transform:translateX(-50%);
    	bottom:20px;
    }

    Best regards,
    Vinay

    #692992

    Topic: Overlap logo and menu

    in forum Enfold
    Blueberry007
    Participant

    Hi,

    I have the following settings for the header in the Enfold Theme:

    logo:left
    menu:right

    (just like the header of this forum:)

    screenshot1

    Reducing the window size (just before the breakpoint for mobile devices) leads to an overlap of the menu and the logo (happens the same with the header of this forum)
    Would it be possible to place the logo on top of the menu for this situation?

    screenshot2

    • This topic was modified 9 years, 5 months ago by Blueberry007.
    #692991
    Sadegh
    Participant

    Hey Kriesi Team,

    > We are using WPML plugin.
    > As you may see in the website (LINK), English menu width is larger than Farsi menu, so the style of the top header should be vary for each language. Otherwise, we see this conflict between menus:
    .

    Regards,
    Sadegh

    #692980

    hm i did that in child-theme functions.php :

    this is a fix for top setting only
    if you only want to change it for a specific site (see code at bottom) – in my case it is page-id-140

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
        $(document).ready(function(){
            $(window).load(function() {
                var shift = $('.container.av-logo-container').outerHeight();
                    $('.page-id-140 .avia-section.avia-bg-style-fixed').css('background-position-y', shift  );
            });
            $(document).scroll(function(){
                var shift = $('.container.av-logo-container').outerHeight();
                    $('.page-id-140 .avia-section.avia-bg-style-fixed').css('background-position-y', shift  );
            });
        });
    })(jQuery);
    </script>
    <?php
    }
    • This reply was modified 9 years, 5 months ago by Guenni007.
    #692961
    Guenni007
    Participant

    if you have a color-section and give a background-image to it – you have the choice to position that attachment on enfold dialog.
    on parallax the positioning of the background-attachmant (image) works as expected
    – but on fixed positioning not .
    it seem more like a center center than a center top.
    it looks like the header-height isn’t regarded. On non shrinking header i can fix it with css (with background-position ) but on shrinking headers it must be influenced dynamically ?

    Is there a fix for it ? – Thanks

    PS : it is just because sometimes it is important to see the top of the image

    #692952

    Hey Antonio,

    Thank you for using Enfold.

    Please add this in the functions.php file:

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function a() {
    		$('.av-section-color-overlay-wrap').prepend('<div class="custom-mute"></div>');
    		$('.av-section-color-overlay-wrap').on('click', '.custom-mute', function() {
    			$('#top .mejs-controls .mejs-volume-button button').trigger('click');
    		});
    	}
    
    	a();
    })(jQuery);
    </script>
    <?php
    }
    

    And this css code to style the mute/unmute button:

    .custom-mute {
        display: block;
        background: red;
        width: 30px;
        height: 30px;
        position: absolute;
        bottom: 100px;
        right: 100px;
        z-index: 1000;
    }

    At first, you’ll just see a red button so you have to get your own mute/unmute image and replace the background value.

    Best regards,
    Ismael

    #692949

    Hi,

    Thank you for using Enfold.

    Edit one of the pages, set the layout to “No Sidebar then add a 3/4 and 1/4 column. Add a text block in the 1/4 column.
    and apply a custom css class attribute “fixed-column” to it. Add this code in the functions.php file:

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function c() {
    		var isMobile = '';
    
    		if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && 'ontouchstart' in document.documentElement)
    		{
    			isMobile =  true;
    		}
    		else
    		{
    			isMobile =  false;
    		}
    
    		if(isMobile) return;
    
    		var $sidebar   = $(".fixed-column"),
    			$window    = $(window),
    			offset     = $sidebar.offset();
    
    		$window.scroll(function() {
    			if ($window.scrollTop() > offset.top) {
    				$sidebar.addClass('affix');
    			} else {
    				$sidebar.removeClass('affix');
    			}
    		});
    	}
    
    	c();
    })(jQuery);
    </script>
    <?php
    }

    And this css code in the Quick CSS field:

    @media (min-width: 989px) {
      #top .affix > section {
          position: fixed !important;
          top: 150px;
      }
    }

    This code should work on its own but might require a few adjustments based on the current layout of the site.

    Best regards,
    Ismael

    #692946

    In reply to: problem with update

    Hi,

    I see. Please add this in the Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top .av_header_transparency .phone-info {
        color: gray;
    }
    
    .responsive #top #header_meta .social_bookmarks li a {
        color: #7c6853;
    }
    }

    Best regards,
    Ismael

    Hi,

    Please revert the modifications then follow the instructions here.

    // https://kriesi.at/support/topic/image-upload-2/#post-614738

    Don’t forget to regenerate the thumbnails.

    Best regards,
    Ismael

    fineart
    Participant

    Hi Guys
    please see attached image – which effectively demonstrates a rough visual of the effect sought

    Described here also
    Want to have a
    2ND TEXT OVERLAY BOX (IN ADDITION TO THE EXISTING BOTTOM OVERLAY) DISPLAYING ADDITIONAL INFO
    a) Category or Tag Info (like City / Country etc) &
    b) prior to hover a corner Banner/ PNG photo that is category switchable (ie Use VIP Icon: Yes /No)

    Hope this makes sense.

    thanks a mil in advance.
    Best
    Chris

    View post on imgur.com

    Hi Andy,

    I’ve been working with NextGEN support. It is a known issue with Enfold, however their suggestions are not working to resolve the issue.

    Here is the thread with their support:

    Thanks, Deanna!

    Let’s try the following under Gallery > Other Options > Style (replacing the original I suggested):

    .galleria-theme-nextgen_pro_lightbox .galleria-stage, .ngg-galleria {
    height:100% !important;
    }

    There may be some trial and error involved, but as noted earlier, it will involve finding the most correct HTML element to insure that a height is set appropriately.

    Thanks!

    – Cais.

    Imagely Team
    The WordPress Photography People

    Stay connected with us & show your support by giving a ‘Like’ on: Facebook , Follow us on: Twitter & Google+
    ________________________________________

    On Tue, Sep 27, 2016 at 1:20 PM, Deanna Simone < (Email address hidden if logged out) > wrote:
    Hi Cais,

    The specific page is: http://laurenhardyphotography.ca/weddings

    The issue only presents on mobile (Andoird of Apple). It works great on Desktop.

    Cheers,
    Deanna Simone
    Virtual Administrator
    Rosewood Virtual Admin

    Tel: 289-338-7297 | Email: (Email address hidden if logged out)
    Online at: http://www.rosewoodva.ca

    This message contains confidential information and is intended only for the individual named. If you are not the named addressee, you should not disseminate, distribute or copy this email.
    Please notify the sender immediately by email if you have received this email by mistake and delete this email from your system.

    From: (Email address hidden if logged out) [mailto: (Email address hidden if logged out) ]
    Sent: September-27-16 12:20 PM

    To: Deanna Simone < (Email address hidden if logged out) >
    Subject: Re: NextGEN Pro: Fatal Error on filmstrip pro only on mobile

    Deanna –

    Can you share a link to the specific display where you are seeing this issue. The above suggested work-arounds are generally found to sort out issues with the Pro Lightbox, I do not recall the issue being reported for a specific display type previously … although a similar work-around to specify a height for the display will also likely sort this out if that is the case.

    Thanks!

    – Cais.

    Imagely Team
    The WordPress Photography People

    Stay connected with us & show your support by giving a ‘Like’ on: Facebook , Follow us on: Twitter & Google+
    ________________________________________

    On Tue, Sep 27, 2016 at 9:58 AM, Deanna Simone < (Email address hidden if logged out) > wrote:
    Hi Becky,

    Also, the issue is only on mobile. The gallery shows great on desktop on all browsers.

    Cheers,
    Deanna Simone
    Virtual Administrator
    Rosewood Virtual Admin

    Tel: 289-338-7297 | Email: (Email address hidden if logged out)
    Online at: http://www.rosewoodva.ca

    This message contains confidential information and is intended only for the individual named. If you are not the named addressee, you should not disseminate, distribute or copy this email.
    Please notify the sender immediately by email if you have received this email by mistake and delete this email from your system.

    From: (Email address hidden if logged out) [mailto: (Email address hidden if logged out) ]
    Sent: September-27-16 9:07 AM

    To: Deanna Simone < (Email address hidden if logged out) >
    Subject: Re: NextGEN Pro: Fatal Error on filmstrip pro only on mobile

    Hey Deanna,
    Yep, that’s correct. Would you happen to have a caching plugin installed? If so, could you purge all site cache and then deactivate that plugin. Next, clear your browser cache and reload your site. Often times, a caching plugin will interfere with site updates like this. Clearing it all out should provide a more accurate result of your style changes. You might also open your site in a different browser for comparison. Let us know your results. :)
    Becky

    Imagely Team
    The WordPress Photography People

    Stay connected with us & show your support by giving a ‘Like’ on: Facebook , Follow us on: Twitter & Google+
    ________________________________________

    On Mon, Sep 26, 2016 at 4:17 PM, Deanna Simone < (Email address hidden if logged out) > wrote:
    Thanks, sorry my misunderstanding. It’s still not working.

    Should it look like this: Lines 43 – 54

    .galleria-theme-nextgen_pro_lightbox .galleria-stage {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    }

    .galleria-theme-nextgen_pro_lightbox .galleria-stage {
    height:100% !important;
    }

    Cheers,
    Deanna Simone
    Virtual Administrator
    Rosewood Virtual Admin

    Tel: 289-338-7297 | Email: (Email address hidden if logged out)
    Online at: http://www.rosewoodva.ca

    This message contains confidential information and is intended only for the individual named. If you are not the named addressee, you should not disseminate, distribute or copy this email.
    Please notify the sender immediately by email if you have received this email by mistake and delete this email from your system.

    From: (Email address hidden if logged out) [mailto: (Email address hidden if logged out) ]
    Sent: September-26-16 4:05 PM

    To: Deanna Simone < (Email address hidden if logged out) >
    Subject: Re: NextGEN Pro: Fatal Error on filmstrip pro only on mobile

    Deanna –

    As noted previously, you may need to add that specific custom CSS directly into the file I pointed to.

    As to the Enfold components, and how they may or may not affect this issue … that is an unknown on our part as we are not familiar enough with their code/options/features to specifically say.

    Thanks!

    – Cais.

    Imagely Team
    The WordPress Photography People

    Stay connected with us & show your support by giving a ‘Like’ on: Facebook , Follow us on: Twitter & Google+
    ________________________________________

    On Mon, Sep 26, 2016 at 4:01 PM, Deanna Simone < (Email address hidden if logged out) > wrote:
    Hi Cais,

    Thanks for the solution, but it’s still showing error message on mobile (Android & iPhone after clearing caches many times) maybe I’m not implementing it correctly.

    Are you able to log into the back end of my website and see? I can create a temporary login for you.

    Now, I did disable to Enfold Lightbox Modal – I saw this on another support forum. Should this be enabled or disabled?

    Cheers,
    Deanna Simone
    Virtual Administrator
    Rosewood Virtual Admin

    Tel: 289-338-7297 | Email: (Email address hidden if logged out)
    Online at: http://www.rosewoodva.ca

    This message contains confidential information and is intended only for the individual named. If you are not the named addressee, you should not disseminate, distribute or copy this email.
    Please notify the sender immediately by email if you have received this email by mistake and delete this email from your system.

    From: (Email address hidden if logged out) [mailto: (Email address hidden if logged out) ]
    Sent: September-26-16 3:52 PM

    To: Deanna Simone < (Email address hidden if logged out) >
    Subject: Re: NextGEN Pro: Fatal Error on filmstrip pro only on mobile

    Deanna –

    Further review of this conversation, and the note that you are using a Child-Theme of the Enfold theme, this is a known issue with the enfold theme.

    You will need to add some custom CSS to correct for the problem.

    The issue is specifically with the CSS used here:

    ../wp-content/plugins/nextgen-gallery-pro/modules/nextgen_pro_lightbox/static/theme/galleria.nextgen_pro_lightbox.css

    The following added under Gallery > Other Options > Style should sort out this issue.

    .galleria-theme-nextgen_pro_lightbox .galleria-stage{
    height:100% !important;
    }

    If it does not, you will need to add the above to the file noted, and will have to do so again with every update to our plugin if the issue returns in those cases.

    Thanks; and, our apologies for not noting this earlier.

    – Cais.

    Imagely Team
    The WordPress Photography People

    Stay connected with us & show your support by giving a ‘Like’ on: Facebook , Follow us on: Twitter & Google+
    ________________________________________

    On Mon, Sep 26, 2016 at 3:35 PM, Deanna Simone < (Email address hidden if logged out) > wrote:
    Hi Cais,

    The Pro Gallery is working on mobile only when it is opened in a new window.

    Does this help your diagnostic at all?

    Cheers,
    Deanna Simone
    Virtual Administrator
    Rosewood Virtual Admin

    Tel: 289-338-7297 | Email: (Email address hidden if logged out)
    Online at: http://www.rosewoodva.ca

    This message contains confidential information and is intended only for the individual named. If you are not the named addressee, you should not disseminate, distribute or copy this email.
    Please notify the sender immediately by email if you have received this email by mistake and delete this email from your system.

    From: (Email address hidden if logged out) [mailto: (Email address hidden if logged out) ]
    Sent: September-26-16 3:13 PM

    To: Deanna Simone < (Email address hidden if logged out) >
    Subject: Re: NextGEN Pro: Fatal Error on filmstrip pro only on mobile

    Deanna –

    Switching themes and how well they retain their settings, etc. is solely on how the theme was built. If you have concerns with this specifically for your current theme then you would be best contacting the theme’s author to see if your concerns are warranted.

    Thanks!

    – Cais.

    Imagely Team
    The WordPress Photography People

    Stay connected with us & show your support by giving a ‘Like’ on: Facebook , Follow us on: Twitter & Google+
    ________________________________________

    On Mon, Sep 26, 2016 at 1:25 PM, Deanna Simone < (Email address hidden if logged out) > wrote:
    Hi Becky,

    Thanks for getting back to me. I have deactivated all the plugins but that did not resolve the issue.

    I am hesitant to switch the theme, will I lose all my formatting and pages, etc.? If you can please let me know if I will lose all the content, layouts, etc.? Thanks!

    Cheers,
    Deanna Simone
    Virtual Administrator
    Rosewood Virtual Admin

    Tel: 289-338-7297 | Email: (Email address hidden if logged out)
    Online at: http://www.rosewoodva.ca

    This message contains confidential information and is intended only for the individual named. If you are not the named addressee, you should not disseminate, distribute or copy this email.
    Please notify the sender immediately by email if you have received this email by mistake and delete this email from your system.

    From: (Email address hidden if logged out) [mailto: (Email address hidden if logged out) ]
    Sent: September-26-16 10:47 AM
    To: Deanna Simone < (Email address hidden if logged out) >
    Subject: Re: NextGEN Pro: Fatal Error on filmstrip pro only on mobile

    Hello Deanna!
    Errors like this can typically occur due to a conflict on your site. I’d like to have you try a few things here. Please deactivate ALL plugins. Please also temporarily switch your theme to a WordPress default theme like Twenty Twelve. Now, reactivate NextGEN Gallery & NextGEN Pro/Plus only. If this turns out OK and the error does not occur, switch back your theme. If there is still no error, than that’s a good sign – no theme conflict! :) Now reactivate each of your other plugins until the error comes back and let me know which one is the culprit.

    Keep me posted. :)
    Becky

    Imagely Team
    The WordPress Photography People

    Stay connected with us & show your support by giving a ‘Like’ on: Facebook , Follow us on: Twitter & Google+
    ________________________________________

    On Sat, Sep 24, 2016 at 1:51 PM, Deanna Simone < (Email address hidden if logged out) > wrote:
    Name
    Deanna Simone
    Email
    (Email address hidden if logged out)

    Brief subject of your request
    Fatal Error on filmstrip pro only on mobile
    What is this query referring to?
    An Imagely Plugin
    Which Imagely Plugin?
    NextGEN Pro
    What version number?
    nextgen 2.1.50 & nextgen pro 2.3.53
    What version of WordPress are you running?
    4.6.1 running Enfold-Child theme
    Have you tried deactivating all plugins to test for plugin conflict?
    Yes – no change.
    Have you tested for a theme conflict?
    Yes – no change.
    What browser do you see this error in?
    • Chrome
    Do you still see this error after clearing browser cache?
    Yes
    What happens when you disable ALL browser extensions/plugins?
    No change.
    Hosting Provider
    HostGator
    How can we help?
    The NextGEN Pro Film strip appears great on the website, it is only on mobile that I get the error message:
    “Fatal Error: Could not extract a stage height from the CSS. Traced height: 0px.
    Website

    Notice
    • My question is not about advanced customization.

    #692919
    ilkbaharkunduzu
    Participant

    Hi,

    I want to ask you something. After the upgrade of my site, it is not compatible with the internet explorer 8 and 9 I guess. I accidentally saw it on my friend’s laptop. I am actually using mac. I do not see any problem on my mac pro but I have just checked with the web service below using Internet Explorer 8, 9 and 10 which is problematic and my site looks like especially a listed lines in IE 8 without any picture on it. Do you know the reason for this? The guy from codeable has done it in a task recently.

    https://netrenderer.com

    Thanks

    #692900

    Hi!

    I changed the code to following one

    #header .widget {
      left:0%;
      padding-top: 0;
      margin-top: -10px;
      position: absolute;
      top: 0;
      transform: translate(-10%);
      z-index: 3;
      padding-bottom: 0;
    }
    

    Bird should be a little bit happier now :)

    Regards,
    Yigit

    bill311
    Participant

    Hi all!

    On a homepage I have two masonry grids:

    • First grid pulls only posts in the “Featured” category.
    • Second grid displays every other category except “Featured.”
    • Posts can be categorized into about 12 cats.
    • And many posts fall into multiple cats.

    The reason for the two grids:

    • Posts gets added quiet frequently and I only show the 3 latest posts in each grid on the homepage.
    • Some posts I want to stay on the homepage longer, so I flag them as “Featured” and use it sparingly.

    The problem is: If I have a post flagged as “Featured” and as “category 2” it will show in both grids.

    I saw the below thread to filter the query for “Category__not_in” which works, but it does it for all masonry grids.
    https://kriesi.at/support/topic/exclude-category-or-tag-from-masonry-pullavoid-duplicate-posts-on-frontpage/

    Is there anyway to apply the above filter to only one specific masonry grid? or another way to accomplish the goal? Clear as mud? :)

    Donkies11
    Participant

    Hello Enfold Support,

    We have a lot of pages where we’re creating a “header” element with the Color Section set at 75% Browser Window Height with a background image. This is a good page to use as an example: http://freshhfs.voxmaxum.com/company/sustainability/

    It’s great on desktop, however, it is way too big for mobile. Can you set me on the right path to have this element load appropriately for mobile?

    (See screenshot below.)

    Thank you,
    Greg

    screen shot of page on mobile

Viewing 30 results - 89,971 through 90,000 (of 142,836 total)