OMG - everytime I change the fonts and colors in my posts it takes me FOREVER. Does anyone have any quick and easy shortcuts for this?
Sounds like you are using <font> Tags? You should take some research on CSS, as you can update your entire web-site from one simple file. Post a link so that we can see what and how you've done your styles.
Thanks Bavington - I'd sure appreciate it. Yes, I was using the <font> tags. The exact URL is http://www.chuckypita.com/the-vultu...-federal-reserve-cant-do-jack-squat-about-it/
eg: change: <font color="#FF0000" face="arial">TEXT HERE</font> to: <span class="red">TEXT HERE</span> and have this in a css file: .red {color: #FF0000; font: arial; }
NOT that a class should ever say how it appears. If you move to CSS your classes and ID's should say what things are, NOT how it appears. In fact anything that says how it appears does not belong in the HTML once you start using CSS. Take your average news page, it's a block of linked elements, so you'd wrap that in a DIV with a class. <div class="newsItem"> It has a title, title is a heading, so use a heading tag. Usually there's a date - I like to put the date in the heading. If we use a span we can avoid wasting a class. <h2><span>Today 23 August 2008</span> Nothing happened</h2> Then you have the content <p> Nothing much really, got up at 2PM, rode to shaws to buy hot dog rolls, killed some hackers by banning them with IPTables, etc </p> and of course a section with information like comments. <div class="comments"> <a href="comments.php?article=1">Comments (20)</a> </div> and you close the div - making the HTML for the whole sectuon thus: <div class="newsItem"> <h2><span>Today 23 August 2008</span> Nothing happened</h2> <p> Nothing much really, got up at 2PM, rode to shaws to buy hot dog rolls, killed some hackers by banning them with IPTables, etc. </p> <div class="comments"> <a href="comments.php?article=1">Comments (20)</a> </div> <!-- .newsItem --></div> Code (markup): Everything else should be applied via your CSS. .newsItem { padding:4px; color:#000; background:#EEE; border:1px solid #248; } .newsItem h2 { padding:0 12px; font:bold 16px/20px sans-serif; color:#248; background:#DEF; border-bottom:1px solid #248; } .newsItem h2 span { float:right; font:normal 14px/20px sans-serif; } .newsItem p { margin:1em 12px; } .newsItem .comments { text-align:right; padding:0 12px; color:#248; background:#DEF; border-top:1px solid #248; } Code (markup): GREATLY simplifies matters if you have say... twenty of those on a page. Presentational tags like FONT and CENTER, as well as presentational elements like ALIGN, VALIGN, etc, were deprecated in strict doctypes for a reason. If we're getting rid of presentational tags, using presentational classes and ID's (red, center, clearfix) doesn't make a whole lot of sense EITHER.