• erding

    (@erding)


    Using twentytwenty theme

    At the bottom lefthand of each post I have:

    Posted in admin | Comments Off | Edit

    Can this be removed?

Viewing 6 replies - 1 through 6 (of 6 total)
  • peredur

    (@peredur)

    Yes. Set the display property on the element that displays it, to ‘none’. For example:

    some-element-selector {
      display: none;
    }

    Alternatively, if you want to keep the space that the element occupies, you could use the ‘visibility’ property:

    some-element-selector {
      visibility: hidden;
    }

    Use Firebug or equivalent to find out which element needs to have the property set, and to try out what things would look like.

    If you need more assistance, a link to your site would help us to see what’s going on.

    Cheers

    PAE

    Thread Starter erding

    (@erding)

    Thanks for your response.

    The text in question is in the bottom left hand of the home page here:

    https://www.fcafa.co.uk

    This will be the only page for this site.

    peredur

    (@peredur)

    .entry-utility {
      display: none;
    }

    HTH

    PAE

    Thread Starter erding

    (@erding)

    thank you. are you able to advise which function I would find this entry for .entry-utility please?

    peredur

    (@peredur)

    Just add the new CSS rule to the end of the style sheet.

    From a quick look at your theme, it seems to have been developed with modifications in mind, so I don’t think you need a child theme.

    Cheers

    PAE

    Thread Starter erding

    (@erding)

    excellent! ??

    many thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How can I remove this?’ is closed to new replies.