Adelle theme: Change date circle into a square
-
Hi team!
What’s the code to change the date circle into a square?
Thanks in advance!The blog I need help with is: (visible only to logged in users)
-
I hope you are well today and thank you for your question.
Try using the following CSS code in the CSS editor to change the date circle into a square.
.article .post-date.radius-100 { border-radius: 0; }Best Regards,
Vinod Dalvi -
That worked! Thank you so much, Vinod. I have a few more doubts:
1. How can I increase the font size only on posts (and not on title or date)?
2. Also I tried to edit the copyright on footer using the following code and nothing changed:.site-info:before {
content: “This is my copyright text”;
}Hope you can help me and thank you again.
-
To adjust font size inside posts on the Adelle theme, you could try something like this:
.post-content { font-size: 120%; }Each theme is unique. The “.site-info:before” selector in your last example won’t work on the Adelle theme because that theme doesn’t use “site-info” as a class name. To learn what class name to use, you should look at the HTML using your browser’s web inspector. Here’s how:
http://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/To add text to the footer area in the Adelle theme, you would use something like this:
.footer-copy:before { content: "hello"; display: block; }I reviewed http://www.tulipsandheels.com/ and I see that it is using WordPress, but it is not set up here at WordPress.com. Because of that, please ask future questions you have about the Adelle theme in the WordPress.org forum at http://wordpress.org/support/theme/adelle
- The topic ‘Adelle theme: Change date circle into a square’ is closed to new replies.