Is there any way to create headers or titles above the .primary, .secondary.left and ,secondary.right columns in 2813? Eg: "blog", "recent writing", "visual projects"?
The blog I need help with is htcexperiments.org.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Is there any way to create headers or titles above the .primary, .secondary.left and ,secondary.right columns in 2813? Eg: "blog", "recent writing", "visual projects"?
The blog I need help with is htcexperiments.org.
You could do that with the content rule. Try this as an example to get you started:
.secondary .left:before {
font-size: 150%;
font-weight: bold;
content: "Left";
}
.secondary .right:before {
font-size: 150%;
font-weight: bold;
content: "Right";
}
This topic has been closed to new replies.