Jump to content

ste

Members
  • Posts

    372
  • Joined

  • Last visited

Everything posted by ste

  1. ste

    I publish a site

    ive tried a few different ones and wasnt happy with any free hosts. they usually put ads on your site and arent reliable for php/mysql. if you can afford it paid hosting is now cheaper than ever. that said a few years ago i hosted a phpbb forum for free with lycos it was ok, there was however a fair bit of downtime
  2. conditional comments are handy but i try to avoid having 2+ style sheets if i can. sometimes a few tweaks to the css can get you a layout that displays almost the same across browsers with just 1 css file and thats always what i aim for anyway, i will try and have a look at your problem when i have a free momentthanks, ste
  3. another alternative that is quite easy is to use Matt Wright's CGI formmail script http://www.scriptarchive.com/formmail.htmlyou simply follow the instructions to configure the file in your text editor & upload the file to your cgi-bin hope this helps, ste
  4. i think your problem is that you are floating elements, when you float an element, it takes it out of the flow of the document in standards complacient browsers such as FF but not IE. so basically FF considers the container element (that has the background) emptytry clearing the float after the content e.g. <div style="clear:both"></div>hope this helps, ste
  5. i think you misunderstood. What i meant is you design the site with html & css you then seperate the html into php files e.g. header/footer this way you can make changes to just a few files and having those changes propagated throughout the entire web site without having to edit every single file. So basically the css is controling the layout and the php includes are like a way to organise the html. I hope this is clearer now
  6. it looks like you have 4 fairly static pages (Home , Projects , Our Comic , About Us) and then the forum. i would probably code it like this:make the basic html template, split this into individual php files (header.php, footer.php etc) build the site with php includes then use third party software for the forum (whichever you prefer phpbb?) and try and style the forum to match the look of your site.
  7. heres another tool for picking color schemeshttp://www.siteprocentral.com/cgi-bin/feed/feed.cgi
  8. what? w3schools has probably got the most comprehensive css tutorials on the net
  9. ste

    div height 100%

    since moving from tables to divs one problem that keeps cropping up for me is that divs arent great for making columns because of the inability to get equal heights there have been a few suggestions to this problem ive read. one is javascript getting the div by id and making the heights equal. heres an examplehttp://ecomireland.dsvr.co.uk/clients/test/reportingsjr.htmlhope this helps
  10. i dont really need/want lots of features just any text editor with syntax highlighting, search & replace, tabs and spellcheck. i use ultraedit right now & it does the job but i would be just as happy with crimsonedit
  11. you could add a top & bottom div containing those images heres another example:http://ecomireland.dsvr.co.uk/clients/test/Kristian_C2.html (view source for the code)apperently image borders are included in CSS3 but it will be a good while before its a common browser featurehttp://www.w3.org/TR/2002/WD-css3-border-2...he-border-image
  12. I dont think you can use images for borders but instead you can use a background image for a div. something like this:{background: #fff url(#.gif) top center; background-repeat: repeat-y;}example:http://ecomireland.dsvr.co.uk/clients/test/Kristian_C.htmlthe flaw with this method is altough the height can stretch to whatever you want the width has to be fixed to the width of the background hope this helps
  13. i was under the impression that it would, but on further reading you are correct aspnetguy. now im off to re-read the xml tutorials lol
  14. ste

    Boxing elements?

    there are default margins and line heights the browsers disply with. you can change them with css though
  15. CSS will eventually be replaced by XSL style sheets which format XML. But that does not mean its not a good idea to learn CSS because there are similarites between the two. I dont think its the language thats as important as understanding the concepts anyway.
  16. saying "screw it" to the majority of your users is a bad idea. i didnt get a chance to have a look at your page because you have edited away the link but there should be a way to achieve what you need without sacrificing most of your users. there is usually something that can be done. have you looked into css hacks ?
  17. can you post the code or better yet a link?
  18. ste

    <I need Help!>

    or make a streaming player in flash
  19. ok first you need to make the tab buttons you will be using in Photoshop or whatever graphics program you use.an example of one of youtubes butons: heres a tutorial on making tabs:http://www.spoono.com/photoshop/tutorials/tutorial.php?id=55youtube also has a bottom image background. e.g. (click for actual size) once you have your 4 different buttons and background. you can move on to the html/cssno need to put it in a form like you have above.html: <div id="navigation"><div class="tab"><a href="#"><img src="tab1.gif" /></a></div> <div class="tab"><a href="#"><img src="tab2.gif" /></a></div><div class="tab"><a href="#"><img src="tab3.gif" /></a></div><div class="tab"><a href="#"><img src="tab4.gif" /></a></div></div><div id="NavBottom"> </div> css: navigation { height: 28px; }.tab { float: left; width: 124px; border:0px }#NavBottom { clear: both; width: 100%; height: 24px; background: url(backgroundimage.gif) top left no-repeat; margin-bottom: 6px;} heres a finished example: (you can view the source code to see how it works)http://www.stefairclough.com/xbl1/
  20. try adding to cssform {margin: 0; padding: 0;}
  21. Not much point in posting a template you spent 30 mins on with no doctype or even page title. You shouldnt hurry the process. Good design requires attention to detail. ive seen a few of your designs at this point and i think the major flaw with each has been a poor color palette. ditch the neon colors and try some lighter hues. heres an example of a nice palette: the four colors to the right are monochromatic (tints and shades of a single color & a standard way of forming a complimentry color scheme) and then a pale orange tetradic color livins it up a bit. Its alot easier and pleasing to the eye than neon on black.Hope this helps
  22. ste

    Website

    another thing, in your code you have <form >action="http://www.trafficswarm.com/swarm/searchw.pl" method="POST">should be<form action="http://www.trafficswarm.com/swarm/searchw.pl" method="POST">
  23. ste

    Website

    what browser are you using? did you try clearing your cache and reloading the page
×
×
  • Create New...