Cubic Theme – any way of moving tags to the top?

  • Unknown's avatar

    Nobody can see my tags when they view a post, as they are placed by default under the related posts tab at the bottom of the page.

    Is there an option to move the tags upwards within the Cubic Theme to make them more prominent – and thus more clickable?

    The blog I need help with is: (visible only to logged in users)

  • Moving the tags is a bit tricky and would require custom CSS, available with the Premium or Business upgrades.

    You could experiment with something like this, keeping in mind that this fixed positioning is quite inflexible, and relies on a consistent featured-image height to work:

    @media only screen and (min-device-width: 1024px) {
    
      .tags-links {
         position: absolute;
         top: 500px;
      }
    
    }
  • The topic ‘Cubic Theme – any way of moving tags to the top?’ is closed to new replies.