moving comment bubble left
-
Hi,
I have 2 questions
1) How would I move the comment bubble farther to the left and closer to the title?
2) How could I reduce the size of my widget titles in the sidebar?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi,
1) Try this one:
.comments-link { right: 30px; }2) The widget titles become big because you have a h1 font-size setting in your Custom CSS with !important. Try adding the following to match the widget titles:
h1.widget-title { font-size: 24px !important; } -
Thanks so much!
1 more quick question—
what code should I use to center the post titles?
text-align: center !important; —> was not working
-
Your code wasn’t wrong. The following should work, even without !important:
h1.entry-title { text-align: center; }It’s probably just that your selector (the “h1.entry-title”) part was incorrect.
- The topic ‘moving comment bubble left’ is closed to new replies.