Implemented banner with responsive issues

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Mon Nov 17, 2014 12:10 pm
Reply with quote
Report this post
Hi ,

I've installed a banner in the header position but it is not longer responsive.

Here the link

http://intireflectors.com/index.php/services

many thanks
User avatar
Expert Boarder

GK User
Mon Nov 17, 2014 6:51 pm
Reply with quote
Report this post
User avatar
Moderator

GK User
Mon Nov 17, 2014 7:21 pm
Reply with quote
Report this post
Sorry about that, my mistake, here the right link

http://intireflectors.com/index.php/reflectores

Thank you for your support
User avatar
Expert Boarder

GK User
Mon Nov 17, 2014 7:32 pm
Reply with quote
Report this post
Please add this declaration to override.css:
Code: Select all
.banneritem img {max-width: 100%;}
User avatar
Moderator

GK User
Mon Nov 17, 2014 7:37 pm
Reply with quote
Report this post
Hi Cyberek,

It works, Many thanks
User avatar
Expert Boarder

GK User
Tue Nov 18, 2014 11:30 am
Reply with quote
Report this post
Hi Cyberek,

I have another question, on the same website I'm using the custom module from Met Gavern, which is also responsive but on this site it doesn't work as responsive, Could you please help me with this issue?

here the site: http://intireflectors.com/

many thanks
User avatar
Expert Boarder

GK User
Tue Nov 18, 2014 4:52 pm
Reply with quote
Report this post
Could you please mark the problematic module on a screenshot and attach a link to our demo or any other service where this module behaves correctly?
User avatar
Moderator

GK User
Tue Nov 18, 2014 5:54 pm
Reply with quote
Report this post
Hi Cyberek,

Thank you for your support, The custom module from meet gavern is the one with 3 round icons and hover efects. This one is total responsive and very nice indeed.
So I put the same module on the creativity template but instead of 3 icons Im using 4 and the problem is that this new module is not responsive anymore.
I am attaching pictures of the module on my website and the original module from meet gavern.
User avatar
Expert Boarder

GK User
Fri Nov 21, 2014 10:08 am
Reply with quote
Report this post
I need to be able to see it on working environment. Please post 2 links - to a working version of this module (on our demo server) and to yours - not working correctly.
User avatar
Moderator

GK User
Mon Nov 24, 2014 11:54 am
Reply with quote
Report this post
Hi Cyberek,

Here is the site on an checksite in multiple screens:

http://www.viewlike.us/operator/#u=http ... m/|320|480

on a big screen it seems ok but on an smartphone of tablet this module is not more responsive. the original module is from
the site meet gavern: http://demo.gavick.com/free/meetgavern/

my site is www.intireflectors.com

thank you againg for your support.
User avatar
Expert Boarder

GK User
Fri Nov 28, 2014 8:13 pm
Reply with quote
Report this post
Sory for late response.
From what I see this is the reason:
Code: Select all
.row-fluid .span3 {
width: 22%;
}

You have this peace of code in override.css
User avatar
Moderator

GK User
Sat Nov 29, 2014 11:57 am
Reply with quote
Report this post
Hi Cyberek,
Thank you for you support, So far, I tried deleting it, but then the module doesn't work properly.
About that code, what should I do with it?
User avatar
Expert Boarder

GK User
Sat Nov 29, 2014 2:44 pm
Reply with quote
Report this post
Actually I would suggest to use media queries in override.css and target only this module rewriting it's responsive behave.
User avatar
Moderator

GK User
Sat Nov 29, 2014 3:22 pm
Reply with quote
Report this post
Hi Cyberek,

Actually I don't know how to do that, I just followed the instructions of an old threat in order to get this module on this template. Could you please adviced me how to get this module work properly and of course responsive?

thank you very much in advance
User avatar
Expert Boarder

GK User
Mon Dec 01, 2014 4:45 pm
Reply with quote
Report this post
Sorry, but this is way over our technical support. There is a lot of things to do - firstly I would suggest to use for elements with span3 class - box-sizing: border-box:
http://css-tricks.com/box-sizing/
Now after removing margins you could use width: 33% to create even spread.
Now with media queries you would need to create few "steps" and code different sizing of elements into them:
http://css-tricks.com/css-media-queries/
for example:
Code: Select all
.myElement {
  width: 50%;
}
@media (max-width: 600px) {
 .myElement {
  width: 100%;
 }
}

will cause elements wyth myElement class to be 50% width for browsers with width above 600px and 100% width wit 600px and under.

Sadly - that is that much I can help - using this knowledge and transforming it to working site is up to you.
User avatar
Moderator

GK User
Tue Dec 02, 2014 12:28 am
Reply with quote
Report this post
Thank you Cyberek,

Ill try to find out the solution with you suggestions.
User avatar
Expert Boarder

GK User
Tue Dec 02, 2014 9:37 pm
Reply with quote
Report this post
If you will have it almost working, or will need small tips feel free to ask. As long as it is not whole redesign process I'll be happy to give you some tips.
User avatar
Moderator


cron