Countdown Timer Addon Help - Question | JoomShaper

Countdown Timer Addon Help

Scott

Scott

SP Page Builder 11 hours ago

Imporvements to countdowntimer Addon

  1. Cannot center align title
  2. Cannot fix gap beteen collums
  3. third party countdown timer do not work pagebuilder. Yes, H ave tried.

Looking for a fix

  1. Reduce the gap between timer elements
  2. Reduce the left and right space
  3. Center Align title

I am stuck with using SPPB countown Addon How can I temporartiy fix these problems

See hidden content

0
3 Answers
Scott
Scott
Accepted Answer
10 hours ago #217105

futerh reseach hacking the tempalte to achieve the result I am looking for. added alignment Justify content center which was added the tem templage custom css section. I am hoping its not going to affect my other pages.

.sppb-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: center;
}

I The title I removed that was not needed. We should not need to hack with custom css.

0
Scott
Scott
Accepted Answer
10 hours ago #217106

There is sitill the problem of viewed on small device I need the timer to be horizontal inline with no stacking how can I achieve this?

0
Scott
Scott
Accepted Answer
7 hours ago #217107

Ammplied a nowrap to the hack css, the problem on mobile it goes beyond the mobile display

Any addtional css would help

.sppb-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: center;
}
0