Mobile version

Support Area Forums Bottega Mobile version

Viewing 8 posts - 1 through 8 (of 8 total)
URL to the page in question: www.comicbookhideout.com
  • Author
    Posts
  • #29947
    Glynnes Pruett
    Participant

    Hi Bill!

    I was wondering if there was a way to adjust the mobile version of my site. I want to eliminate my small menu boxes completely on my mobile version. Just have the menu bar, shop pix and then go directly to find us and hours. is this possible?

    Thanks!

    #29948
    Bill Robbins
    Moderator

    Hello Glynnes,

    Great question. I believe we can do that. Here’s how:

    1. Go to your theme options page and choose the Advanced tab.
    2. Scroll down to the Custom CSS box and add this:
      
      @media only screen and (max-width: 767px) {
      
      	#features {
      		display: none;
      	}
      	
      	#home-middle .widget {
      		display: none;
      	}
      	
      	#home-middle .organizedthemes_contact {
      		display: block;
      		margin-top: 30px;
      	}
      
      }
      
    3. Update your settings.

    Let me know if that doesn’t do the trick.

    Have a great day,
    Bill

    #29949
    Glynnes Pruett
    Participant

    Thanks Bill! Hmm.. what if i just wanted to get rid of the featured row widgets? The events, the instagram and everything else can stay, just getting rid of that. Is that possible?

    #29950
    Bill Robbins
    Moderator

    You can do that too. Use this snippet instead of the one above:

    
    @media only screen and (max-width: 767px) {
    
    	#features {
    		display: none;
    	}
    	
    	#home-middle .organizedthemes_contact {
    		margin-top: 30px;
    	}
    
    }
    

    See how that turns out.

    #29951
    Glynnes Pruett
    Participant

    thats great bill! Thank you! Is there also a way to make it full screen? Eliminating the background would maximize the space, is that possible or would that require you to re-make the entire theme? I don’t want to do that, haha. Thank you, for all that you do Bill.

    #29952
    Bill Robbins
    Moderator

    Also a good question. That would probably take recreating most of the theme though. Sorry about that 🙁

    #29953
    Glynnes Pruett
    Participant

    Totally fine! Thank you for your help!

    #29954
    Bill Robbins
    Moderator

    Anytime 🙂

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Mobile version’ is closed to new replies.