Taking footer in Book Lite Theme and making a sidebar
-
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: (visible only to logged in users)
-
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
h1 {
font-size: 3.4rem;
text-transform: uppercase;
text-align: center;
}
to
h1 {
font-size: 3.4rem;
text-transform: none;
text-align: center;
}
Otherwise, if you’re going for just the site title, try this:
h1.site-title {
font-size: 4.8rem;
font-style: normal;
padding: 3em 0px 0.6em;
text-align: center;
font-weight: bold;
line-height: 1.2;
position: relative;
text-transform: none;
}
The key here is changing the text-transform from uppercase to none :) -
-
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!! -
-
-
- The topic ‘Taking footer in Book Lite Theme and making a sidebar’ is closed to new replies.