1

I designed a new site simple enough, with a top slider and menus. It seems that when I view the site via PC all is fine and in place.

When I view the site from a mobile phone (Android) it seems that the top slider is not centered.

The website address is: http://www.donoussa.gr

Thank you in advance.

Rhys Jones
  • 5,348
  • 1
  • 23
  • 44
John G
  • 19
  • 3

1 Answers1

0

There is a styling conflict where Bootstrap applies the following CSS:

.row {
    margin-right: -15px;
}

I suggest overriding the CSS as follows:

.row {
    margin-left: -15px;
    margin-right: -15px;
}

You can override the CSS in Helix as per https://joomla.stackexchange.com/a/14219/120 or similar.

Community
  • 1
  • 1
Neil Robertson
  • 3,295
  • 3
  • 28
  • 49