XF 1.4 Responsive problem

Pierre Boulanger

Active member
Hello,

I need some help. As you can see in the attached screens I'm facing some responsive issues. The device is a Samsung S6 edge+ (6")

Can you please advise how to solve it?

lastly, where i can modify the Facebook facepile size for more profile photos of people who have connected to be shown?
 

Attachments

  • Screenshot_2015-08-18-16-03-19.webp
    Screenshot_2015-08-18-16-03-19.webp
    69.8 KB · Views: 19
  • Screenshot_2015-08-18-16-03-38.webp
    Screenshot_2015-08-18-16-03-38.webp
    75.6 KB · Views: 16
  • 2015-12-11 10_37_37-my2cv.gr - The story of a legend.webp
    2015-12-11 10_37_37-my2cv.gr - The story of a legend.webp
    23.4 KB · Views: 16
The issues relate to the second image in your header causing wrapping. You'll need to add CSS at the correct breakpoint to consider shrinking or hiding the second image.

In terms of the Facebook thing, that looks like something you've custom added, so I'm not sure where you'd find it specifically (template? widget framework?). You should be able to adjust the size there, though you may need to refer to Facebook docs to identify how.
 
You already have CSS to hide it:
Code:
@media (max-width:400px) {
.my-header-text {
display: none;
}
}

You just need to hide it at a wider width (change the 400px to something like 520px).
 
Top Bottom