taking out line division on sidebar

  • Unknown's avatar

    1. How can I take out the division line between my added widgets in my right sidebar?

    2. Also, what is the font used in the text title in widget?

    I am using the profile theme.
    robyncoffman.com

    Thank you.

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Add this to your existing custom CSS:

    .widget {
      border-bottom:0;
    }

    The only widget I can see with a title is on your Connect page and the font stack is: Helvetica Neue, Arial, Helvetica, sans-serif.

  • Unknown's avatar

    Thank you . Worked perfectly!

    New questions:
    1. How do I get the background colors of my widgets and my actual pages to match?

    2. Under “Robyn,” I want to do a gallery of pics that are circle shaped. I got that part done but when posted, they are off to the left. How do I center them on the page?

    Thank you so much!

  • Unknown's avatar

    If you want your sidebar area to share the same background appearance as your main content then you can remove the colour and shadow with this code:

    .sidebar {
      background-color:#FAF9F9;
      box-shadow:none;
    }

    And this to centre your gallery images:

    .page-id-1 .tiled-gallery .gallery-row {
      margin:0 auto;
    }
  • Unknown's avatar

    Thank you again! Perfect.

  • The topic ‘taking out line division on sidebar’ is closed to new replies.