Skip to content

Instantly share code, notes, and snippets.

@jmabbas
jmabbas / style.css
Created July 4, 2025 10:26
Deco - Header logo and menu style
@media(max-width:767px) {
.header-cus > div {
justify-content: space-between;
width: 100%;
padding: 0 20px;
}
}
@jmabbas
jmabbas / style.css
Created July 4, 2025 05:49
Electro - Footer contact style
.footer-call-us .call-us-text {
//your style code
}
.footer-call-us .call-us-number {
//your style code
}
.footer-address {
//your style code
@jmabbas
jmabbas / style.css
Created July 4, 2025 05:46
Electro - Page title customisation
.page article#post-2494 .entry-header h1.entry-title {
color: #000;
font-size: 50px;
padding: 20px;
margin: 20px;
}
@jmabbas
jmabbas / functions.php
Created July 3, 2025 05:26
Electro - Product Description on summary
function electro_product_description_tab() {}
if ( ! function_exists( 'el_child_product_description' ) ) {
function el_child_product_description() {
echo '<div class="electro-description clearfix">';
wc_get_template( 'single-product/tabs/description.php' );
echo '</div>';
}
}
@jmabbas
jmabbas / style.css
Created July 3, 2025 04:52
Electro - Hide sub menu arrow icon on static pages
body.page-template-default:not(.home) .electro-navbar-primary .nav>.menu-item.menu-item-has-children>a:after {
display: none;
}
@jmabbas
jmabbas / style.css
Created July 1, 2025 09:08
Pizzeria - Search page mobile two columns
@media (max-width: 600px) {
.archive.search .wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid.wp-block-post-template-is-layout-grid {
grid-template-columns: 50% 50%;
grid-gap: 10px;
}
}
@jmabbas
jmabbas / style.css
Created June 30, 2025 04:44
Techmarket - Header v8 background color
@media (min-width: 1025px) {
.site-header.header-v8 .site-branding {
background-color: #000;
}
}
@jmabbas
jmabbas / style.css
Created June 30, 2025 04:41
Silicon - Mobile sticky header background color
@media (max-width:768px) {
header#masthead .navbar-sticky {
background-color: #131022;
}
}
@jmabbas
jmabbas / style.css
Created June 27, 2025 11:10
Electro - Header v12 hide search
header .masthead form.navbar-search.col {
display: none;
}
@jmabbas
jmabbas / style.css
Created June 24, 2025 06:38
Electro - Loop Wishlist style
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor {
gap: 0;
font-size: 14px;
}