3 Questions Regarding Content Dock Extension

I’ve set up a Content Dock on my site https://www.steedman.co.uk

It looks how I want it to but I have 3 quick questions:

  1. Is it possible to make it disappear after a set time? I have it on a 3 second delay when it launches but I would also like it to disappear after about 10 seconds.

  2. Is it possible to make it appear on the left edge rather than at the bottom?

  3. Is it possible to make the close button slightly larger as I feel it is too small?

Many thanks in advance for any advice you can give.

Russ

Hi There,

The feature you are looking for not available in the content dock setting.
Any customisation is out of our theme support scope.

I can only help your to increase the size of the close icon.
Please add this CSS to your X->theme option -> global CSS let us know how this goes.

.tco-close-content-dock span {
font-size: 20px !important;
}

Thanks for understanding!

Hi, that’s great as making the close button bigger was the one I was most bothered about anyway. Looks good now.

I have another somewhat annoying issue with the Content Dock which may or may not be covered by your support.

Basically it shows on mobiles and I would prefer if it could be hidden on smaller screens. I do not see an obvious way to do this.

Any help much appreciated,

Russ

Hello Russ,

Thanks for updating the thread. :slight_smile:

You can add following CSS under X > Theme Options > CSS to hide Content dock on mobile devices:

@media only screen and (max-width: 600px) {
    .tco-content-dock {
    display: none;
}
}

Thanks.

Brilliant, Thanks! That worked.

You’re welcome!
We’re glad we were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.