New responsive design for upcoming version 3.30. BETA testers needed!

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
10 年 前
XtremeCommerce wrote:
Hi Andrei

You need to use a media query for your logo !!, and create a smaller size for each size break.

     @media (max-width: 767px)
     {
         .header-logo img
         {
              width:50%;
         }
     }

     @media (min-width: 768px) and (max-width: 991px)
     {
         .header-logo img
         {
             width:70%;
         }        
     }

     @media (min-width: 992px) and (max-width: 1199px)
     {
         .header-logo img
         {
              width:85%;
         }        
     }

     @media (min-width: 1200px)
     {
          .header-logo img
          {
               width:100%;
          }        
     }


If they used bootstrap they could just add class="img-responsive" works like a charm.
10 年 前
Definitely a +1 for Bootstrap.
Their responsive CSS and grid systems are really easy to use, so would be great as a basis for future themes.
It also makes it a lot easier for themes to adapt to mobile, since Bootstrap 3.x has improved quite a lot in that area.
10 年 前
Hi
where are u standing with the responsive theme?
is it done done?
I posted RTL support, will u support it?
Is bootstrap still an option?

thanks
10 年 前
hezyz wrote:
where are u standing with the responsive theme? is it done done?

Yes, done

hezyz wrote:
I posted RTL support, will u support it?

Thanks a lot for this contribution. Still thinking about it

hezyz wrote:
Is bootstrap still an option?thanks

It definitely won't be done in 3.30. By the way, the work item is here. Its status is still proposed, so maybe it won't be ever done. Still thinking about.
10 年 前
Really hope, you'll go with bootstrap
10 年 前
Hi Guys

Please see revised post here.
10 年 前
Please also see (and vote if agree) for the following work item - Drop jQuery mobile version support (or move it to a plugin - separate theme). Anyway we already have the responsive theme available out of the box. It could be hard to maintain both of them.
10 年 前
+1 For Bootstrap would make theming so much easier!!
And most web developers should be familiar with the syntax by now.
10 年 前
Hi Sam

It would appear that not everyone is enthusiastic about Bootstrap as we are, which is real shame.
10 年 前
XtremeCommerce wrote:
Hi Sam

It would appear that not everyone is enthusiastic about Bootstrap as we are, which is real shame.


So maybe someone will create Default theme in bootstrap
If i knew how I would have done it and share
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.