Chitram news
Newspaper Banner
Date of Publish : 30 March 2026, 8:31 pm Editor : Chitram news

రేణుకాపూర్ దక్షిణాముఖి హనుమాన్ ఆలయ అభివృద్ధి కోసం రూ.లక్ష  విరాళం అందజేత 

చిత్రం న్యూస్, బాసర: నిర్మల్ జిల్లా బాసర శ్రీ జ్ఞాన సరస్వతి అమ్మవారి క్షేత్రంలోని రేణుకపూర్ దక్షిణముఖి హనుమాన్ ఆలయ అభివృద్ధి కోసం గ్రామానికి చెందిన బాపూజీ జ్ఞానిపటేల్ తనయుడు పుట్టినరోజు సందర్భంగా రూ.లక్ష  చెక్కును గురుస్వామి శ్రీనివాస్ కు అందజేశారు. ముందుగా హనుమాన్ స్వామి సన్నిధిలో జ్ఞాని పటేల్ ప్రత్యేక పూజలు చేశారు. వీరికి గురుస్వామి ఆంజనేయస్వామి హారతి అందజేసి ఆయనకు శాలువాతో సన్మానించి ఆశీర్వదించారు. ఇలాంటి మన పురాతన హిందూ దేవాలయాల అభివృద్ధి కోసం కృషి చేస్తున్న జ్ఞాని పటేల్ ను ఆంజనేయ స్వాములు అభినందించారు. ఇటీవలే రేణుకాపూర్ హనుమాన్ ఆలయ అభివృద్ధి కోసం భక్తులు తమ వంతుగా సహాయ సహకారాలు అందిస్తున్నారని తెలిపారు.

#mobileMenu { display: none; position: fixed; top: 0; left: 0; height: 100%; width: 240px; background: #fff; box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2); z-index: 99999; padding: 20px; }

#mobileMenu a { display: block; padding: 12px 10px; color: #000; text-decoration: none; font-weight: bold; border-bottom: 1px solid #ddd; }

#mobileMenuClose { font-size: 20px; font-weight: bold; cursor: pointer; display: block; margin-bottom: 20px; }

@media (max-width: 768px) { #horizontalScrollMenu { font-size: 14px; } }

✖ Close
హోం

const header = document.getElementById('customStickyHeader'); const placeholder = document.createElement('div'); let isFixed = false;

window.addEventListener('scroll', function () { if (window.scrollY > 10 && !isFixed) { header.style.position = 'fixed'; header.style.top = '0'; header.style.left = '0'; header.style.right = '0'; header.style.zIndex = '9999'; header.style.boxShadow = '0 2px 5px rgba(0,0,0,0.2)'; placeholder.style.height = header.offsetHeight + 'px'; header.parentNode.insertBefore(placeholder, header); isFixed = true; } else if (window.scrollY <= 10 && isFixed) { header.style.position = 'relative'; header.style.boxShadow = 'none'; if (placeholder.parentNode) { placeholder.parentNode.removeChild(placeholder); } isFixed = false; } }); function toggleMenu() { const menu = document.getElementById('mobileMenu'); menu.style.display = menu.style.display === 'block' ? 'none' : 'block'; }