Hi all,
I have a very basic knowledge of XHTML and CSS and am looking to develop a blog using the sandbox theme. However, I don't understand how to use the CSS editor when it seems the HTML markup is not visible. Lets say that I have a paragraph that looks like this <p>this paragraph is a message</p> and that I want this paragraph to be bold, italic, and have the comic sans MS font. In order to do this I would change the paragraph to read, <p id="message"> This paragraph is a message</p>. Then, I would go into the and create a <style type="text/css"> style sheet. In this style sheet I would add,
#message {
font: bold Comic Sans MS;
}
So, my question is, how do I view the HTML markup to be able to place id's so that the style sheet knows what to manipulate? How does this work?