Hello, Everybody,
I'm way new to CSS, but it's fun to tinker around and experiment. My blog in question is johnbierly.wordpress.com
I changed only the following things: the padding (from 5 to 0) of photo borders, the color of photo borders (to black), I un-bolded my links, and I changed the color of links both normal and hover.
When I save my changes, those things are all exactly what I changed them to. However, two other things changed on me:
BEFORE I saved my changes, the top of the page looked like this:
<img src="http://i83.photobucket.com/albums/j308/johnbierly/andreas09beforeCSSchanges.jpg">
Notice the normal space between the blue nav bar at top and my name. Also, the "ABOUT" box beside "HOME" displays correctly.
AFTER I saved my changes, the top of the page looks like this:
<img src="http://i83.photobucket.com/albums/j308/johnbierly/andreas09afterCSSchanges.jpg">
The normal space between nav bar and title has disappeared, and the "ABOUT" box has lost its ... boxiness?
This is what I changed for my links:
a {
color:#B8860B
font-weight:normal;
text-decoration:none;
}
a:hover {
color:#A0522D;
text-decoration:underline;
}
And this is what I changed for my picture borders:
.entry img, .entrytext img {
border: 1px solid #000000;
margin: 5px;
padding: 0px;
I didn't change anything else, anywhere else. Is there something I need to do to retain the original, default behavior of the title spacing and the "ABOUT" box?
Thanks so much for your time.