• Hello few days after changes on my page was removed titles of articles on main page ekonomialudskourecou.sk. But I did not know why, u upgrades all plugins.

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

Viewing 10 replies - 1 through 10 (of 10 total)
  • @martinlindak thank you for the query.

    As checked, the below additional CSS code presents on your site, that hides the title.

    
    #content .entry-header {
        display: none;
    }

    Please let me know if that was added to your site for specific purpose. Maybe I can help correct it.

    Regards,
    Kharis

    Thread Starter martinlindak

    (@martinlindak)

    Hello,

    where can i find it? because i do not see it in additional CSS nor in style.css

    @martinlindak try going to Dashboard > Appearance > Customize > Additional CSS.

    Thread Starter martinlindak

    (@martinlindak)

    Hello,

    i see only this in additional CSS

    .post .byline {
        display: none;
    }
    .comments-link {
      display: none;
    }
    .entry-meta .posted-on  {
        display: none;
    }
    #main-navigation > a {
        color: #fff;
    }
    .home .entry-title,
    .blog .entry-title {
      font-size: 25px;
    }
    .entry-header .entry-title {
      font-size: 25px;
    }
    .hentry .entry-thumbnail {
        border: none;
    }
    
    @media only screen and (min-width: 760px) {
      .hentry .entry-thumbnail {
        width: 250px;
      }
      h1 {
        font-size: 35px;
      }
      .entry-content > h1:first-child {
      margin-top: 0;
    }

    Can I give you a access ?

    @martinlindak thank you for getting back.

    Can I give you a access ?

    Sorry, you can’t. Because sharing site’s login info for direct inspection is not allowed across community support forums.

    Perhaps there is particular seting from one of your active plugins that hides the post title. To find of which, you may try disabling them at once and re-enable one by one. While doing so, you may enable troubleshooting mode with this plugin to avoid any trouble seen by users.

    Adding, you can override the CSS to force show the title by adding this CSS code to your site’s Additional CSS.

    
    #content .entry-header {
      display: block !important;
    }

    Hope that helps.

    Regards,
    Kharis

    Thread Starter martinlindak

    (@martinlindak)

    Hello i cannot find that problem, tried to deactivate all plugins but nothing happened. Now I added your CSS code and it works but only on computer not on mobile.

    Many Thanks

    @kharisblank
    Hi,
    I am using Heiro Theme since a few years back for my website. since last night 2 parts of my Sidebar menu(Recent Posts & Categories) added to the top right of my first page. I need support to remove this from the page.

    @martinlindak I am sorry for the delay.

    As checked with my web browser’s source code viewer, your CSS code contains an error — it is missing closing tag for media query.

    Please go to Additional CSS (under dashboard > Appearance > Customize).

    Find these lines at the most bottom

    @media only screen and (min-width: 760px) {
    .hentry .entry-thumbnail {
    width: 250px;
    }
    h1 {
    font-size: 35px;
    }
    .entry-content > h1:first-child {
    margin-top: 0;
    }
    #content .entry-header {
    display: block !important;
    }

    and replace it with

    @media only screen and (min-width: 760px) {
      .hentry .entry-thumbnail {
        width: 250px;
      }
      h1 {
        font-size: 35px;
      }
      .entry-content > h1:first-child {
        margin-top: 0;
      }
    }
    
    #content .entry-header {
      display: block !important;
    }

    Save and clear any cache. Hope that helps.

    Regards,
    Kharis

    @martinlindak
    many tnx for your support, but as you instructed I added your CSS codes to Additional CSS but nothing happened. I wish I could share the screenshot with you.

    @martinlindak
    As I received your reply by mail as well, I attached the screenshot and replied you by mail. but here in this forum I can not attach the screenshot.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Why titles on main page was removed’ is closed to new replies.