Chitram news
Newspaper Banner
Date of Publish : 19 July 2025, 7:20 am Editor : Chitram news

బోథ్ కేజీబీవీలో సీట్ల కోసం స్పాట్ అడ్మిషన్స్

బోథ్ కేజీబీవీలో సీట్ల కోసం స్పాట్ అడ్మిషన్స్

చిత్రం న్యూస్, బోథ్:  ఆదిలాబాద్ జిల్లా బోథ్ కస్తూర్బా గాంధీ కళాశాల  ఇంటర్మీడియట్ లో ఎంపీసీ, బైపీసీ గ్రూపు లో మిగిలిపోయిన సీట్ల భర్తీ కోసం స్పాట్ అడ్మిషన్స్ నిర్వహిస్తున్నట్లు కళాశాల ప్రత్యేక అధికారిణి రాథోడ్ వలిత తెలిపారు. అడ్మిషన్స్ తీసుకునే అభ్యర్థులు ఈ నెల 22 న మంగళవారం తమ ఒరిజినల్ సర్టిఫికేట్ తో కేజీబీవీ లో హాజరుకావాలని కోరారు.

#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'; }