Jump to content

Mobile left column is hidden. Why?


trouille2

Recommended Posts

Hello, I try to set up the mobile css. I don't know where it's written but on mobile version, the left column is hidden by a hard coded  display:none; and the parent container (#left_column) has an "accordion" applied.

<div id="left_column" class="column col-xs-12 col-sm-3 accordion">
<div class="block_content" style="display: none;"> 

When I open header.tpl file, I don't have this "accordion"

 

Where can I remove the Accordion and the display:none?

Thanks 

Chris

Link to comment
Share on other sites

  • 1 month later...
  • 1 year later...
  • 1 month later...

Hi @kenkomuri

 

Ask your theme editor to fix it or get a freelance to do it for you... It will cost you a couple dollars and save you hours of work, you can ask @himanshu.jikadara on skype, he's a great dev...

 

Good luck with that

Link to comment
Share on other sites

  • 1 year later...

I know its been a long time but I am posting here since I stumbled upon this problem myself, I was able to circumvent it by adding the following to my css (within the media query that handles my mobile break off point).

 

@media (max-width: 767px) {
#layered_block_left .block_content {
    display: block !important;
}
}

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...