muktadhawan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to hide (delete) this text?Just give a class to this text then add display: none css to the given class
Forum: Fixing WordPress
In reply to: cant change header color?.header_s.header-fix.header_s1 {
background: #fff !important;
}
Try ThisForum: Fixing WordPress
In reply to: Image blurry on edge and chrome but not on firefoxAs you don’t want to share link of website. i will suggest use high resolutions images. Hope this work for you
Forum: Fixing WordPress
In reply to: responsive slider image width on mobileyou can add another div with different images.
And show it only on mobile view also hide desktop div in mobile
Forum: Fixing WordPress
In reply to: Date format on blot archive wrongYou can check it here (Settings ? General) in your website admin
Forum: Fixing WordPress
In reply to: Needing help to center single product image on WordPress StorePlease marked it as resolved
Forum: Fixing WordPress
In reply to: How to remove product image from reviewsYou can check is there is option in theme
OR
You can try this css#woocommerce_recent_reviews-11 img {
display: none;
}Forum: Fixing WordPress
In reply to: 2 Columns in Mobile VersionI have checked you did not add new code that i have sent you above. please try
Forum: Fixing WordPress
In reply to: Needing help to center single product image on WordPress StoreTry this css.Check if it work for you.
.home .products.columns-3 {
display: table;
margin: 0 auto !important;
}.home .products.columns-3 .product {
width: 100% !important;
}Forum: Fixing WordPress
In reply to: 2 Columns in Mobile VersionPlease try this
Replace your html:-
<div class=”wp-block-columns”>
<div class=”wp-block-column”>
<figure class=”wp-block-image size-large”>image code here</figure>
</div>
<div class=”wp-block-column”>
<figure class=”wp-block-image size-large”>image code here</figure>
</div>
<div class=”wp-block-column”>
<figure class=”wp-block-image size-large”>image code here</figure>
</div>
<div class=”wp-block-column”>
<figure class=”wp-block-image size-large”>image code here</figure>
</div>
</div><div class=”wp-block-columns”>
<div class=”wp-block-column”>
<figure class=”wp-block-image size-large”>image code here</figure>
</div>
<div class=”wp-block-column”>
<figure class=”wp-block-image size-large”>image code here</figure>
</div>
<div class=”wp-block-column”>
<figure class=”wp-block-image size-large”>image code here</figure>
</div>
<div class=”wp-block-column”>
<figure class=”wp-block-image size-large”>image code here</figure>
</div>
</div>Add in css file:-
@media only screen and (max-width: 767px)
.wp-block-column {flex-basis: 50% !important;}
.wp-block-columns {flex-wrap: nowrap;}
}
- This reply was modified 4 years, 3 months ago by muktadhawan.
Forum: Fixing WordPress
In reply to: alt tag appears next to picturehttps://ir-de.amazon-adsystem.com/e/ir?t=kuechenlatein-21&language=de_DE&l=li3&o=3&a=3850339157
alt tag is showing because above image is not there. please check you image path- This reply was modified 4 years, 3 months ago by muktadhawan.
Forum: Fixing WordPress
In reply to: After updating php I am unable to see the posts in homepage.I have checked you did not Comment “opacity: 0;” in “posts” class
first comment this then check
Forum: Fixing WordPress
In reply to: 2 Columns in Mobile VersionForum: Fixing WordPress
In reply to: After updating php I am unable to see the posts in homepage.Comment “opacity: 0;” in “posts” class like below i have done in your css file. then check if it help
.posts {
margin-bottom: -3rem;
/* opacity: 0; */
padding: 3rem 0;
}Forum: Fixing WordPress
In reply to: Customizing Title (log) fontCheers ??