Location: site_wide_header
Arranger menu anglais RDV (Script)
document.addEventListener(“DOMContentLoaded”, function() { // Vérifiez si vous êtes sur la bonne page if (window.location.href.includes(‘/en/fd-booking/#/’)) { // Trouvez tous les éléments de menu const menuItems = document.querySelectorAll(‘.fframe_menu_primary’); // Modifiez leurs URLs menuItems.forEach(item => { const href = item.getAttribute(‘href’); // Remplacez les…Continue reading
CSS couleurs et boutons pour Affiliation
#back-to-site-link { display: none !important; } a[href=”https://francodeal.com/7d-connexion/?action=logout&redirect_to=https%3A%2F%2Ffrancodeal.com%2Faffiliation-tableau%2F&_wpnonce=6854756720″] { display: none !important; } nav.bg-gray-800 { background-color: black !important; } div.bg-gray-800 { background-color: #000000 !important; color: white !important; /* Modifie la couleur du texte en blanc */ } a.bg-gray-900 { background-color: #cd923d…Continue reading
Couleur filtre de droite Buddypress et la barre de recherce
#activity-filter-by { background-color: white; color: black; /* Vous pouvez ajuster la couleur du texte ici si nécessaire */ } /* Style du champ de recherche spécifique */ #dir-activity-search-form.bp-dir-search-form input[type=”search”] { width: 100%; /* Prend toute la largeur de son conteneur…Continue reading
Code CSS pour vidéos intégrées dans buddypress
/* Personnalisation des vidéos intégrées dans BuddyPress */ .bp-video-embed-wrapper { max-width: 100%; margin: 20px 0; padding: 10px; background-color: #f0f0f0; /* Couleur de fond légère */ border-radius: 8px; /* Coins arrondis pour un look plus doux */ box-shadow: 0 2px 10px…Continue reading
Faire les images apparaitre comme Buddy X pro
/* — Conteneur Principal de l’Activité — */ .buddypress .activity-inner { display: block; margin: 20px 0; padding: 15px; background: #fff; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } /* — Images Open Graph — */ .buddypress .activity-inner…Continue reading
Nouveau CSS Buddypress
/* === Style pour les avatars (cercle parfait petit) === */ #buddypress .activity-avatar img { border-radius: 50%; /* Cercle parfait */ border: 2px solid #000085; /* Bordure bleue élégante */ width: 40px; /* Diamètre pour les petits avatars */ height:…Continue reading
Bien étirer la largeur Classifieds
/* Forcer la largeur de tous les éléments .wp-site-blocks à 100% */ .wp-site-blocks { width: 100% !important; margin: 0 auto; }Continue reading
Deal OR
document.addEventListener(‘DOMContentLoaded’, function () { // Sélectionner l’élément avec la classe spécifique const titleElement = document.querySelector(‘h1.wp-block-blockstrap-blockstrap-widget-heading’); if (titleElement && titleElement.textContent.trim() === “FrancoDeal”) { // Modifier le texte de “FrancoDeal” en ajoutant la couleur à “Deal” titleElement.innerHTML = ‘FrancoDeal‘; } });Continue reading
Couleur titre Ajouter une annonce
body h1.mb-3.fw-bold.h2 { color: #333333 !important; }Continue reading