superplastic
Member
Posted 9 months ago #
Here is the site: http://www.theyareandiam.com/legacy/
Hi!
My main issue is that there are no spaces between posts... looking at other people who have this issue, not sure how to apply the fix. (http://wordpress.org/support/topic/need-space-between-posts-only-post-area-in-php?replies=2 ) I dont mind going into the PHP, but i dont see why the issue would be there.
I tried adding padding and margin all over the place.
There are two style sheets, the wordpress one, and the one located at http://www.theyareandiam.com/legacy/style.css which is specific to the parent site.
Issue 2: I keep trying to text-transform: capitalize the headers, but it doesnt take.
Issue 3: And the "Posted on August 23, 2011 by admin", & "Posted in Uncategorized | Leave a comment | Edit" - if someone could let me know what the styles associated with those are, I would appreciate it.
Thank you very much.
Theme is default 10/20
Issue 1: try adding some margin or padding at the bottom of div.entry-content. In style.css in a child theme if at all possible.
Cheers
PAE
Issue 2: it is capitalized. Capitalized means transforming the first letter of each word to upper case. If you want the thing uppercase, you need the value 'uppercase':
h2 {
text-transform: uppercase;
}
This will mean all h2 elements are in uppercase. If you just want to affect the entry titles, you might try:
h2.entry-title {
text-transform: uppercase;
}
Cheers
PAE
Issue 3:
div.entry-utility
and
div.entry-utility .tag-links a:link
div.entry-utility .tag-links a:visited
div.entry-utility .tag-links a:hover
div.entry-utility .tag-links a:active
I recommend FireBug.
Cheers
PAE
superplastic
Member
Posted 9 months ago #
Thanks. Still trying to figure out a few things, but i see now where to fix it. Yes! I should've been using firebug. I feel really silly for these mistakes, seems so obvious now.
Thank you very much for this quick response!
Oh! I hope I didn't make you feel silly.
The only silly thing would be not to ask the question and not get a solution.
Cheers
PAE