Changing sidebar css for cutline theme
-
I am trying to change the right side widget text format on my blog (with the “cutline”) theme but I can’t figure out what these titles are named as on the css.
I basically want to center the side title text and remove the CAPS functions. Can anybody help?Thank you so much!
AliThe blog I need help with is: (visible only to logged in users)
-
Add this to your CSS:
.widgettitle { text-align: center; text-transform: capitalize !important; } -
Thank you so much devblog! One more question: If I want to center the content/text in the widget area, what tag would I add?
I appreciate the help! -
No problem.
You would do it like this, but your categories list won’t look good…
.widget {text-align: center;}Now, to have everything centered but the categories list, add this:
.widget {text-align: center;} .widget_categories {text-align: left;}
- The topic ‘Changing sidebar css for cutline theme’ is closed to new replies.