Twitter Widget

 

Fooling around with a Twitter widget…

 

BolderImage Fan Page on FaceBook

Now you can check out the BolderImage Web Design page on Fracebook:

 

BolderImage on Facebook

Cool Monster Truck

 

I’m not a big "Moster Truck" kinda guy, but when I see one unexpectantly and in person, they do impress me.  I saw this truck being transported today and it looked pretty sweet.

Maybe I’ll have to get one for my next car.

Test Code

 

This is a pawplace slick pic

 

Dogfish Head Chicory Stout

Nice stout beer…  4 out of 5 stars…

Dogfish Head Chicory Stout
dogfish-head-chicory-stout

Dogfish Head Chicory Stout

http://www.dogfish.com/

Building a Better Website Day #10

Today I added specially formatted pages for the iPhone/iTouch.  I only added pages for the latest news and individual news article pages, maybe some day I’ll do the rest of the site, but for now, we only needed the two main pages.

The first step was to detect if we are using an iPhone. 

dim sDevice
sDevice = LCase(Request.ServerVariables("HTTP_USER_AGENT"))
if InStr( sDevice, "iphone" ) then
    Response.Redirect "iphone.asp"
end if

Once I detect the iPhone, we just redirect to a new page that is just formatted for the iPhone.  I could have gotten fancy and had the same page render differently, but I figured it was easier to just have them go do a different page.  Since the screensize is 320×480 in portrait mode, we need to make sure that the whole page doesn’t exceed 320 pixels.  You can do that through a special meta tag:

<meta name="viewport" content="width=320">

Now that we’ve detected the iPhone and set the page width, the rest is just a matter of formatting on the page.  You can see the result online at: http://www.comicbooknews.us/iphone.asp

Building a Better Website Day #9

I actually had a few hours tonight to work on the site.  Most of the pages are now reskinned.  I have a few oddball pages that aren’t skinned yet, but I’ll get to those in the upcomming days.  Unless there’s any major problems tomorrow, I’ll roll the new pages into production.  

Stay tunned…

Building a Better Website Day #8

Building a better http://www.comicbooknews.us

I finally have the homepage template completed.  The lightbox tool that I was using wouldn’t work in the new design – so I had to scrounge up another one.  I found a great example online at: http://leandrovieira.com/projects/jquery/lightbox/.  The jquery toolset is pretty good and this is a great example.

Now that the homepage template is done, I can move on to the rest of the site.  I’m going to start with the specific news article page and move from there.

More updates on day #9…

Building a Better Website Day #7

Well, I had a few hours this evening to work on an updated design for the site.  I made a lot of progress.  I still have to fix the pesky AJAX control for the main news story popup window.  I’m looking forward to rolling out the functionality to the rest of the site.

So far, I like the design.  It still is pretty utilitarian, but I like it:

Old Site

 

New Site

 

So, the next step is to fix the AJAX popup window, clean up a little CSS, and then roll it out to the rest of the site.

 

 

Building a Better Website Day #6

The homepage is just about complete.  I still have some HTML warnings to clean up, but I’ve got the functionality in place (and things are behaving pretty well in both IE and firefox).

So, what I have left on the homepage is:

  • Clean up HTML warnings
  • Fix the AJAX popup window for the main story’s image.
  • Tighten up the right column a bit
  • Review ad placement
  • Review SEO – I think we’re 99% of the way there.
  • Create a new logo.

Once I am done with that – I can move forward on the rest of the site.

 

« Previous Entries