I want to have a sidebar rather than a footer for my blogs. How do I change that?
Also, how can I make the site title not all capitals?
Thank you :))
The blog I need help with is keelystyle.wordpress.com.
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
I want to have a sidebar rather than a footer for my blogs. How do I change that?
Also, how can I make the site title not all capitals?
Thank you :))
The blog I need help with is keelystyle.wordpress.com.
I'll help you with the second question! Do you want to change the post titles as well? If so, try changing the h1 section from
<br />
h1 {<br />
font-size: 3.4rem;<br />
text-transform: uppercase;<br />
text-align: center;<br />
}<br />
to
<br />
h1 {<br />
font-size: 3.4rem;<br />
text-transform: none;<br />
text-align: center;<br />
}<br />
Otherwise, if you're going for just the site title, try this:
<br />
h1.site-title {<br />
font-size: 4.8rem;<br />
font-style: normal;<br />
padding: 3em 0px 0.6em;<br />
text-align: center;<br />
font-weight: bold;<br />
line-height: 1.2;<br />
position: relative;<br />
text-transform: none;<br />
}<br />
The key here is changing the text-transform from uppercase to none :)
Thank you :)
When I tried to change the post titles, it did not work. Do I need to fix it on the original HTML code for this theme?
Thanks again!!
For post titles you want this
h1.entry-title
instead of this
h1.post-titles
Awesome!!! THANK YOU!
You are welcome.
This topic has been closed to new replies.