Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Evan Herman

    (@eherman24)

    It looks like the two announcement boxes are overlaying because they are a bit smaller than the others. I’m currently working on a way to prevent this from happening, but in the meantime you can adjust the default distance between the two containers using the provided CSS selectors. By default the distance is set to -3.5em, but you can set it to -2.5em or greater.

    Something like the following should do the trick :

    .cd-timeline-block {
      margin-top: -2.5em; /* or another value of your choosing */
    }

    You may need to add an !important tag, to override the default. You would just add -2.5em !important; to the code above. You also may need to adjust it till it works for your site, -2.5em may not do it.

    You’ll want to add that code to your active theme style.css file. You can get to that either through FTP or through the themes edit menu. I recommend the former, as you’ll have greater control.

    Let me know if that helps resolve things.

    Thanks,
    Evan

    Thread Starter jlevin

    (@jlevin)

    I played around with it and couldn’t seem to find a value that fixed the issue.

    Do you have any other ideas?

    Plugin Author Evan Herman

    (@eherman24)

    No, that seems to be the fix that will work. If you can’t get it to work, my recommendation is to wait for the next release which will hopefully have a way to adjust the distance between single containers.

    Thanks,
    Evan

    Thread Starter jlevin

    (@jlevin)

    Do you have an ETA on this release?

    Plugin Author Evan Herman

    (@eherman24)

    No, I am not sure of a release date. I am working on implementing premium support due to the overwhelming number of support requests I am receiving. I will need to implement a few new settings and features which might take a few days.

    Thanks,
    Evan

    Dear Evan,

    I’ve added different css rules to my child theme’s style.css file to tackle other issues but it doesn’t seem to be doing anything. It doesn’t seem to be a difficult task but somehow its not working but it is OK if I change the plugin’s css files, although I’m not keen to do it.

    Thanks a lot!

    Viktor

    Plugin Author Evan Herman

    (@eherman24)

    Hi Viktor,

    Try adding an !important tag to your deceleration.

    ie:

    .some-element-class {
      width: 50% !important;
    }

    That should trigger things to work properly. Also in future if you wouldn’t mind starting up a new thread for your issues ??

    Thanks,
    Evan

    Thank you, it solves the problem.

    (Thanks also for the heads up, next time I’ll open a new thread, this time I thought it is related to post #2 of this thread. :))

    Plugin Author Evan Herman

    (@eherman24)

    No problem at all ??

    It is related, I just like to keep each issue (related or not) in its own thread that way I don’t get caught up helping one user with an issue while neglecting another in the same thread.

    Essentially I like to have a thread per issue, per user as a personal preference for maintaining the tickets as they come in.

    On any note, I’m glad that helped resolve the issue :} Have a wonderful night!

    Evan

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Containers cutting off text’ is closed to new replies.