• Resolved RuudMeulen

    (@ruudmeulen)


    Hi

    Am quite a newbie on WordPress and this great theme.

    I have installed WordPress and the theme and am able to configure a lot, but I am unable to find how I can remove on the pages the right column, which has Search, Recent Posts, Recent Comments etc.

    Any help would be appreciated.

    Thanks in advance.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author inkthemescom

    (@inkthemescom)

    Hello,

    You can easily change or remove this section, you just have to follow the steps as mention in the video given below.

    Link of the video: https://screenpresso.com/=tSHfd

    Note: for your knowledge, if you want to change the content then you just have to write down your content over there (i.e in the text field)..
    If you don’t want to show anything over there then just keep that field blank as I have done in the video.

    Hope it will resolve your issue

    Thanks!

    Hi I wanted to get rid of META as well, but your link is no longer active.

    Can you please repost or send me the code.

    Thanks

    Theme Author inkthemescom

    (@inkthemescom)

    Hello,

    You just need to go Appearance=>Widget=>primary widget & secondary widget.

    Now drag and drop text field in these fields(primary widget & secondary)and put your own content over there.

    Regarding your second issue,

    Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    .content-wrap .blog ul ul.post_meta {
        display: none !important;
    }

    Hope it will resolve your issue

    Thanks!

    Thanks. Sorted now. Any luck with turning off animation on mobile?

    Theme Author inkthemescom

    (@inkthemescom)

    Hello,

    You can easily turn off the animation effect, you just have to follow the screenshot link given below.

    Link: https://screenpresso.com/=cKigd

    Hope it will resolve your issue

    Thanks!

    can you please re-post the screenshot ?
    i also need this

    this was my solution. if you have a better one i will be happy to know about it:
    add this to your style.css

    @media screen and (max-width: 760px){
    * {
     /*CSS transitions*/
     -o-transition-property: none !important;
     -moz-transition-property: none !important;
     -ms-transition-property: none !important;
     -webkit-transition-property: none !important;
     transition-property: none !important;
     /*CSS transforms*/
     -o-transform: none !important;
     -moz-transform: none !important;
     -ms-transform: none !important;
     -webkit-transform: none !important;
     transform: none !important;
     /*CSS animations*/
     -webkit-animation: none !important;
     -moz-animation: none !important;
     -o-animation: none !important;
     -ms-animation: none !important;
     animation: none !important;
    }
    }
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How do I remove Recent Posts, Comments, Archive etc on the pages’ is closed to new replies.