• Resolved caffeinatedexcursions

    (@caffeinatedexcursions)


    Hello all,

    I would like to know how to alter the location of the tags shown on the bottom of my post. If you scroll to the bottom of my post you see that the entire page has margins on the left and right except for where the tags are shown. All I would like to do is indent that line of text so it is flush with the rest of the content on the page. I use Elementor in conjunction with OceanWP and don’t see any way to edit it there either. Thanks in advance for your help!

    Kevin

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello caffeinatedexcursions,

    Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.

    .single .post-tags {
      margin: 30px 170px 0;
    }
    
    @media(max-width:1280px) {
      .single .post-tags {
        margin: 30px 64px 0;
      }
    }
    
    @media(max-width:1024px) {
      .single .post-tags {
        margin: 30px 50px 0;
      }
    }
    
    @media(max-width:720px) {
      .single .post-tags {
        margin: 30px 36px 0;
      }
    }
    
    @media(max-width:480px) {
      .single .post-tags {
        margin: 30px 20px 0;
      }
    }

    Hope this will helps you.

    Thanks.

    Theme Author oceanwp

    (@oceanwp)

    Hello, go to the Blog > Single Post section of the customizer and add 0 in Content Width

    Thread Starter caffeinatedexcursions

    (@caffeinatedexcursions)

    Thanks AddWeb Solution Pvt. Ltd., that seemed to work! Much appreciated.

    Theme Author oceanwp

    (@oceanwp)

    Perfect ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Indenting “Tags” to be in line with rest of page’ is closed to new replies.