473,387 Members | 1,455 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Fixed-position navigation buttons

I want to display a novel. I have the following
working fine except for the Back, Home and Next
buttons.

---------------------------
| Top Stuff |
---------------------------
| C | |
| h | ^ |
| a | | |
| p | Chapter |
| t | | |
| e | V |
| r | |
| | |
| l | |
| i | |
| n | |
| k |-------------------|
| s |Back Home Next |
---------------------------
| Bottom Stuff |
---------------------------

Click a link in the left frame and the chapter
shows up in the main frame.

I started out by sticking the nav buttons at
end of the chapter text, but that's not quite
as pleasing as having the nav buttons always
available.

No, it's not going online; it might be publishable
and I want to retain my rights. It'll be within
my 192.168 network.

--
-- Marten Kemp
(Fix name and ISP to reply)
Jun 27 '08 #1
3 1339
On May 9, 9:05*pm, Marten Kemp <marten.k...@thisplanet-link.net>
wrote:
I want to display a novel. *I have the following
working fine except for the Back, Home and Next
buttons.

---------------------------
| * * *Top Stuff * * * * *|
---------------------------
| C * | * * * * * * * * * |
| h * | * * * *^ * * * * *|
| a * | * * * *| * * * * *|
| p * | * * *Chapter * * *|
| t * | * * * *| * * * * *|
| e * | * * * *V * * * * *|
| r * | * * * * * * * * * |
| * * | * * * * * * * * * |
| l * | * * * * * * * * * |
| i * | * * * * * * * * * |
| n * | * * * * * * * * * |
| k * |-------------------|
| s * |Back * Home * Next |
---------------------------
| * * Bottom Stuff * * * *|
---------------------------

Click a link in the left frame and the chapter
shows up in the main frame.

I started out by sticking the nav buttons at
end of the chapter text, but that's not quite
as pleasing as having the nav buttons always
available.

No, it's not going online; it might be publishable
and I want to retain my rights. It'll be within
my 192.168 network.

--
-- Marten Kemp
(Fix name and ISP to reply)
What are the back/home/next buttons not doing correctly?
If I was implementing this, I'd have the "chapter area" setup as an
iframe. I'd then use the back/home/next links to call javascript that
changed the iframe's src value.
Jun 27 '08 #2
SAM
Marten Kemp a écrit :
I want to display a novel. I have the following
working fine except for the Back, Home and Next
buttons.
In a non framed page, it is only a question of CSS ... !
---------------------------
| Top Stuff |
---------------------------
| C | |
| h | ^ |
| a | | |
| p | Chapter |
| t | | |
| e | V |
| r | |
| | |
| l | |
| i | |
| n | |
| k |-------------------|
| s |Back Home Next |
---------------------------
| Bottom Stuff |
---------------------------

Click a link in the left frame and the chapter
shows up in the main frame.
Via Ajax ?
Via html in a framed page ?

Each showed blocks are they frames ?

if yes,
each menu item must send :
- the asked file in main frame
- the sub-menu of this file in frame 'sub_menu' (back home next)
each sub-menu item must work exactly as a menu-item

<a href="page_1.htm" target="main"
onclick="parent.sub_menu.location = 'page_1_sub_menu.htm';">
menu 1
</a>

Perhaps could you at least show your main framed page
(the frameset eventually with empty href)
and we could understand your design

Perhaps could you also explain how your buttons 'next' and 'back' are
coded (what do they do ?)

--
sm
Jun 27 '08 #3
Marten Kemp wrote:
I want to display a novel. I have the following
working fine except for the Back, Home and Next
buttons.

---------------------------
| Top Stuff |
---------------------------
| C | |
| h | ^ |
| a | | |
| p | Chapter |
| t | | |
| e | V |
| r | |
| | |
| l | |
| i | |
| n | |
| k |-------------------|
| s |Back Home Next |
---------------------------
| Bottom Stuff |
---------------------------

Click a link in the left frame and the chapter
shows up in the main frame.

I started out by sticking the nav buttons at
end of the chapter text, but that's not quite
as pleasing as having the nav buttons always
available.

No, it's not going online; it might be publishable
and I want to retain my rights. It'll be within
my 192.168 network.
Thanks to all who replied. I'll need to revisit the
problem with a better understanding of Javascript.
I'll report back later, either with some working
code or with more questions.

--
-- Marten Kemp
(Fix name and ISP to reply)
Jun 27 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

26
by: Adrian Parker | last post by:
I'm using the code below in my project. When I print all of these fixed length string variables, one per line, they strings in questions do not properly pad with 0s. strQuantity prints as " ...
2
by: Jonathan Carmichael | last post by:
I'm trying to create a fixed, no-repeat, centered background image using an external css. Everything works great until I add background-attachment: fixed then it just doesn't show the image...
1
by: Mike MacSween | last post by:
This looks like a bug to me. I have an expression on a report: =Format(Sum((**)*(/)),"0.00") Score is byte PercentOfGrade is double PropDegree is single ModuleCats is byte
9
by: pout | last post by:
What are the purposes of fixed-point? When should it be used? I read: #define Int2Fixed(x) (((long)(short)x) << 16) and the fixed-point in 16.16 format. Does the 16 in the MACRO refer to...
2
by: coz | last post by:
I created a wrapper class for a dll written in C. Will the following code prevent the "ENTIRE ARRAY" from being moved, not just the first array element? The Wrapper class will be instantiated in...
4
by: Otie | last post by:
Hello, I am using the MSFlexGrd Control in VB5. I have 1 fixed row and one fixed column. I am trying to do a sort when the user clicks a column in the FIXED ROW. But when I capture the row...
1
by: O.B. | last post by:
In the example below, I'm trying to convert a fixed byte array to a string. I get an error about needing to use "fixed" but I have no clue where to apply it. Help? using System; using...
1
by: Rick Knospler | last post by:
I am trying to convert a vb6 project to vb.net. The conversion worked for the most part except for the fixed length strings and fixed length string arrays. Bascially the vb6 programmer stored all...
4
by: Jeff | last post by:
Hey I'm wondering how the Fixed-Width Text Format is What I know is that the top line in this text format will contain column names. and each row beneath the top line represent for example a...
15
by: ingejg | last post by:
I am starting to study internet synchronization, and my head is still spinning since internet is not my forte, however my boss is breathing down my neck at the moment. Our company has only one...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.