Spun Theme : Customizing titles
-
Hi,
My site is http://kristenthefriendlypetsitter.wordpress.com/
I want to wrap the headings on each blog post on the front page. At the moment the headings seem to be cut off.
Thanks,
ShikhaThe blog I need help with is: (visible only to logged in users)
-
The titles at http://kristenthefriendlypetsitter.wordpress.com/ do not appear to need wrapping. Were you able to resolve the issue?
-
Hi!
No, issue still resides. The headings under the circles need to be wrapped. They seem to be cut off.
Thanks
-
Hi Shikha, find this in your custom CSS and remove the white-space: no-wrap; declaration and your titles will then wrap.
.hentry .thumbnail-title { color: #c53163; display: block; font-size: 0.1em; margin-top: 0.8em; top: 120%; white-space: nowrap; } -
Thanks for that. It worked!
I have another question –
I would like to move the footer text more to the left so that the list on footer 3 doesn’t appear so narrow and long. Is that possible for this theme?Thanks!
-
Hi Shikha,
One way you can do that is to reduce the margins in between each of those footer columns, and then make the columns themselves wider. Here’s the CSS your theme is currently using:
.three.widget-column { margin: 0 5%; } .widget-column { width: 23%; }That means the left and right margin for each column is 5%, and the column width is 23%. You could try changing those to something like 2% and 29%:
.three.widget-column { margin: 0 2%; } .widget-column { width: 29%; }You can try adjusting those percentages to get the effect you’d like. If you have any other CSS questions, you can get help from expert staff and volunteers in the CSS forums here:
https://en.forums.wordpress.com/forum/css-customization
We also have CSS tips here:
- The topic ‘Spun Theme : Customizing titles’ is closed to new replies.