First of all, let me say that I am not a professional coder – I’ve done every change on my site bit by bit and I’m not sure I really get how I made some things work.
That said, I had posted what seemed to me two simple questions (for people who actually know what they are doing on the WordPress forums and received nothing but a smart@ss remark that I needed to learn CSS. Anyway….
ONE I have changed the overall fonts on the site but I can’t seem to get the body of a post – and it alone to change to a better font for reading. I have set up League Gothic as my main header, sidebar, homepage fonts but I need to change the font in the body of the post itself to something a little easier on the eyes. And every combination I try changes ALL the fonts or doesn’t work at all. ANY good advice?
TWO I have image/text just below the banner on my site. There are two small icons on each side of the “navigation bar” I want all to be horizontally/vertically aligned but the two icons on each side appear just a little above the first line of text – and this shoves the bottom row of text onto the background image.
CAn anyone please tell me what I’m missing?
The site is thirdrailers.com
Thank you so very much…
(ALSO, There are other additions I will be making down the road – if anyone can refer a coder/designer I would be very grateful.)
1) You want to change the font for:
#post-content pand also.recent-postwrap p, .main-postwrap p. This will change the interior pages and the home page, respectively. You can add:font-family: Arialor whatever fonts you’d like to use.2) Quick fix, though not the best. On the images, add style that says for the left image:
float: left; margin: 15px -20px 0 20px;— adjust those numbers accordingly. On the right image, just change it tofloat: right; margin: 15px 20px 0 -20px;.Hope that works for you.