baranwal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Wasting time with featured imagesHi,
How do you include the image to your card? If possible try to figure out how to add srcset to your image tag. Basically, srcset is the Html attribute which includes all the images which are created at the time of upload in WordPress with their dimensions. It helps you to perfectly fit with your card with the right dimension of image of all the screen sizes. Also, If you add image to your card from WordPress editor then the srcset will already be added with the image tag.
- This reply was modified 6 years, 6 months ago by baranwal.
Forum: Fixing WordPress
In reply to: Cannot share link to FacebookMay be this StackOverflow will help you.
Forum: Fixing WordPress
In reply to: white space over my page which follows while I scrollIt seems working fine for me. I didn’t see any whitespace when I scroll the page. Please try to reload the page after clearing your browser cache may bt it works for you.
Forum: Fixing WordPress
In reply to: Wasting time with featured imagesSeems that your image is of dimension 250X200 and the card width is approx 370px that why image stretched and cause the blurry effect. Try to make your card fit with the image dimension or you can use a different dimension(bigger than current one) image in your card.
Forum: Fixing WordPress
In reply to: “Align Center” doesn’t work after upgradeMy Pleasure 🙂
Forum: Fixing WordPress
In reply to: Website loads on any other device except my laptopI have tried to open your site and seems that one of your URL https://analytics.seogears.com/piwik.js takes too much time to load or stuck in loading. If I blocked this URL from the browser network tab then your website loads quickly than before. May be after resolving this issue will help you.
Forum: Fixing WordPress
In reply to: Cannot move image downwardsTry with adding a
<br />tag between your image and text. If it works and you want more spaces between text and image try to add another<br />tag. May be it can help you.Forum: Fixing WordPress
In reply to: “Align Center” doesn’t work after upgradeJust change your aligncenter class CSS to the below code. It works on your page.
.aligncenter{ display: block; margin-left: auto; margin-right: auto; }Forum: Fixing WordPress
In reply to: Image grayscale to color animationYou can use below JS code that first shows all images to grayscale for 3s and after that, it fills color in all the images.
You can try this code to your browser console to your page http://auriehallart.com/
(function(){ jQuery('img').css('filter', 'grayscale(100%)'); setTimeout(function(){ jQuery('img').css('filter', 'none'); }, 3000); // change this time according to your need, currently it is 3s. })();Forum: Fixing WordPress
In reply to: Update issue – can’t loginAlso, you can have a look at this Password Field is disabled may be it can help you better.
- This reply was modified 6 years, 6 months ago by baranwal. Reason: Adding link title