Nothing much to report today. It was a busy weekend. I had to go into work for about 6 hours on Saturday (Bah!) and got to play a little while doing laundry and waiting for the Denver game. Some would call it the Denver-New England game, but obviously only one team counted. Yay Broncos! Yay for first post-Elway post-season win!
Anyway, I got Druidr up to lvl 14 and went to the AH to do a scan with Gitr a little after halftime. As I logged in, it suddenly came up with the server shutdown time at 00:45 and counting. Next thing I know, I’m disconnected. I tried Twisting Nether to see what was up, and got on fine. Kargath wasn’t even listed as a server.
As I started an AH scan with little Gitr, I saw that The Forge, Pathos Hammer’s militia PvP posse, was heading out. All levels welcome and required for members. I bowed out because, gee, it was the end of the 3rd quarter and still way too close to call. A touchdown, fumble, and interception later, it was time to go back to my desktop for some PvP action.
Arathi Highlands is a very interesting place to be as a level 16 warrior. First, my agg radius is like 3 miles, and as a warrior I have to way to take agg off me. They spent half their time keeping me alive between battles. I died about 10 times, but got 28 HK during my alive times, without killing anyone myself. As soon as I level to 60, I’m playing Pathos Hammer more. That was fun.
I got the site I was freelancing fixed last night. It was a frustrating time withรย tags and which class id to use to get things to work. The issue was text being a ghostly gray in IE, but perfect with Firefox. That color was not listed anywhere in the .css file, but I eventually got it by changing the class, editing the class, and getting it to the right font and lowercase. I’m quite proud of it, now for some equally impressive Google placement like this site. ๐ I hope it doesn’t take too long. The higher it goes, the bigger the bonus. Go front page!!
Question for Josh Dura, I can’t get the border to appear on linked images, and get it off images like the 24 book and blogshares. I see no way to differentiate the code for which images get outlines, like how the smiley face is crapped up now ๐
Try messing around with the following classes… The “p img” class, is what will happen to images inside of a tag, the “img” class is what will happen to ALL images unless otherwise specified (like the p img), and the “a img” class is what will happen to images inside an “a” tag. I also noticed that you have a second “a img” class down towards the bottom of the CSS file. Get rid of that one, and edit the one near the middle (cant remember the line number).
p img {
margin:0 0 5px 0;
padding:4px;
border:1px solid #586;
max-width: 100%;
}
img {
margin:0 0 5px 0;
padding:4px;
border:1px solid #586;
max-width: 100%;
}
a img {
margin:0 0 5px 0;
padding:4px;
border:1px solid #586;
max-width: 100%;
}
Thanks again, Josh. I’ll give it a shot tonight. I wish I could just take a week and do a seminar on css files. They are still a lot newer to me than straight HTML and have features that I still haven’t used, like drop shadows and the calendar plugins.
Josh, I figured it out today. I went to a site that only had borders on the images in the post area. This is what I ended up with:
p img {
margin:0 0 0 0;
padding:0;
max-width: 100%;
}
img {
border: none;
padding: 0;
max-width: 100%;
}
.post img {
padding: 4px;
border-top: 1px solid #ddd;
border-left: 1px solid #ddd;
border-bottom: 1px solid #c0c0c0;
border-right: 1px solid #c0c0c0;
}
a img {
margin:0 0 0 0;
padding: 0;
max-width: 100%;
}