Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #1167148

    I’d like to have the background be transparent behind JUST the logo while having a white background behind the menu and move the full screen slider up behind the logo. Like this:

    View post on imgur.com

    #1167218

    hm – what i can not believe is that your home page is not declared as it is. : home – but nevertheless we can address that page via its id:

    .page-id-45 .av-section-bottom-logo.header_color {
        position: absolute;
        z-index: 5;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background: rgba(255,255,255,0.5) !important
    }

    you decide what looks best on transparency options.

    #1167222

    By the way – what kind of chairs are these? They look a bit like “upholstered Arne Jacobsen chairs”.

    edit : thanks i found it: “Armen Living Cassie Dining Chair”

    #1167260

    Hi,

    Thanks for helping out @guenni007. Did you try that out and did you have any luck with it @ewingmh?

    Best regards,
    Rikard

    #1167403

    Ha – yea I understand the confusion – I’m making this as a favor for a friend – and just noticed that the landing page gets screwed up as well if you choose that option for a menu configuration. I’ll migrate everything to a dev server and then see if I can get it to work correctly there. I’ll circle back around after the migration. Thanks

    #1167595

    Hi,

    Thanks for the update, we’ll leave this thread open in case you should need any further help.

    Best regards,
    Rikard

    #1168531

    seems to work on the dev server; https://www.crestedbuttecomputers.com/dev/paradisecb/

    Thanks!

    #1168551

    Doesn’t work on mobile though – any help?

    #1168555

    just use the css from above only for your non responsive case:

    @media only screen and (min-width:990px) {
    	.av-section-bottom-logo.header_color {
    		 position:absolute;
    		 z-index:5;
    		 left:50%;
    		 -webkit-transform:translateX(-50%);
    		 transform:translateX(-50%);
    		 background:rgba(255,255,255,0.0) !important
    	}
    }

    you had to style the header logo for 768px to 990px – because i think you would like to have logo too on left side as it is on 768px and smaller.
    It comes from that rule ( don’t know where it is from because you have allready merged the css):

    .html_header_top.html_logo_center .logo {
    left:50%; 
    -webkit-transform:translate(-50%,0); 
    -ms-transform:translate(-50%,0);
    transform:translate(-50%,0)
    }

    so maybe you use another media querry for it:

    @media only screen and (min-width:768px) and (max-width:989px) {
    	.html_header_top.html_logo_center .logo {
    		left: 0;
    		-webkit-transform: none; 
    		-ms-transform: none;
    		transform: none
    	}
    }

    maybe an !important is necessary – we will see

    #1168657

    And… what if they want to add the phone number extra element above the menu?

    Thanks

    #1168750

    what do you think could be done if there is an additional height on top of 30px ? …
    ( it is now translateXY – and that is shortend to translate( x, y) )

    @media only screen and (min-width:990px) {
     .av-section-bottom-logo.header_color {
      position:absolute;
      z-index:5;
      left:50%;
      -webkit-transform:translate(-50%, 30px);
      transform:translate(-50%, 30px);
      background:rgba(255,255,255,0) !important;
     }
    }

    you don’t adjust the logo for between 768px and 990px – thats a wanted variant – or have you forgotton to add this rule:

    @media only screen and (min-width:768px) and (max-width:989px) {
    	.html_header_top.html_logo_center .logo {
    		left: 0;
    		-webkit-transform: none; 
    		-ms-transform: none;
    		transform: none
    	}
    }
    #1168765

    Thanks for the condescending tone – I had tried all sorts of variations of the same – doesn’t work.

    Thanks
    Mark

    #1168895

    Sorry, that was my mistake – I only replaced the transform code and not the webkit-transform code.

    @media only screen and (min-width:990px) {
     .av-section-bottom-logo.header_color {
      position: absolute;
      z-index: 5;
      left: 50%;
      -webkit-transform: translate(-50%, 30px);  /*** only translate not translateX because here are x,y values ***/
      transform: translate(-50%, 30px);   /*** only translate not translateX because here are x,y values ***/
      background: rgba(255,255,255,0) !important;
     }
    }
    #1168900

    Hello. Is there an opportunity to get this effect on the mobile version and a different bit on the desktop version of the site?

    Link of images

    • This reply was modified 4 years, 10 months ago by petsrdjan.
    #1169064

    Hi,

    Thank you for contacting us.

    To centre the logo please follow the step by step instructions provided in the documentation

    To achieve a transparent header in mobile please check the below link

    Let us know if you have any questions, we are happy to help you :)

    Best regards,
    Vinay

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