0
Skip to Content
Cannavine
About 1
Home
Menus
UKIAH MENU
SAN FRANCISCO MENU
SANTA ROSA MENU
Dispensaries
Specials
San Francisco Specials
Santa Rosa Specials
Ukiah Specials
About
Contact
Cannavine
About 1
Home
Menus
UKIAH MENU
SAN FRANCISCO MENU
SANTA ROSA MENU
Dispensaries
Specials
San Francisco Specials
Santa Rosa Specials
Ukiah Specials
About
Contact
About 1
Home
Folder: Menus
Back
UKIAH MENU
SAN FRANCISCO MENU
SANTA ROSA MENU
Dispensaries
Folder: Specials
Back
San Francisco Specials
Santa Rosa Specials
Ukiah Specials
About
Contact

GOOGLE ፨ INSTAGRAM ፨ PRIVACY POLICY ፨ BLOG ፨ SOCIAL EQUITY

© 2025 Cannavine

UKIAH CANNAVINE DISPENSARY
1230 Airport Park Blvd. Suite C,
Ukiah, CA 95482


9am - 8:30pm
Monday - Sunday

(707) 621-9223
C10-0000113

SAN FRANCISCO CANNAVINE DISPENSARY
70 2nd Street,
San Francisco, CA 94105


9am - 8:30pm
Monday - Friday
10am - 7pm
Saturday & Sunday

(415) 766-4372
C10-0000539

SANTA ROSA CANNAVINE DISPENSARY
1831 Guerneville Rd,
Santa Rosa, CA 95403


9am - 8:30pm
Monday - Sunday

707-757-5426
C10-0001157

let currentIndex = 0; const items = document.querySelectorAll('.carousel-item'); const totalItems = items.length; const showItem = (index) => { // Ensure the index is within range if (index < 0) { currentIndex = totalItems - 1; } else if (index >= totalItems) { currentIndex = 0; } else { currentIndex = index; } // Move the carousel const offset = -100 * currentIndex; const carousel = document.querySelector('#textCarousel'); carousel.style.transform = `translateX(${offset}%)`; }; // Event listeners for the buttons document.querySelector('.prev-button').addEventListener('click', () => { showItem(currentIndex - 1); }); document.querySelector('.next-button').addEventListener('click', () => { showItem(currentIndex + 1); }); // Initial show showItem(currentIndex);