Tagged: , ,

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #861176

    I’ve tried looking through other posts but for some reason I can’t get this to work. I’ve tried implementing css from other posts in Quick CSS and it’s not working for the iPad (testing on an older iPad in portrait view) The code would hide the menu but the burger icon for responsive menu is not displayed.

    I’ve already implemented Mobile CSS for my mobile phone and that is working perfectly. See login information attached to this post. Thank you very much!

    #861983

    Hey sniffytobias,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (min-width: 768px) and (max-width: 1024px) {
      .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
      .flex_cell.av_one_half  {
        padding: 40px !important;
      }
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #864992

    Victoria,

    First off, thank you very very very very much for those quick CSS styles for mobile and tablet. They worked perfectly!

    Next question, Throughout the site I’m changing each page under > Layout > Header visibility and transparency to “Transparent Header”. My question is, how can I make this default for all archive pages? I’m using Event Calendar PRO but when I go to a individual event it’s showing the default page style with a white bg header. Any ideas? Thanks

    #864994
    #864999

    Hi Yigit,

    I appreciate the fast response, I’ve added the following code to my functions.php file:

    add_action( 'after_setup_theme', 'ava_enfold_builder_layout_mod' );
    function ava_enfold_builder_layout_mod(){
    	add_filter('avf_builder_elements', 'avf_enfold_builder_layout_settings_mod');
    }
    
    function avf_enfold_builder_layout_settings_mod($elements)
    {
    	$counter = 0;
        foreach($elements as $element)
        {
    // Layout > Header visibility and transparency
    		if($element['id'] == 'header_transparency')  {
    			/**
    			 *
    			 * Available Options
    			 * No transparency =
    			 * Transparent Header = 'header_transparent'
    			 * Transparent Header with border = 'header_transparent header_with_border'
    			 * Transparent & Glassy Header = 'header_transparent header_glassy '
    			 * Header is invisible and appears once the users scrolls down = 'header_transparent header_scrolldown '
    			 * Hide Header on this page = 'header_transparent header_hidden '
    			 * MOD: Set the Layout >  Header visibility and transparency settings to "Hide both"Header is invisible and appears once the users scrolls down"
    			 *
    			**/
                $elements[$counter]['std'] = 'header_transparent';
            }
    
            $counter++;
        }
    	return $elements;
    }
    

    But was unsuccessful. I tried going into Enfold > General Styling and changing the Main Background > Logo Area background to the header image used for all pages which is a step in the right direction but ultimately I’d love to mimic the same look across all pages including the individual event page(s).

    #865014

    Here is a link to a test individual event so you can see what I am referring to – http://fireverpines.com/event/test-event/

    My ultimate goal as explained above would be to have the header area be Transparent like every other page and have the same image/title used for the background as shown on the following page – http://fireverpines.com/about/

    Let me know what it would take to accomplish that. Thanks!

    #865793

    Hi sniffytobias,

    For the events to have the same pretty header, you need to have the same parallax section on top of every event. And I’m not sure how to hardcode it in there :|

    Best regards,
    Victoria

    #868414

    I really need this to work and at this point in development I would really like to avoid switching themes. This theme is the best theme I’ve used in the 8 years I’ve been working with WordPress. Surely someone in the development team can provide some direction? Thanks in advance.

    #868416

    Thinking about this differently perhaps we can go about this a different way… For example when adding products in WooCommerce, in the product editor, i’m giving the option for either the Default Editor or to use the Advanced Layout Builder.

    What in the backend of products is giving me the option for the Advanced Layout Builder? Perhaps this same logic could be applied to Event post types? That would certainly solve my issue.

    #868791

    Hi sniffytobias,

    I’ll ask my colleagues to have a look. But this kind of customization is out of the scope of our support.

    Best regards,
    Victoria

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.