Riddhika Ventures Mens Stunning Gold Plated Designer Brother's Rakhi

(4.8 out of 5 stars)

About this item

  • Package Contains only: Festival Rakhi, Roli Chawal and Greeting card. Pillow and other Decorative Item only for Decoration
  • Use this beautiful rakhi fo...
₹399.00
Buy Now

Fast Delivery

Receive your orders quickly with our express shipping options.

Easy Returns

7-day hassle-free return policy for all products.

100% Authentic

All products are genuine and verified by experts.

Verified Quality

Astroexpertvoice quality assured on every product.

Frequently Asked Questions

What is the delivery time?

Delivery typically takes 7-10 business days depending on your location. We provide tracking information once your order is shipped.

Is this product authentic?

Yes, all products are 100% authentic and verified by Astroexpertvoice. We source directly from authorized dealers and manufacturers.

Can I return the product?

Yes, you can return the product within 7 days of delivery. The product should be in original condition with all tags and packaging intact.

What payment methods do you accept?

We accept all major credit cards, debit cards, UPI, net banking, and cash on delivery for eligible orders.

Found it — the bug is a timing issue with hidden elements, and it explains why local "looks perfect" while live doesn't (timing is non-deterministic, so it's really just luck either way). Root cause javascript This runs initGoogleAuthButton() the moment the Google script finishes loading — which is almost immediately on page load, before the user has even opened the login modal. But your modal starts hidden: css .modal-overlay { display: none; ... } An element with display: none (or a hidden ancestor) always reports offsetWidth = 0. So: javascript width: container.offsetWidth, // reads 0 when the modal hasn't been opened yet Google then falls back to its own default minimum button width instead of matching your container — which is exactly the shrunk-looking button you're seeing. On local it likely "worked" purely by coincidence of load timing, network speed, or you happening to open the modal slowly enough for something to re-trigger — not because the code was actually correct. Fix — render the Google button only when the modal is actually opened, not on page load Since showLoginModal() lives in auth_system.js (which you haven't shared), the safest fix that doesn't require touching that file is to watch for the modal's active class being added, and render the button at that moment — when its real width is available. Replace your current Google script block with this: html