A wordpress theme similar to this one?

hameem

Elite Member
Joined
Jul 21, 2011
Messages
1,914
Reaction score
1,010
I was wondering if anyone knows a Wordpress theme similar to this one?

Preferably with round-edged boxes for posts and sidebars rather than with sharp-edged ones. Would appreciate the suggestions.
 
Its a standard wordpress layout. You can build it urself ... idk any theme like that.
 
well if you have access to CSS file of that template, simply copy below code and paste it inside template css file:

.post {
border-radius: 10px;
}


.widget {
border-radius: 10px;
}

this should give you round edges
 
Back
Top