soxophoneplayer:
In the templates/ResponsiveSheffieldBlue/css/responsive_mobile.css file - here's what I did:
For Mobile Portrait -
~#364 I commented out the display:none...change to- ```
#navMainSearch{float:none;width:100%;border:1px solid #000;/display:none;/}
>
> and I added line underneath it:
>
> ```
.search-header-box{width: 75% !important;padding-right: 1.5em;}
then, around line #3648 change #navMainSearch to : ```
#navMainSearch{top:0;}
>
>
> For Mobile Landscape -
> ~#51 change to- ```
#navMainSearch{float:none;width:100%;border:1px solid #000;/*display:none;*/}
and add line underneath:
.search-header-box{width: 80% !important;padding-right: 1.5em;}
> and
>
> ~#174 change #navMainSearch to ```
#navMainSearch{top:0;}
I didn't have any luck with this until I added the '!important - then it showed up
I fiddled with the width %, working with my own iphone 6s+
Also fiddled with the padding so that the little search icon didn't overlap the search box. My head hurts when I'm trying to sort out margins/padding!
I'm using zen cart 1.5.5d, Responsive Sheffield Blu2 2.0 and a bunch of mods.
soxophoneplayer:
I had a similar issue with something else when I was first setting up my mobile. The solution I found was to edit includes/templates/ResponsiveSheffieldBlue/css/stylesheet.css
Around line 370 in the original file:
.non-semantic-protector { position: relative; z-index: 1;}
>
> I changed that to:
>
> ```
.non-semantic-protector { position: relative;/* z-index: 1;*/}
I just tried changing back to the original, and on my mobile site that causes the scenario you describe. I have no idea what or why this is...according to my notes its something I found on google. Whatever it is, it seems to work!
Hopefully this will work for you to.
Again, that worked sort of but I think I'm happy with the results. It left the search box on the home page and removed it from the menu page. That's fine. Thanks so much for your help!
Carol