Webcomics Community

Main Content => Web Design => Critique My Site => Topic started by: Kalegiro on June 27, 2010, 10:41:46 PM

Title: Just changed the layout of my webcomic
Post by: Kalegiro on June 27, 2010, 10:41:46 PM
I know you're not going to know how the webcomic looked before but I would just like some advice on how to be better and stuff...

You can find my webcomic Here! (http://anewlife.thecomicseries.com)

And The webcomic also has facebook, twitter, RSS feed and a devArt account here:
 (http://anewlife.thecomicseries.com/files/facebook.png) (http://www.facebook.com/pages/A-new-life/123929387621048) (http://anewlife.thecomicseries.com/files/rssfeed.png) (http://rss/)
 (http://anewlife.thecomicseries.com/files/deviant.png) (http://kalegiro.deviantart.com/) (http://anewlife.thecomicseries.com/files/twitter.png) (http://twitter.com/Anewlife_)
Title: Re: Just changed the layout of my webcomic
Post by: Rob on June 28, 2010, 12:10:49 AM
You know you can also volunteer your site to be critiqued by a professional web designer for a front page article here.

http://forum.webcomicscommunity.com/index.php/topic,485.0.html

I'm getting read for a con right now but if I find the time I'll try and take a look and give you some feedback.  ;)
Title: Re: Just changed the layout of my webcomic
Post by: JGray on June 28, 2010, 07:22:28 AM
You've got a good style, art-wise. A solid foundation. Some good characterization and a nice hook with the moving from a Spanish speaking country to an English speaking one. I had some problems with your site. Your comic pushed itself down below your banner ads. I don't know if this was a browser specific problem or a site specific problem, though.
Title: Re: Just changed the layout of my webcomic
Post by: Kalegiro on June 29, 2010, 06:15:02 AM
You've got a good style, art-wise. A solid foundation. Some good characterization and a nice hook with the moving from a Spanish speaking country to an English speaking one. I had some problems with your site. Your comic pushed itself down below your banner ads. I don't know if this was a browser specific problem or a site specific problem, though.

Really?
Dang...  that's new; I tried using all browsers (at least the browsers I have... I.E. , Safari , Firefox, Chrome and Opera)
And that never happened to me.

Uhmmm...  I don't really know how to fix that o___eU
Title: Re: Just changed the layout of my webcomic
Post by: JGray on June 29, 2010, 07:21:35 AM
It might be a resolution problem. I looked at your site on my netbook which has a lower resolution than, say, my art computer.
Title: Re: Just changed the layout of my webcomic
Post by: Dragon Powered on June 29, 2010, 02:14:56 PM
Yeah, it's a window-size issue.  Your site is set to full width and expands with a wider window, but unfortunately doesn't have a minimum width so a narrower screen resolution makes everything wrap.  In fact, the division for your content is called "wrap".  Go figure.  If you look at the layout code, it's a mess. Sorry.  There is actually a separate page dropped into the main page, not by using a frame but rather inside a division.  It even includes an additional <head> and <body> area and it's own css file.

Could definitely do with a bit of tidying up.
Title: Re: Just changed the layout of my webcomic
Post by: Kalegiro on July 01, 2010, 12:16:55 AM
Yeah, it's a window-size issue.  Your site is set to full width and expands with a wider window, but unfortunately doesn't have a minimum width so a narrower screen resolution makes everything wrap.  In fact, the division for your content is called "wrap".  Go figure.  If you look at the layout code, it's a mess. Sorry.  There is actually a separate page dropped into the main page, not by using a frame but rather inside a division.  It even includes an additional <head> and <body> area and it's own css file.

Could definitely do with a bit of tidying up.

I see...
The thing is... I know very little (if not nothing) about HTML coding, so I probably screwed something up there.
And I don't really know how to fix it...
Title: Re: Just changed the layout of my webcomic
Post by: Rob on July 01, 2010, 02:53:40 PM
Anyone with some skillz wanna take a look at Kalegiro's code and help him out? :-\
Title: Re: Just changed the layout of my webcomic
Post by: Dragon Powered on July 01, 2010, 05:57:06 PM
Well, I'm sure I could look at it sometime.  Right now things are a bit hectic though.

The first thing I could suggest is to change the style attributes of your #wrap division to an actual pixel width instead of 75%, and make the page itself a set width instead of scaling.  Or another trick, since you use some tables, is to insert a 1 pixel high transparent bar at the top or bottom of the cell.  Make the bar's width the absolute minimum width you would want your site to display at, and your table will always stay at least that wide regardless of cell width settings. 

I'll give more later after I get a chance.