• Resolved ryanmahoneylaw

    (@ryanmahoneylaw)


    I’m new to word press and have never made a site before.
    <ahref=”www.wilkielawfirm.com”>www.wilkielawfirm.com

    I need to remove the “posted by admin” part from our page(s)

    Ive done a lot of searching on this site but can not find the portion of text in the cs to remove the line of text.

    any help is must appreciated.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Willowcase

    (@willowcase)

    Add this to custom css or child theme css.

    .posted-by {
    display: none;
    }
    Thread Starter ryanmahoneylaw

    (@ryanmahoneylaw)

    that didnt work

    Bill

    (@chubbycrow)

    I think you need something more like this:

    ul.admin-post li:first-of-type {
        display: none;
    }

    Edit: I don’t think the above will work in IE8 and older. The next will get you IE7 but I’m not positive about my syntax:

    .admin-post li:first-child {
        display: none;
    }

    Thread Starter ryanmahoneylaw

    (@ryanmahoneylaw)

    where do I insert that Bill?

    Bill

    (@chubbycrow)

    As above: you’ll either want to use a custom css plugin (which you can find here), or put it in the style sheet of a child theme.

    If you’re just getting going with your site, a child theme is (I think) the best way to make changes to your theme without losing those changes when the original theme gets updated. (A custom css plugin will give you the same benefit in this case, since you’re only changing styles.) Creating a child theme is actually fairly simple for something like this.

    Anyway, try the second example I gave above and see if that does it for you.

    Thread Starter ryanmahoneylaw

    (@ryanmahoneylaw)

    bill you are the freaking man!!!!!!

    i went with theme junkie and put in your code you suggested!!!

    thanks, i love this community! very very helpful!

    Bill

    (@chubbycrow)

    Ha! Your assessment may be off by a tiny bit, but I’m glad it worked out for you. Best. (Right about the community, though.)

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘remove "posted by admin" on Lawyer theme’ is closed to new replies.