Break points for mobile
-
Hi!
I have been having issues since prior to the most recent wordpress update with my instagram feed formatting weird at certain breakpoints. Specifically when I hit the breakpoint for tablet in portrait, the feed gets really small, as if it is at the break point for a phone. I’m not sure if it is the footer widget I need to change or the plugin css I need to customize.
I tried using the below CSS on both my theme css and plugin css and neither seemed to work. Is this something you can help with?
my site is https://www.headedanywhere.com
/* Tablets in portrait mode (768-980px) */
@media only screen and ( min-width: 768px ) and ( max-width: 980px ) {
.fwidget.et_pb_widget {
width: 100%;
}
}/* Smartphones in landscape mode (480-768px) */
@media only screen and ( min-width: 480px ) and ( max-width: 767px ) {
.fwidget.et_pb_widget {
width: 100%;
}
}Thanks!
- The topic ‘Break points for mobile’ is closed to new replies.