• Shame that 2010 theme does not have rounded corners on the center section. This is why I love Kubrick so much although it’s not wide enough.

    Square corners are so, er, 1990s.

Viewing 4 replies - 1 through 4 (of 4 total)
  • In style.css:

    /* The main theme structure */
    #wrapper {
    	margin-top: 20px;
    	background: #fff;
    	padding: 0 20px;
    	/* this?: */
    	border-radius: 10px;
    	-webkit-border-radius: 10px;
    	-moz-border-radius: 10px;
    }

    I feel round corners are dated and cheesy. They look like what designers did to show off 6 years ago. All that web 2.0 junk.

    which means….. if square and round are outdated…

    we need a new shape! Any geometrists in the house? We need new corners stat!

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Don’t modify the style.css in wp-content/themes/twentyten. That leads to much of what used to happen when people would modify the default theme.

    Instead, child theme it!

    Make directory wp-content/themes/pbear and create style.css in that directory with just these lines:

    /**
     * Theme Name: PBear's Rounded TwentyTen
     * Description: Rounded Corners for TwentyTen
     * Version: 1.0
     * Template: twentyten
     */
    
    @import url("../twentyten/style.css");
    
    #wrapper {
            margin-top: 20px;
            background: #fff;
            padding: 0 20px;
            /* this?: */
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
    }

    Activate that theme and you get TwentyTen with rounded corners. When an update comes out, you won’t have to worry about keeping your changes intact.

    Good (and good to know)! 🙂

    Now… how to convert header.php image code to make the custom image added as a background instead of as plain img to get lovely outdated rounded corners at the top of the image block. >:)

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘What a shame..’ is closed to new replies.