• Resolved joella9751

    (@joella9751)


    Hi there,

    I am using the Sugar and Spice Theme right now on my website https://www.whereeverthewindtakesher.com and want to figure out how I can set it up so that my “About Me” photo on my homepage (with yellow headband) doesn’t show up on my actual About Me page because I would like to use a different one (the one of me sipping my coffee)! Does anybody have any idea how to fix this? I apologize in advance for my inability to “code” so if that’s the only way it can be fixed, please give the “dumbed down” version, thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • OK, it looks like you’re using JetPack, so you can use the Custom CSS option of JetPack to hide the picture.

    From the admin dashboard, click on JetPack > Settings.

    Look for the Custom CSS line and click on Activate.

    You will now have an entry in the Apperance section labeled Edit CSS. Click on Edit CSS.

    You’ll then see the CSS Stylesheet Editor. The first twelve lines are a long comment. Comments in CSS begin with a /* and end with a */. Add a few lines at the bottom of the field, then copy & paste one of these two rules:

    1) To hide just the picture, copy & paste this at the bottom:

    #sugarspice_about_widget-3 img {
       display: none;
    }

    2) If you would rather just hide the whole widget (so you could include the text from the widget into the main content of the About Me page), then copy & paste this rule instead:

    #sugarspice_about_widget-3 {
       display: none;
    }

    Note, it’s the same as the first rule, but leaving out the img part of the selector.

    If you have other questions about the Sugar and Spice theme, please post them on the Sugar & Spice support page. You’re more likely to get a response there.

    Thread Starter joella9751

    (@joella9751)

    That worked perfectly, thank you so so much CrouchingBruin!

    Thread Starter joella9751

    (@joella9751)

    The only thing now is that my picture and little blurb below it for the about me part is gone off of the “Home” page. The only place that I don’t want it to show up on was my posts and the “About Me” page but to keep it on the “Home” page.

    Shoot, sorry about that. Add one more rule:

    .home #sugarspice_about_widget-3 {
       display:block;
    }

    It should now appear on your home page but not any of the others.

    Thread Starter joella9751

    (@joella9751)

    There we are, thanks again!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove Home page photo from About Me page’ is closed to new replies.