How to give titles to a slider and bjqs code?












0















Hy, i'm not really an IT person, but I learnd some HTMl coding back in the days. I develope the design of our blog (about movies) and I use a given template. I want to add a slider to that mix, which looks like this...



in CSS:



/* SLIDER */

#slider {
background: #a71b1b;
width: 720px;
height: 410px;
margin: 0 0 20px;
padding: 0px;
border-radius: 0px;
}

#slider:hover .article-data {
height: auto;
overflow: visible;
}

#slider:hover img {
opacity: 0.7;
}

#slider .article-infos,
#slider .lead {
display: none;
}

#slider .bjqs {
display: block;
position: relative;
width: 720px;
height: 410px;
overflow: visible;
margin: 0;
padding: 0;
}

#slider .bjqs li {
display: block;
position: absolute;
background-color: #a71b1b;
top: 0;
left: 0;
width: 770px;
height: 410px;
}

#slider .article-image {
display: block;
background: #e9ebeb;
position: relative;
width: 720px;
height: 410px;
}

#slider img {
position: absolute;
bottom: 0;
height: auto;
left: 0;
margin: auto;
right: 0;
top: 0;
width: auto;
transition: all 0.2s ease-in 0s;
-webkit-transition: all 0.2s ease-in 0s;
}

#slider .article-data {
background: black;
position: absolute;
bottom: 0;
left: 0;
font-size: 20px;
width: 735px;
padding: 0;
height: auto;
}

#slider .article-data h1 {
padding: 15px 15px 15px;
font-size: 25px;
line-height: 20px;
text-align: left;
overflow-wrap: break-word;
word-break: break-all;
word-break: break-word;
width: auto;
height: 40px;
}

#slider .article-data h1 a {
display: block;
color: auto;
}

#slider .bjqs-markers {
display: block;
position: relative;
top: -390px;
right: -694px;
width: 370px;
z-index: 5;
}

#slider .bjqs-markers li {
background: #cfcfcf;
font-family: 'Arial';
font-size: 20px;
line-height: 42px;
margin: 0 0 2px;
}

#slider .bjqs-markers li + li + li + li + li {
display: none;
}

#slider .bjqs-markers li.active-marker {
background: #a71b1b;
}

#slider .bjqs-markers a {
background: rgba(0, 0, 0, 0.12);
position: relative;
display: block;
padding: 15px;
z-index: 2;
}

#slider .bjqs-markers a:hover {
background: #b7b5b5;
color: #fff;
}

#slider .bjqs-markers .active-marker a {
background: #a71b1b;
color: #fff;
}

#slider .bjqs-markers .active-marker {
position: relative;
}

#slider .bjqs-markers .active-marker:after {
position: absolute;
content: "";
right: 100%;
top: 50%;
border: solid transparent;
height: 0;
width: 0;
pointer-events: none;
border-color: transparent;
border-right-color: #a71b1b;
border-width: 28px;
margin-top: -28px;
}


And in HTML:



<blhc:if key="pageType" value="blogcimlap" operator="eq">
<blh:starred width="720" height="410" limit="4" bjqs_showcontrols="false" bjqs_showmarkers="true" bjqs_centermarkers="false" />
</blhc:if>


It looks like this in the surface:
PIC



You can see that the movie title appears on the slider, but not on the BJQS markers where only numbers appear and I'm out of ideas how to show the title there too. However this code works in other built-in template like this: PIC



Can you help me with that problem?










share|improve this question



























    0















    Hy, i'm not really an IT person, but I learnd some HTMl coding back in the days. I develope the design of our blog (about movies) and I use a given template. I want to add a slider to that mix, which looks like this...



    in CSS:



    /* SLIDER */

    #slider {
    background: #a71b1b;
    width: 720px;
    height: 410px;
    margin: 0 0 20px;
    padding: 0px;
    border-radius: 0px;
    }

    #slider:hover .article-data {
    height: auto;
    overflow: visible;
    }

    #slider:hover img {
    opacity: 0.7;
    }

    #slider .article-infos,
    #slider .lead {
    display: none;
    }

    #slider .bjqs {
    display: block;
    position: relative;
    width: 720px;
    height: 410px;
    overflow: visible;
    margin: 0;
    padding: 0;
    }

    #slider .bjqs li {
    display: block;
    position: absolute;
    background-color: #a71b1b;
    top: 0;
    left: 0;
    width: 770px;
    height: 410px;
    }

    #slider .article-image {
    display: block;
    background: #e9ebeb;
    position: relative;
    width: 720px;
    height: 410px;
    }

    #slider img {
    position: absolute;
    bottom: 0;
    height: auto;
    left: 0;
    margin: auto;
    right: 0;
    top: 0;
    width: auto;
    transition: all 0.2s ease-in 0s;
    -webkit-transition: all 0.2s ease-in 0s;
    }

    #slider .article-data {
    background: black;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 20px;
    width: 735px;
    padding: 0;
    height: auto;
    }

    #slider .article-data h1 {
    padding: 15px 15px 15px;
    font-size: 25px;
    line-height: 20px;
    text-align: left;
    overflow-wrap: break-word;
    word-break: break-all;
    word-break: break-word;
    width: auto;
    height: 40px;
    }

    #slider .article-data h1 a {
    display: block;
    color: auto;
    }

    #slider .bjqs-markers {
    display: block;
    position: relative;
    top: -390px;
    right: -694px;
    width: 370px;
    z-index: 5;
    }

    #slider .bjqs-markers li {
    background: #cfcfcf;
    font-family: 'Arial';
    font-size: 20px;
    line-height: 42px;
    margin: 0 0 2px;
    }

    #slider .bjqs-markers li + li + li + li + li {
    display: none;
    }

    #slider .bjqs-markers li.active-marker {
    background: #a71b1b;
    }

    #slider .bjqs-markers a {
    background: rgba(0, 0, 0, 0.12);
    position: relative;
    display: block;
    padding: 15px;
    z-index: 2;
    }

    #slider .bjqs-markers a:hover {
    background: #b7b5b5;
    color: #fff;
    }

    #slider .bjqs-markers .active-marker a {
    background: #a71b1b;
    color: #fff;
    }

    #slider .bjqs-markers .active-marker {
    position: relative;
    }

    #slider .bjqs-markers .active-marker:after {
    position: absolute;
    content: "";
    right: 100%;
    top: 50%;
    border: solid transparent;
    height: 0;
    width: 0;
    pointer-events: none;
    border-color: transparent;
    border-right-color: #a71b1b;
    border-width: 28px;
    margin-top: -28px;
    }


    And in HTML:



    <blhc:if key="pageType" value="blogcimlap" operator="eq">
    <blh:starred width="720" height="410" limit="4" bjqs_showcontrols="false" bjqs_showmarkers="true" bjqs_centermarkers="false" />
    </blhc:if>


    It looks like this in the surface:
    PIC



    You can see that the movie title appears on the slider, but not on the BJQS markers where only numbers appear and I'm out of ideas how to show the title there too. However this code works in other built-in template like this: PIC



    Can you help me with that problem?










    share|improve this question

























      0












      0








      0








      Hy, i'm not really an IT person, but I learnd some HTMl coding back in the days. I develope the design of our blog (about movies) and I use a given template. I want to add a slider to that mix, which looks like this...



      in CSS:



      /* SLIDER */

      #slider {
      background: #a71b1b;
      width: 720px;
      height: 410px;
      margin: 0 0 20px;
      padding: 0px;
      border-radius: 0px;
      }

      #slider:hover .article-data {
      height: auto;
      overflow: visible;
      }

      #slider:hover img {
      opacity: 0.7;
      }

      #slider .article-infos,
      #slider .lead {
      display: none;
      }

      #slider .bjqs {
      display: block;
      position: relative;
      width: 720px;
      height: 410px;
      overflow: visible;
      margin: 0;
      padding: 0;
      }

      #slider .bjqs li {
      display: block;
      position: absolute;
      background-color: #a71b1b;
      top: 0;
      left: 0;
      width: 770px;
      height: 410px;
      }

      #slider .article-image {
      display: block;
      background: #e9ebeb;
      position: relative;
      width: 720px;
      height: 410px;
      }

      #slider img {
      position: absolute;
      bottom: 0;
      height: auto;
      left: 0;
      margin: auto;
      right: 0;
      top: 0;
      width: auto;
      transition: all 0.2s ease-in 0s;
      -webkit-transition: all 0.2s ease-in 0s;
      }

      #slider .article-data {
      background: black;
      position: absolute;
      bottom: 0;
      left: 0;
      font-size: 20px;
      width: 735px;
      padding: 0;
      height: auto;
      }

      #slider .article-data h1 {
      padding: 15px 15px 15px;
      font-size: 25px;
      line-height: 20px;
      text-align: left;
      overflow-wrap: break-word;
      word-break: break-all;
      word-break: break-word;
      width: auto;
      height: 40px;
      }

      #slider .article-data h1 a {
      display: block;
      color: auto;
      }

      #slider .bjqs-markers {
      display: block;
      position: relative;
      top: -390px;
      right: -694px;
      width: 370px;
      z-index: 5;
      }

      #slider .bjqs-markers li {
      background: #cfcfcf;
      font-family: 'Arial';
      font-size: 20px;
      line-height: 42px;
      margin: 0 0 2px;
      }

      #slider .bjqs-markers li + li + li + li + li {
      display: none;
      }

      #slider .bjqs-markers li.active-marker {
      background: #a71b1b;
      }

      #slider .bjqs-markers a {
      background: rgba(0, 0, 0, 0.12);
      position: relative;
      display: block;
      padding: 15px;
      z-index: 2;
      }

      #slider .bjqs-markers a:hover {
      background: #b7b5b5;
      color: #fff;
      }

      #slider .bjqs-markers .active-marker a {
      background: #a71b1b;
      color: #fff;
      }

      #slider .bjqs-markers .active-marker {
      position: relative;
      }

      #slider .bjqs-markers .active-marker:after {
      position: absolute;
      content: "";
      right: 100%;
      top: 50%;
      border: solid transparent;
      height: 0;
      width: 0;
      pointer-events: none;
      border-color: transparent;
      border-right-color: #a71b1b;
      border-width: 28px;
      margin-top: -28px;
      }


      And in HTML:



      <blhc:if key="pageType" value="blogcimlap" operator="eq">
      <blh:starred width="720" height="410" limit="4" bjqs_showcontrols="false" bjqs_showmarkers="true" bjqs_centermarkers="false" />
      </blhc:if>


      It looks like this in the surface:
      PIC



      You can see that the movie title appears on the slider, but not on the BJQS markers where only numbers appear and I'm out of ideas how to show the title there too. However this code works in other built-in template like this: PIC



      Can you help me with that problem?










      share|improve this question














      Hy, i'm not really an IT person, but I learnd some HTMl coding back in the days. I develope the design of our blog (about movies) and I use a given template. I want to add a slider to that mix, which looks like this...



      in CSS:



      /* SLIDER */

      #slider {
      background: #a71b1b;
      width: 720px;
      height: 410px;
      margin: 0 0 20px;
      padding: 0px;
      border-radius: 0px;
      }

      #slider:hover .article-data {
      height: auto;
      overflow: visible;
      }

      #slider:hover img {
      opacity: 0.7;
      }

      #slider .article-infos,
      #slider .lead {
      display: none;
      }

      #slider .bjqs {
      display: block;
      position: relative;
      width: 720px;
      height: 410px;
      overflow: visible;
      margin: 0;
      padding: 0;
      }

      #slider .bjqs li {
      display: block;
      position: absolute;
      background-color: #a71b1b;
      top: 0;
      left: 0;
      width: 770px;
      height: 410px;
      }

      #slider .article-image {
      display: block;
      background: #e9ebeb;
      position: relative;
      width: 720px;
      height: 410px;
      }

      #slider img {
      position: absolute;
      bottom: 0;
      height: auto;
      left: 0;
      margin: auto;
      right: 0;
      top: 0;
      width: auto;
      transition: all 0.2s ease-in 0s;
      -webkit-transition: all 0.2s ease-in 0s;
      }

      #slider .article-data {
      background: black;
      position: absolute;
      bottom: 0;
      left: 0;
      font-size: 20px;
      width: 735px;
      padding: 0;
      height: auto;
      }

      #slider .article-data h1 {
      padding: 15px 15px 15px;
      font-size: 25px;
      line-height: 20px;
      text-align: left;
      overflow-wrap: break-word;
      word-break: break-all;
      word-break: break-word;
      width: auto;
      height: 40px;
      }

      #slider .article-data h1 a {
      display: block;
      color: auto;
      }

      #slider .bjqs-markers {
      display: block;
      position: relative;
      top: -390px;
      right: -694px;
      width: 370px;
      z-index: 5;
      }

      #slider .bjqs-markers li {
      background: #cfcfcf;
      font-family: 'Arial';
      font-size: 20px;
      line-height: 42px;
      margin: 0 0 2px;
      }

      #slider .bjqs-markers li + li + li + li + li {
      display: none;
      }

      #slider .bjqs-markers li.active-marker {
      background: #a71b1b;
      }

      #slider .bjqs-markers a {
      background: rgba(0, 0, 0, 0.12);
      position: relative;
      display: block;
      padding: 15px;
      z-index: 2;
      }

      #slider .bjqs-markers a:hover {
      background: #b7b5b5;
      color: #fff;
      }

      #slider .bjqs-markers .active-marker a {
      background: #a71b1b;
      color: #fff;
      }

      #slider .bjqs-markers .active-marker {
      position: relative;
      }

      #slider .bjqs-markers .active-marker:after {
      position: absolute;
      content: "";
      right: 100%;
      top: 50%;
      border: solid transparent;
      height: 0;
      width: 0;
      pointer-events: none;
      border-color: transparent;
      border-right-color: #a71b1b;
      border-width: 28px;
      margin-top: -28px;
      }


      And in HTML:



      <blhc:if key="pageType" value="blogcimlap" operator="eq">
      <blh:starred width="720" height="410" limit="4" bjqs_showcontrols="false" bjqs_showmarkers="true" bjqs_centermarkers="false" />
      </blhc:if>


      It looks like this in the surface:
      PIC



      You can see that the movie title appears on the slider, but not on the BJQS markers where only numbers appear and I'm out of ideas how to show the title there too. However this code works in other built-in template like this: PIC



      Can you help me with that problem?







      html css slider bjqs






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 22 '18 at 12:41









      János SzarvasJános Szarvas

      12




      12
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53431278%2fhow-to-give-titles-to-a-slider-and-bjqs-code%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53431278%2fhow-to-give-titles-to-a-slider-and-bjqs-code%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Paul Cézanne

          UIScrollView CustomStickyHeader Resize height generates problems when scroll is too fast

          Angular material date-picker (MatDatepicker) auto completes the date on focus out