చిత్రం న్యూస్, ఆదిలాబాద్: ఆదిలాబాద్లోని శ్రీ కొండా లక్ష్మణ్ తెలంగాణ ఉద్యాన విశ్వ విద్యాలయ పరిధిలోని ఉద్యాన పాలిటెక్నిక్ కళాశాలలో మంగళ వారం ఉదయం 11:00 గంటలకు మామిడి (208 చెట్లు), నిమ్మ (30 చెట్లు) ఫలసాయపు హక్కుల కోసం కౌలు వేలం (ఓపెన్ ఆక్షన్) నిర్వహించనున్నట్లు కళాశాల వైస్ ప్రిన్సిపాల్ డా. కె. ప్రభావతి తెలిపారు. వేలంలో అత్యధిక ధర పలికిన వారికి మాత్రమే ఫలసాయపు హక్కులు షరతులకు లోబడి ఇవ్వనున్నామన్నారు. ఔత్సాహికులు వేలంలో (ఓపెన్ ఆక్షన్) పాల్గొని సద్వినియోగం చేసుకోవాలని ఆమె కోరారు.
#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; } }
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';
}

