Hi,
I found a strange problem on my side. The hero/slideshow module is too short and does not automatically adjust based on the height of the text it contains. Home Page:

The "Nasze kampanie" module is too low and covers the menu in the footer. spolecznie.org/o-programie

Could you help with this?
BR

Hi

1/ Hero slideshow:

It's due to your custom css code which forces the height value:

.owl-carousel.owl-drag .owl-item {
    height: 510px !important;
}

in this file: /templates/ja_helple/local/css/custom.css

2/ Module on programie page:

As I can see you add a new css class: camp-slide which is defined with absolute position so it covers the below part.

.camp-slide {
position: absolute;
width: 100%;
}

Kindly check this class again.

    Hi, saguaros

    I am sorry but I can't find in these files those classes - are you shure they are there?
    I don't added any new class - I don't know how... 😃

      Hi,
      saguaros

      in this file: /templates/ja_helple/local/css/custom.css I have found the firts class, but when I deleted it new bug have came:

      this banner covers the tekst from blackquote form.

      in this file: /templates/ja_helple/local/css/custom.css I can't find the class .camp-slide

        domir21 It due to your other custom css in the same file:

        .owl-carousel.owl-drag .owl-item {
            margin-bottom: -120px !important;
        }

        This class is used in several places on your site so when you add custom style for it, I recommend you to use module class suffix and add custom style for it so it will not affect other module 🙂

          hi saguaros
          but still
          when I deleted this class the home apge is OK,
          in "o programie" page module still covers the footer menu: /o-programie

            domir21 That module has specific style which covers the below section as you can see on our demo site. However, you don't use any position below it on this program page so it covers the footer.

            I just added this custom css so it can display normally:

            .item-109 .camp-slide {
                position: relative;
            }

            Kindly check.

              Write a Reply...
              You need to Login to view replies.