Jump to content

mulletgut

Members
  • Posts

    11
  • Joined

  • Last visited

mulletgut's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. I use this extremely cool album production tool which I think will give you the result you're after. It is incredibly easy to use and customise, and as a bonus, it's free. Give it a try, you might be suprised. Have a look at this sample Banana Other album skins (included in the install) here.Small download and awesome results,
  2. I have combined the header/banner and left nav in one php file as you can see here. Not sure if that will be best. I hope I'm going in the right direction here. That previous bit of code was actually a repeat of what ste posted.I am excited about learning this technique. (I am doing this as a love-job for the fishing/boating club I am in) <!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"><!-- DW6 --><head><!-- Copyright 2005 Macromedia, Inc. All rights reserved. --><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>Untitled Document</title><link rel="stylesheet" href="3col_leftNav.css" type="text/css" /><style type="text/css"></style></head><body><? require('banner_leftNav.php'); require('headlines.php');?><div id="content"> <div class="feature"> <h3>Outdoor Program </h3> <p> So I can put this Outdoor programm detail here? And call this page outdoor_program.php? I think this is going to give me headaches, yet I do see the light at the end of tunnel </p> </div> <br /><?require('footer.php');?></body></html>
  3. <? require('header.php'); ?><div id="left"><p>blah blah content here etc etc</p></div><?require('rightside.php');require('footer.php');?> Is that the sum total of the code for Index.php ? I'd assume that code goes in the <body> of the page. And no reference to style sheets is needed anywhere but in the head of my header.php? Or am I way off? If it is then this looks like it's going to be fun.
  4. Thanks ste, That was extremely helpful. I know understand the concept of the includes somewhat more than I did.The light bulb went on. I will need to do a lot more learning but I think I just made a bit of a leap.While you're here and are being helpful :)Can I have a single style sheet for all the php includes?Or should the style sheets be internal to each php file?Cheers
  5. Will do. Is one language trickier to learn than the other?Thank you.
  6. My last post has 35 or more views and no replies, so I'll try to reword what I'm trying to find out.I am try to put a site together which has many pages of content. It is a three column page with a banner. The only part of each page which will be different is the centre "content" area. The far right colum will be like a news headline strip which will need to updated regularly but I want it to be accessable from all pages.I don't want to have to edit all the pages when I make a change to the either the links on the left navigation menu, or the detail in right column (news headlines column).Can this be done using just <div>? Or will I have to use a table and html to specify 2 editable regions?I am confusing myself now. Thanks in advance if anyone can work out what it is I'm asking.
  7. I am using one of the templates from dreamweaver (albeit with a lot of changes)which uses all divs for layout. I wish to make many pages based on this layout with just a couple of editable regions. I have a banner, and a left nav menu and wish to put a main content editable area beside that in the centre of the page and a narrower editable area on the right of the page. There are already divs for these areas which are quite cool where they are, however when I save the page as a template, and then open a "new" page based on this template, I can't edit anything in those areas. Will I have to scratch the css idea and resort back to tables?I do like css, so much to learn. I shall go do more tutorials to try to sort this, would be happy if there was a simple way to do this.Thank you for your time.
  8. Well I guess it's good to know it works somewhere I have cleared cache's and previewed in Firefox, Opera and IE7 and it still pulls up well short of the page edge. Depending on the window size of course. On thi laptop it's a good quarter of a window/page, on the desktop it's probably an eighth.I shall plod on........... thanks for the response**EDIT**I just noticed that in this turtorial at w3schools, the list in the tutorial isn't showing as 100% page width either. ?????? Cool. More confusion.
  9. Hello folks, thanks for your time,I have used some code from one of the css tutorials for making a horizontal navigation menu, and built on it a little. I want it to autostretch to be 100% page width but it doesn't seem to want to play the game for me (I obviously don't understand the rules), every attempt I make ends up seeing the list go vertical. I can do it with a table and images but would much rather have it work in css.Any help would be greatly appreciated. <head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>Untitled Document</title><style type="text/css">ul{float:left;width:100%;padding:0;margin:0;list-style-type:none;}a{float:left;width:6em;text-decoration:none;color:yellow;background-color:black;padding:0.2em 0.6em;border-right:1px solid white;}a:hover {background-color:#FFFF99;color:black}li {display:inline}</style></head><body><ul><li><a href="#">Home</a></li><li><a href="#">Meetings</a></li><li><a href="#">Brag Board</a></li><li><a href="#">Photo Gallery</a></li><li><a href="#">Forums</a></li><li><a href="#">Links</a></li><li><a href="#">Rules</a></li><li><a href="#">Contact Us</a></li></ul></body></html>
×
×
  • Create New...