 |
|

06-15-2009, 12:04 PM
|
 |
Contributing Member
|
|
Join Date: 04-14-09
Location: Phoenix, AZ
Posts: 96
|
|
Thanks and I'll focus in the http://ifyoucodeittheywill.com/ and w3schools tutorials for a bit, I know the answers are all out there. You all are really appreciated.
Scott
|

06-17-2009, 03:20 AM
|
|
Junior Member
Latest Blog: None
|
|
Join Date: 06-05-09
Location: NEW JERSEY
Posts: 13
|
|
|
I thing you should meet the experts.
Thanks
|

06-17-2009, 05:26 AM
|
 |
Contributing Member
|
|
Join Date: 04-14-09
Location: Phoenix, AZ
Posts: 96
|
|
|
What do you mean Ricky? I'm learning how to do this on my own and v7n offers a forum to talk with experts, what better way to learn? create a site and modify it step by step by getting help from other users some of who are experts and its free.... no brainer
Scott
|

06-17-2009, 08:15 PM
|
 |
Banned
Latest Blog: None
|
|
Join Date: 04-14-09
Posts: 34
|
|
I'm not sure if you plan to take this site further, but there are definitely some design improvements that you could consider. For example, putting writing directly on a background image is generally not a great idea. Also, the site should have a cohesive feel to it. That means going from one page to another should maintain certain elements, such as the menu being the same and in the same place, the color scheme being similar, etc. There is a balance you have to strike between variety and unity in a design.
Take a look here to see examples of good design: http://www.designmeltdown.com/Default.aspx
I hope this helps..
|

06-19-2009, 10:12 AM
|
 |
Contributing Member
|
|
Join Date: 04-14-09
Location: Phoenix, AZ
Posts: 96
|
|
|
Thanks Danf,
So would is it preferred I use a graphics Software to add text on an image and then just upload the edited image? that may fix some of the problems I've been having with users some users having trouble using viewing my website.
I hear what your saying. The "cohesive feel" would have been easy to get from a GoDaddy website but I wanted to build something myself and work through the issues. Its a learning thing. I'm about ready to redesign the whole site and give it more of a professional look. Thanks for your time. Scott
|

06-19-2009, 10:14 AM
|
 |
Contributing Member
|
|
Join Date: 04-14-09
Location: Phoenix, AZ
Posts: 96
|
|
|
Oh and excellent website design link!.
|

06-22-2009, 08:07 PM
|
 |
Banned
Latest Blog: None
|
|
Join Date: 04-14-09
Posts: 34
|
|
|
Hi,
Adding text to images is a very time consuming process. It's also difficult to read text on top of graphics.
Below is what I sort of meant. This is obviously not a completed design, but I figure a picture is worth a thousand words.. just cut and paste.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Sans Moi contemporary Jazz band</title>
<style type="text/css">
<!--
body,td,th {
font-family: Verdana, Geneva, sans-serif;
font-size: 12px;
}
body {
background-image: url(images/2006-05_Mindbender_033!.jpg);
background-repeat: no-repeat;
}
#wrapper {
width:960px;
margin:12px auto;
background:#561F0C;
border:#4F0000 solid;
}
#header {
text-align:right;
}
#nav {
background:#4F0000;
text-align:center;
height:20px;
}
#navbar {
list-style:none;
}
#navbar ul {
display:inline;
}
#navbar li {
float:left;
width:150px;
}
#navbar li a {
color:#FFFFFF;
font-size:16px;
text-decoration:none;
}
#content {
}
h1 {
color:#FFFFFF;
font-size:24px;
}
h2 {
color:#FFFFFF;
font-size:18px;
font-style:italic;
}
.body_text {
color:#FFFFFF;
margin-left:20px;
}
-->
</style></head>
<body>
<div id="wrapper">
<div id="header">
<h1>Sans Moi Contemporary Jazz band</h1>
<h2>Sans Moi is French for "without me" or "without ego".</h2>
</div>
<div id="nav">
<!-- need to modify hyperlinks below -->
<ul id="navbar">
<li><a href="index.htm">About Us</a></li>
<li><a href="index.htm">Photo Gallery</a></li>
<li><a href="index.htm">Calendar</a></li>
<li><a href="index.htm">Discography</a></li>
<li><a href="index.htm">Chat me up</a></li>
<li><a href="index.htm">Links</a></li>
</ul>
</div>
<div id="content">
<br /><br /><br /><br /><br /><br />
<p class="body_text">Big thanks to Warren's Jazz Bistro June 16th for letting us entertain there and a Big thanks to all of you who filled the tables!</p>
<p class="body_text">Insert more text here....</p>
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
<br /><br /><br /><br /><br /><br /><br /><br />
</div>
</div>
</body>
</html>
|

06-22-2009, 09:45 PM
|
 |
Contributing Member
|
|
Join Date: 04-14-09
Location: Phoenix, AZ
Posts: 96
|
|
|
Danf,
That literally took my breath away, thanks is insufficient but thanks lots. Can't do that with a FP template.
Scott
|

06-22-2009, 11:39 PM
|
 |
Super Moderator
|
|
Join Date: 10-29-07
Location: British Columbia, Canada
Posts: 5,604
|
|
Quote:
Originally Posted by AZ_Scott
Can't do that with a FP template.
|
Why not?
Improvement on the code posted would be not to use all those <br />'s to force placement of the content. Use CSS and margins or padidng instead.
|

06-23-2009, 06:45 AM
|
 |
Banned
Latest Blog: None
|
|
Join Date: 04-14-09
Posts: 34
|
|
Yes, I just put those <br />'s there to temporarily expand the window so it doesn't look too tiny. The assumption is that they would be replaced with real content like text or images. The formatting can be changed by modifying the appropriate css id or class. A further improvement would be to move the css into an external style sheet.
Btw, if you haven't already, put the file somewhere so that the background image is in the "images" folder.
I'm glad this helped. There is quite a bit that could be done to improve this however. Instead of a solid color, I would think of blending in some sort of texture that goes with the background image. Just have a solid color underneath the text to make it easy to read. The navigation could also use some help. You can get some ideas here: http://www.ender-design.com/rg/
|

07-05-2009, 10:34 AM
|
 |
Contributing Member
|
|
Join Date: 04-14-09
Location: Phoenix, AZ
Posts: 96
|
|
|
Danf,
Thanks again and again for your code. It really launched me into CSS and using a txt editor for my html. check it out, I've closed Front Page for good! sans-moi.com/index.htm Let me know what you think.
Scott
Last edited by htmlbasictutor; 07-05-2009 at 11:12 AM.
|

07-06-2009, 07:27 AM
|
|
Member
Latest Blog: None
|
|
Join Date: 06-02-09
Posts: 35
|
|
|
I like it. Looks great! Congrats.
|

07-06-2009, 12:56 PM
|
|
Junior Member
Latest Blog: None
|
|
Join Date: 06-05-09
Posts: 3
|
|
|
Thanks, you have solved my problem.!!
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -7. The time now is 09:14 PM.
© Copyright 2010 V7 Inc Powered by vBulletin Copyright © 2000-2010 Jelsoft Enterprises Limited.
|
|