In page.tpl.php I changed from "full_html" to "2".

If I have just Slide Hedaline text, in mobile version everything works well. When I add a Slide Description like <strong><h5>"<font color=#DC1010>Description text.</font>"</h5></strong> Other description text , in mobile version the text is not properly scaled and only the last part of the text (simple text and part of the strong/h5/font color text) is shown.

Comments

sterndata’s picture

I turned off the text (other than the heading) on the slider images when it's in narrow screen mode:

@media screen and (max-width: 640px) {

   /* disable the 'body' text on the slider */   
   #slider .entry-summary {
      display:none;
   }

}

That's addressed the issue for me because, when small and I appropriately scaled it, the longer text was pretty much useless.

Angelo1964’s picture

Thanks Steven.

I did what you suggest but I'm now missing both slide Headline and Slide Description texts. Does exist a way to keep the text headline at least?

Anyway thank for the suggestion, the smartphone version of the site is now acceptable.

Angelo

Angelo1964’s picture

Issue summary: View changes

Highligthed code section

mheinke’s picture

the code should only hide the description

try this

 #slider .entry-summary p {
  max-height:84px;
  overflow:hidden;
  display:none;
  }
mheinke’s picture

Assigned: Unassigned » mheinke
Issue summary: View changes
Status: Active » Postponed (maintainer needs more info)
mheinke’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

added to the 2.0 release!