Discuss: Keeping Navigation Current With PHP
by Jason Pearce
- Editorial Comments
62 Writing Corel Draw script to write new e-mail.
Hi I am totally new to this but i did tried Corel Draw as a web page (1 page only) but I no idea on how you guys create the e-mail pop-up once a hand-pointer is clicked on a web page (design using Corel Draw).
Any idea…?
posted at 02:57 am on December 31, 2003 by Willy
63 Sorry guys
On my previous posting i forget something.
I forget the css styles.
If you look on www.info.at you see the thing working.
The programm only puts the right css-class to the tags and the css does the rest.
If you look on www.info.at if you click on a section the programm puts in the class and the link gets highlighted.
Sorry for the forgotten infos.
Greetings
Rene
posted at 02:12 am on January 5, 2004 by Rene Grassegger
64 template engines
IRT: Dominique PERETTI
there is really no point in replacing PHP tags with smarty tags. especially in this simple example!
posted at 06:22 pm on January 9, 2004 by David
65 So I fooled around some more and clocked an IE (bu
Well this sure looks a useful technique, but I wanted to use an `ordered list` and generate numbers for my list items.
So I started here, and it fell over in IE6 :
<style type=“text/css”>
li.process {
background-color: #F4F4F4;
font-size: 12px;
vertical-align: top;
width: 33%;
}
</style>
Specifically, setting the width to 33% using CSS causes all those <li class=“process”> items to be numbered as ‘1’. Try it you’ll see the problem !
Removing the width: 33% and the list numbering returns to sequential for all items. Add it back and the numbering is set to 1 for all li items with that style. Weird.
<ol>
<li>Order Receipt</li>
<li>Create Job Record Card</li>
<li class=“process”>Raise Datachecking Form</li>
<li class=“process”>Create Sub Job</li>
<li>Enter Onto Schedule</li>
</ol>
posted at 05:20 am on January 22, 2004 by Neil Smith
66 Pages which one use id ?
Hello. I dont know if Im posting this on the right place but anyway. Im making a page. And I also scripted the news script. Ok all works. When Iuse click on news it show news. But when user click on one news which one would be shown in cell where is include() function but the news is shown in all window not in one cell ? How I shguld do that the only one news would be shoen in the cell of my index page to ? Is there any chance or I must include header, footer left and right blocks in each script ? I hope you understand me :)
Thanks
posted at 10:41 am on January 29, 2004 by Blaz
Discussion Closed
New comments are not being accepted, but you are welcome to explore what people said before we closed the door.
Got something to say?
Discuss this article. We reserve the right to delete flames, trolls, and wood nymphs.
Create a new account or sign in below if you’d like to leave a comment.
Subscribe to this article's comments: RSS (what’s this?)






61 Why not javascript?
The navigation bar on the right side of pages in alistapart.com removes a link pointing to the current page. This approach to navigation
follows the advice of Jakob Nielsen for corporate websites (see http://www.useit.com/alertbox/20031110.html).
If this concept of navigation menus is the standard, is there a way to use javascript instead of php to solve this dilemma of removing the link to the current page?
posted at 08:28 am on December 24, 2003 by web novice