• Resolved mj187

    (@mj187)


    Is it possible to adjust the CSS so that show-desc appears underneath the time, rather than to the right? Both seem to use the same style at the moment?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Tony Zeoli

    (@tonyzeoli)

    Sorry, I can’t see this page. Please fix your shortcode or enable the plugin so that it works and then we can assess and provide a recommendation.

    Thread Starter mj187

    (@mj187)

    OK plugin enabled (I was doing some bugfixes earlier) – thanks.

    Plugin Author Tony Zeoli

    (@tonyzeoli)

    You can use CSS position to position it, but then you have to set a media query for various screen resolutions for mobile responsive, so that the text position is correct in mobile, tablet, and desktop. This is just a sample example from my limited knowledge of CSS and @majick may have a better solution.

    #master-schedule-tab-panels .master-schedule-tabs-show .show-desc {
    font-size: 0.75em;
    margin-left: 20px;
    position: relative;
    left: -152px;
    top: 42px;
    }

    Thread Starter mj187

    (@mj187)

    Thanks for the guidance, I’ve used position: absolute so it is more flexible, a bit dated but does the trick!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Align show-desc below show and time’ is closed to new replies.