-
AuthorPosts
-
January 24, 2017 at 9:39 pm #737964
Hi,
i am on the latest version of wordpress and enfold and i cant find “transparent header” option on product sites too…Thanks a lot!
January 25, 2017 at 4:53 pm #738471any idea?
January 28, 2017 at 7:46 pm #739743Hi,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
#top #header { position: absolute; background: rgba(255,255,255,0.6); } #top #header .header_bg { background: transparent; opacity: 0; filter: alpha(opacity=0); }Let us know if this helps :)
Best regards,
NikkoJanuary 30, 2017 at 3:57 pm #740238Hi,
yes works fine. thank you.
but border ist still white.
do have any css?thank you!
January 30, 2017 at 4:01 pm #740241Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.single-product #header_main { border: none; }Best regards,
YigitMarch 3, 2017 at 4:08 pm #755144Thanks worked fine, but now i got a grey header on mobile. how du i get that white?
March 5, 2017 at 7:28 am #755845Hi,
Your header is displaying white on my end when checking in Chrome, could you try clearing your browser cache and a reload to see if that helps please?
Best regards,
RikardJune 23, 2020 at 2:56 pm #1224884You can filter the enfold header classes to enable transparent headers on woocommerce pages.
/** * Add transparent header on woocommerce pages */ add_filter('avf_header_setting_filter', function ($header) { if (is_shop()) { // use check for your need $header['header_transparency'] = 'header_transparency'; $header['header_title_bar'] = 'hidden_title_bar'; $header['header_class'] = $header['header_class'] . ' av_header_transparency'; } return $header; }, 1);-
This reply was modified 5 years, 4 months ago by
Resonanz Digital.
June 23, 2020 at 9:53 pm #1224954Hi Resonanz,
Thanks for helping out :)
Best regards,
Nikko -
This reply was modified 5 years, 4 months ago by
-
AuthorPosts
- You must be logged in to reply to this topic.
