New Blog – Ulduar25.com
So, I’ve been silently (and slowly) working on a new blog these past couple of days. I’ve always wanted to start a blog on raid leading and being a guild master, so that’s exactly what I did!
It’s also going to feature boss strats that I’ve found particularly useful in my own experiences in Ulduar, tips on leading pugs, stuff of that nature.
So, if you’re bored or want to support my newest site, go check it out and comment!
The URL for the site is www.Ulduar25.com
You can also subscribe to its RSS feed!.
Thanks guys,
Macbook
P.S. – No, this doesn’t mean I’m going to blog here less
10 Comments





Yay, something else to check while I’m waiting for sh*t to compile.
Forgot to mention — I am looking to launch the blog with a lot of content, so if you guys have anything you think could be beneficial to people regarding Ulduar boss strats, raid leading, joining pugs, or things of that nature, please do hit me up using the contact form on the sidebar.
Much love,
Mac
Yeah! more stuff to read while I don’t pay attention in class…!!!
- Earth
Pay attention!
Oh btw, this is me commenting from my iPhone – lolz.
Make the banner image a link back to the index page. There’s currently no way to get from viewing the comments back to the list of threads.
Also, 7 votes of 34 does not equal -834% (in the vote).
I was wrong — there’s a link in the sidebar. Should still have the banner image as a link though.
Thanks for the input, I actually knew about both those errors, it annoys me as well.
I couldn’t figure out how to end up making the banner link back to the homepage, so I gave up by adding a “Home” link on the sidebar.
As far as the poll, its the same script which I use on my blog and seemed fine, but I suppose its messing up because of the multiple answer question. Definitely can’t fix that
, I’ll try to reload it or something.
Thanks for commenting over there bro
How much are you willing to edit?
In the HTML (or whatever script generates it), you want to change
[div id="head"] [/div]
to read
[div id="head"]
[a href="index.htm" /]
[/div]
In style.css, you want to change
#head {
width:901px;
height:238px;
margin:0;
background-image:url(’images/head.jpg’);
padding:0;
}
to read
#head a {
display:block;
width:901px;
height:238px;
margin:0;
background-image:url(’images/head.jpg’);
padding:0;
}
In the HTML section above, replace the square brackets with angle brackets, ie [ should be . Not sure if those symbols break the text box here… Also, ‘index.htm’ above should be whatever the default page for your site is, or just your site URL.
Yeah, it didn’t like the angle brackets… they’re the ones above the period and comma. Not sure how much HTML you know, so covering as much as I can in probably too much detail.
Your fix seems to work fine, I didn’t know you know HTML and CSS!
Thanks,
Andy