-
AuthorPosts
-
March 26, 2019 at 6:22 pm #1083188
Hi there,
for one of our websites I have found how to make gradiant for header background from grey to white, but our customer want’s to have a gradiant from grey to transparant. This means Slider should ‘merge’ with the header on top if possible. This is CSS I have used for gradient:
#top.home .caption_framed .slideshow_caption .avia-caption-content p, #top.home .caption_framed .slideshow_caption .avia-caption-title, #top.home .avia-caption .avia-caption-content p, #top.home .avia-caption .avia-caption-title {
background: #fff;
filter: alpha(opacity = 80);
background: rgba(255, 255, 255, 0.5);
}I have also tried to display none background color of the header and upload an self made gradient from grey to transparent, but that didn’t work.
Would be really happy if you could help me with this topic.Kind regards
RicardaMarch 26, 2019 at 6:27 pm #1083189You can use “background-image: linear-gradient” for that.
=> https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient
=> https://www.w3schools.com/css/tryit.asp?filename=trycss3_gradient-linear_trans
March 26, 2019 at 9:59 pm #1083270Hey there,
as I already wrote I did a gradient background but I need a transparent gradient. So that the slider merges with the header.
- This reply was modified 5 years, 8 months ago by jumpsales.
March 26, 2019 at 10:26 pm #1083281no one hampers you to have an opacity of 0.001 ;)
see here with predefined color to transparent : Gradient Tool
f.e:#top .av_header_transparency .header_bg { background-image: -ms-linear-gradient(bottom,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-image: -moz-linear-gradient(bottom,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-image: -o-linear-gradient(bottom,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(255,255,255,0.001)),color-stop(45,rgba(255,255,255,1))); background-image: -webkit-linear-gradient(bottom,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-image: linear-gradient(to top,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-color: transparent !important; }
for detailed advices i had to see the corresponding site.
- This reply was modified 5 years, 8 months ago by Guenni007.
March 28, 2019 at 11:17 am #1084036Well didn’t work quite – really transparacy seems not to be possible. Sorry for my first post realized, that I didn’t copy gradiant from homepage.
Thx for help
March 28, 2019 at 11:47 am #1084048It does work in up to date browsers … as shown in the links i posted before.
I checked it in Chrome and Firefox.try this, light gray to transparent:
background-image: linear-gradient(to top, rgba(220,220,220,0), rgba(220,220,220,1));
Edit:
Make sure you don’t use any background-color or css-filter together with it.- This reply was modified 5 years, 8 months ago by cg.
March 28, 2019 at 1:32 pm #1084086Hey cg,
thank you, but seems not to be possible to use no background – I tried with css but it always takes standard background color which I can not delet in backend (or I am simply not able to do it XD). Do you have any suggestion?
Thx
March 28, 2019 at 2:05 pm #1084097Without seeing the actual site and its HTML and CSS i cannot suggest specific CSS-snippets for you. If you want, you can post a link to the page in question to a comment so i can have a look. I can’t see private content as i am not a moderator or developer from Enfold/Kriesi.
To “disable” the background-color of the element which may be inserted by the theme you can use this for the element with the gradient and maybe for some element between it and the page content too:
background-color: transparent !important;
March 28, 2019 at 2:10 pm #1084099Hey cg,
I can give you the preview login so you can see the page:
User: XXX
Pass: XXX- This reply was modified 5 years, 8 months ago by jumpsales.
March 28, 2019 at 2:15 pm #1084101A link to the page would be enough … no login needed as long as there is no pass-protection on the overal site itself … better you remove the login-info. :-)
March 28, 2019 at 2:22 pm #1084104You will need login info because with link you can’t see the website – it is in maintenance mode.
Oh of course here the adress: wiesinger-zahnarzt.de- This reply was modified 5 years, 8 months ago by jumpsales.
March 28, 2019 at 2:49 pm #1084120OK … i can see the page now.
At first: You should consider to use the “transparent header” option for pages where you want the header/navi to overlay the content (Docs: https://kriesi.at/documentation/enfold/header/).
Because when you use the standard configuration (normal header) the content itself is pushed downwards … resulting in a not seeable transparency because there is nothing below the header. But this depends on the overall concept … e.g. if you need this setting elsewhere.In the following i will work with your settings as is … and for that pull the content back to top so there “is something” to overlay.
Quick-CSS to pull up the content:
.html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 0 !important; }
Now to eliminate the theme header bg-color:
.header_color .header_bg { background-color: transparent !important; }
From this point on you can experiment with your settings/adjustments of the transparency gradiant.
Does that help? Do you need further assistance?
March 28, 2019 at 5:03 pm #1084188Hey cg,
thank you a lot for your help. Have thought about transparent header, but that wouldn’t work with the slider. I tried your CSS which worked. But I think I will change slider and make transparent header. Thank you so much for your help you were great!
March 28, 2019 at 5:11 pm #1084191You could also consider to use a white or gray “box shadow” from the header into the slider-images.
=> https://www.w3schools.com/CSS/tryit.asp?filename=trycss3_box-shadow3
=> https://kriesi.at/support/topic/sticky-header-shadow/
Or use images with more space at the top, so no important parts of them are hidden by the header.
It’s now more a question of the stylistic concept how to use the transparency or shadow.
—–
Edit:
Not sure if that lies in your responsibility, but i think the dentist needs a better logo …
The current one does not work because of its dimensions / proportions … also not because of the colouring / inverse look (obviously you can’t make the teeth graphic gray or dark as a dentist, but you also don’t want to use a whole dark area for backgrounds … dentists are clean, bright and white) … and last but not least the font used for the logo is a “No-Go” (is it ‘Bank Gothic’ ?) …- This reply was modified 5 years, 8 months ago by cg.
March 30, 2019 at 7:19 am #1084818Hi,
Big thanks to @cg for helping out! Please let us know if you should need any further help on the topic @jumpsales.
Best regards,
Rikard -
AuthorPosts
- You must be logged in to reply to this topic.