*

BabyDunk

  • ****
  • 161 posts
style for "send to friend" responsive not good
« on: June 22, 2016, 03:47:55 PM »
Hi Frosticek

i find the style for "send to friend" layout very bad  when you go responsive.

i think its much better if these  lines where changed
Code: [Select]
#friend .third {width:48%;float:left;margin-right:2%;margin-bottom:10px;clear:both}
#friend .four {width:48%;float:right;margin-left:2%;}

to this
Code: [Select]
#friend .third {width:100%;float:left;margin-right:2%;margin-bottom:10px;}
#friend .four {width:100%;float:right;margin-left:2%;}

i know it takes up abit more space on the desktop version but responsive is alot neater throughout.


Cheers
Chris
« Last Edit: June 25, 2016, 12:18:29 PM by BabyDunk »
I Am A Noob But I Am Here To Learn.
Please be patient ;) ;D

*

MB Themes

Re: style for "send to friend" responsive not good
« Reply #1 on: June 22, 2016, 05:37:53 PM »
@aweegander
On responsive view, these lines are expanded to be full width.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

BabyDunk

  • ****
  • 161 posts
Re: style for "send to friend" responsive not good
« Reply #2 on: June 25, 2016, 11:29:17 AM »
they do not Frosticek. check your own demo for responsive  http://patricia.mb-themes.com/item/send-friend/239

they stay in columns  and things just get abit untidy in responsive under 504px

cheers
Chris
I Am A Noob But I Am Here To Learn.
Please be patient ;) ;D

*

BabyDunk

  • ****
  • 161 posts
Re: style for "send to friend" responsive not good
« Reply #3 on: June 25, 2016, 12:21:40 PM »
i reverted back the style in style.css

Code: [Select]
#friend .third {width:48%;float:left;margin-right:2%;margin-bottom:10px;clear:both}
#friend .four {width:48%;float:right;margin-left:2%;}


and placed this in the responsive.css
Code: [Select]
@media screen and (max-width: 515px){   
  #friend .third {width:100%;float:left;margin-right:2%;margin-bottom:10px;}
  #friend .four {width:100%;float:right;margin-left:2%;}
}

everything looking good now mater the screen resolution

ps:i was a dummy, dont know why i didnt do the @media command to begin with :-/ lol

Cheers
Chris
« Last Edit: June 25, 2016, 06:08:31 PM by BabyDunk »
I Am A Noob But I Am Here To Learn.
Please be patient ;) ;D

*

abogoud

  • *
  • 3 posts
Re: style for "send to friend" responsive not good
« Reply #4 on: July 04, 2016, 01:45:45 AM »
@BabyDunk
thanks