Custom CSS for the Rounded Theme

  • Unknown's avatar

    I’ve changed the CSS before on a previous blog, but this one has me stumped. I’d appreciate some help!

    1. I would like to change the background colour of both the menu and the second column.

    2. I would like to remove the little arrow that is under the title (beside the words James Thomson). I’d also would like to increase the font size of that subtitle (James Thomson Elementary.

    3. I would like to remove the option to comment on the blog as well as the date/time of posts.

    4. I would like to remove the little green tabs on corners of the sidebar.

    5. I would like to remove the footer bar.

    To start – thank you!!

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

  • Unknown's avatar

    Staff will post into this thread probably tomorrow and help you. I suggest that you read this custom design FAQs section carefully because footer links cannot be removed.
    http://en.support.wordpress.com/custom-design/#frequently-asked-questions

  • Unknown's avatar

    Thank you for your prompt reply!

  • Unknown's avatar
  • Unknown's avatar

    First, note that the Rounded theme uses images as part of its design. In order to change those kinds of things, you will need to recreate and re-upload the images and then replace the ones in the theme with the replacements you created and uploaded.

    1. I would like to change the background colour of both the menu and the second column.

    For the top right navigation, here are the images that are used:
    http://s0.wp.com/wp-content/themes/pub/rounded/img/lpt.gif
    http://s0.wp.com/wp-content/themes/pub/rounded/img/rpt.gif

    To change the background color of the top navigation menu at the top right, here is the part of the CSS that controls the main color, the left image, and the right image:

    #pagetab a {
      background: #74C0FA;
    }
    #pagetab .ltab {
      background: url(http://s0.wp.com/wp-content/themes/pub/rounded/img/lpt.gif) no-repeat;
    }
    #pagetab .rtab {
      background: url(http://s0.wp.com/wp-content/themes/pub/rounded/img/rpt.gif) no-repeat;
    }

    Another option would be to use border-radius, a CSS3 rule, to add rounded corners and just remove use of the images. Note that this works in IE9 or higher, so if you’re targeting IE8 then the other solution is better.

    #pagetab {
      padding: 0;
    }
    #pagetab ul {
      background: deepskyblue;
      padding-top: 35px;
      -webkit-border-bottom-left-radius: 10px;
      -webkit-border-bottom-right-radius: 10px;
      -moz-border-radius-bottomleft: 10px;
      -moz-border-radius-bottomright: 10px;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
    }
    #pagetab a {
      background: none;
    }
    #pagetab .ltab, #pagetab .rtab {
      background: none;
    }
  • Unknown's avatar

    To change the background color of the 2nd column (right sidebar) on the Rounded theme, I would do this:

    .sideitembottom, .sideitemtop, .sideitemtop img {
      background: none;
      display: none;
    }
    .sideitem {
      background: tomato;
      padding: 15px;
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      border-radius: 15px;
    }

    Change out “tomato” with a color of your choice.

  • Unknown's avatar

    2. I would like to remove the little arrow that is under the title (beside the words James Thomson). I’d also would like to increase the font size of that subtitle (James Thomson Elementary.

    To remove the arrow from the tagline and increase the tagline font size in the Rounded theme:

    #masthead h2 {
      background: none;
      margin-left: 8px;
      font-size: 150%;
    }
  • Unknown's avatar

    3. I would like to remove the option to comment on the blog as well as the date/time of posts.

    To disable comments, you will need to open each existing post or page and turn off comments by unchecking the “Allow comments” checkbox and saving the changes. You can also use the bulk editor. To change the option for future posts you create, turn off comments from your Settings → Discussion page. See http://en.support.wordpress.com/enable-disable-comments/

    To hide the date on posts in the Rounded theme, try this:

    .date {
      display: none;
    }
  • Unknown's avatar

    4. I would like to remove the little green tabs on corners of the sidebar.

    Answered that one in an earlier comment about changing the background color of the sidebar.

  • Unknown's avatar

    5. I would like to remove the footer bar.

    WordPress.com requires that you keep the footer credits. You could turn off the background color from the footer with this CSS though:

    #footertop img.corner, #footerbottom img {
      display: none !important;
    }
    #footer, #footertop, #footerbottom, #footer .rss {
      background: none;
    }
  • Unknown's avatar

    I thought your Rounded theme questions looked neat, and I’m looking forward to see the changes you make on your site. Do you need any other help?

  • The topic ‘Custom CSS for the Rounded Theme’ is closed to new replies.