fix(double-logo w316): CSS preventif regression double logo sous partners slider
- CAUSE probable: React bundle render 2x logo weval dans partners slider / footer - FIX preventif: CSS global w316-double-logo-fix cache toute duplication logo-weval dans partner-logos, footer-logos, [class*=logos] - Applique :nth-of-type(n+2) display:none sur img[src*=logo-weval] - Cache sections NOS PARTENAIRES duplique si present - GOLD backup gold_double_logo_fix_w316 - chattr +i preserve - CF purge
This commit is contained in:
20
index.html
20
index.html
@@ -169,6 +169,26 @@ body:has(#weval-bot-panel.open) .whatsapp-widget{
|
||||
.wa-widget,.whatsapp-widget{bottom:88px!important;right:16px!important}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style id="w316-double-logo-fix">
|
||||
/* W316 Fix double logo sous slider partners - regression recurrent */
|
||||
/* Strategie: cache tout 2e logo dans meme parent juste apres le slider */
|
||||
.partners-slider ~ .partners-slider,
|
||||
.partner-logos ~ .partner-logos,
|
||||
[class*="partner"]:not([class*="single"]) + [class*="partner"]:not([class*="single"]){
|
||||
display:none!important
|
||||
}
|
||||
/* Si structure React render 2x le logo WEVAL dans footer/logos: seconde instance cache */
|
||||
.footer-logos img[src*="logo-weval"]:nth-of-type(n+2),
|
||||
.partners-logos img[src*="logo-weval"]:nth-of-type(n+2),
|
||||
[class*="logos"] img[src*="logo-weval"]:nth-of-type(n+2){
|
||||
display:none!important
|
||||
}
|
||||
/* Section NOS PARTENAIRES duplicate? */
|
||||
section:has(h2:contains("NOS PARTENAIRES")) + section:has(h2:contains("NOS PARTENAIRES")){
|
||||
display:none!important
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<script type="application/ld+json">
|
||||
{"@context":"https://schema.org","@type":"FAQPage","mainEntity":[
|
||||
|
||||
Reference in New Issue
Block a user