473,698 Members | 2,690 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

making a scroll bar

hi am making a webpage for a client that has a lot of text on thier
site, i have a photoshop template that i created and i want the text
to fit in a small part of template, can anybody point me in the
direction of a quick scroll bar that doesnt have any bells and
whisltes, thanks for the help

Feb 28 '07 #1
6 1690
isaac2004 said the following on 2/28/2007 12:02 AM:
hi am making a webpage for a client that has a lot of text on thier
site, i have a photoshop template that i created and i want the text
to fit in a small part of template, can anybody point me in the
direction of a quick scroll bar that doesnt have any bells and
whisltes, thanks for the help
Maybe you have heard of this new phenomenon in the world of web design
called CSS? overflow: scroll

comp.infosystem s.www.authoring.stylesheets

<div style="overflow :scroll;width:2 00px;height:200 px">
Some very long content here that you would need enough
to cause more than 200 pixels square to be required to
display it. After doing that, save your file and view
it in a browser. The results might surprise you. You might
also want to be honest enough with your clients to tell
them that they need a new web author as the one they
currently have is incapable of the job.
</div>

--
Randy
Chance Favors The Prepared Mind
comp.lang.javas cript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Feb 28 '07 #2
wow i am a newb, thanks though

Feb 28 '07 #3
Hi Randy,

"Randy Webb" <Hi************ @aol.comwrote in message
news:cK******** ************@te lcove.net...
Maybe you have heard of this new phenomenon in the world of web design
called CSS? overflow: scroll
Do you have a web reference somewher that has the latest tag-options with a
description of each? I am a newbie too and have been looking up the list on
the w3schools website and couldn't see anything about "overflow" options. My
sarcasm meter says you were inferring that this was not a new option so a
pointer to the latest and greatest docs would be much appreciated.

But while I'm here; how do you get rid of the bottom scroll bar?

Regards Richard Maher

PS. Also, an an exception thrown by a Java applet method be caught by a
Javascript try/catch?

"Randy Webb" <Hi************ @aol.comwrote in message
news:cK******** ************@te lcove.net...
isaac2004 said the following on 2/28/2007 12:02 AM:
hi am making a webpage for a client that has a lot of text on thier
site, i have a photoshop template that i created and i want the text
to fit in a small part of template, can anybody point me in the
direction of a quick scroll bar that doesnt have any bells and
whisltes, thanks for the help

Maybe you have heard of this new phenomenon in the world of web design
called CSS? overflow: scroll

comp.infosystem s.www.authoring.stylesheets

<div style="overflow :scroll;width:2 00px;height:200 px">
Some very long content here that you would need enough
to cause more than 200 pixels square to be required to
display it. After doing that, save your file and view
it in a browser. The results might surprise you. You might
also want to be honest enough with your clients to tell
them that they need a new web author as the one they
currently have is incapable of the job.
</div>

--
Randy
Chance Favors The Prepared Mind
comp.lang.javas cript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices -
http://www.JavascriptToolbox.com/bestpractices/
Feb 28 '07 #4
ASM
Richard Maher a écrit :
Hi Randy,

"Randy Webb" <Hi************ @aol.comwrote in message
news:cK******** ************@te lcove.net...
>Maybe you have heard of this new phenomenon in the world of web design
called CSS? overflow: scroll

Do you have a web reference somewher that has the latest tag-options with a
description of each?
Not the last but most used (CSS2) (1998) :
In french :
http://www.yoyodesign.org/doc/w3c/css2/indexlist.html
In English :
http://www.w3.org/TR/1998/REC-CSS2-1...indexlist.html
To put in favorites (and in a button in favorites bar)

--
Stephane Moriaux et son (moins) vieux Mac déjà dépassé
Stephane Moriaux and his (less) old Mac already out of date
Feb 28 '07 #5
Richard Maher wrote:
Hi Randy,

"Randy Webb" <Hi************ @aol.comwrote in message
news:cK******** ************@te lcove.net...
>Maybe you have heard of this new phenomenon in the world of web
design called CSS? overflow: scroll

Do you have a web reference somewher that has the latest tag-options
with a description of each? I am a newbie too and have been looking
up the list on the w3schools website and couldn't see anything about
"overflow" options. My sarcasm meter says you were inferring that
this was not a new option so a pointer to the latest and greatest
docs would be much appreciated.
You have to look better, then:
http://www.w3schools.com/css/css_positioning.asp

>
But while I'm here; how do you get rid of the bottom scroll bar?
The scrollbars behaves differently in different browsers (unfortunately)
PS. Also, an an exception thrown by a Java applet method be caught by
a Javascript try/catch?
Not directly, no.

Catch the exception in java, and return the condition to your JS
in a controlled way.

--
Dag.
Feb 28 '07 #6
Richard Maher said the following on 2/28/2007 6:00 AM:
Hi Randy,

"Randy Webb" <Hi************ @aol.comwrote in message
news:cK******** ************@te lcove.net...
>Maybe you have heard of this new phenomenon in the world of web design
called CSS? overflow: scroll

Do you have a web reference somewher that has the latest tag-options with a
description of each?
<URL: http://www.w3.org/Style/CSS/although it is what I would call a
good reference for a beginner.
I am a newbie too and have been looking up the list on
the w3schools website and couldn't see anything about
"overflow" options.
I have never been a fan of the w3schools site either. I have taken the
JS test there several times to see if it has changed in quality and it
hasn't. It typically has between 4 and 8 incorrect answers out of 20
questions. So I am not sure if w3schools has a decent CSS side or not.
You could try asking in news:comp.infos ystems.www.authoring.stylesheets
about a tutorial or reference page.
My sarcasm meter says you were inferring that this was not
a new option so a pointer to the latest and greatest docs
would be much appreciated.
Yes, it was extreme sarcasm. overflow: setting has been around for a
very long time. The sarcasm got injected by having a client and being
unable to come up with something as simple as a scrollbar.
But while I'm here; how do you get rid of the bottom scroll bar?
As has already been pointed out in another reply, it depends on the
browser and how it decides to handle scrollbars.
Regards Richard Maher

PS. Also, an an exception thrown by a Java applet method be caught by a
Javascript try/catch?
No, JS can only catch JS errors.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javas cript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Feb 28 '07 #7

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

Similar topics

8
4099
by: slawek | last post by:
Hi i have following stylesheet: ..linklist { width: 100%; font-size: 75%; background: #EEEEEE; margin: 5px; height: 300px; overflow: auto;
5
2626
by: MacKenzieMouse | last post by:
Is there an easy way to have the page scroll to the next button? When I populate a drop down list box, I have to use the arrow key or the mouse to scroll down. I would like for the page to be positioned at or near the bottom. I have turned smart navigation on. That helps, but still isn't enough. Thanks
4
1364
by: Marlene A. Roman | last post by:
Is there a way that when I show some fields below that don't fit in the screen, it automatically makes a scroll down event so the user doesn't have to scroll down the page by his own? Thanks in advance
8
2403
by: pmud | last post by:
Hi, I have 2 questions: 1. I have an editable data grid with 21 columns. I need to edit only 2 cloumns in this data grid. But when the grid is displayed in Edit mode, all the columns show long text boxes whichmakes the user to SCROLL a lot. I need only these 2 cloumns to be displayed in Edit mode. Is that possible & how? 2. Also, even when the data grid is not displayed in the edit mode, it
0
1518
by: Greg | last post by:
I've made a datagrid multiline (for anyone interested, I used an adaptation of the code at http://64.78.52.104/FAQ/WinForms/FAQ_c44c.asp). This has introduced a very serious issue: the vertical scroll bar assumes that all row heights are the same, as the designers of the datagrid seemed to not want to cater for the fact that a datagrid could be made multi line. This results in the scroll down functionality being completely wrong -
1
5665
by: davidr | last post by:
Hi, I am using Divs with CSS to setup a layout for a site. I am using the <Div>s and style sheets below. I want the TopMenu to go across the entire top of the browser. It does go across the entire top, but let say my screen resolution is 800x600 and the "Content" Div forces scroll bars for the user to scroll to the right to see an object then the TopMenu doesn't go all the way across. The top menu will only go to the screen...
6
2526
by: frankenstein | last post by:
I've not seen any real sollutions to this yet. I found something similar on this forum but the posted sollutions didn't work. I would like to make a drag to scroll for my blog, using JS. So far I have written the following (for use in Firefox): document.onmousedown = function(){ var e = arguments||event; var x = e.pageX; var y = e.pageY;
2
10936
by: sdevgray | last post by:
Is it possible to make the scroll bar larger on a Combo Box ? The reason I want to do this is so it can be used on a touch screen. I have a list of names linked to the Combo Box, I want a large scroll bar that can be used by a finger ! If not can anybody suggest an alternative ? Many thanks Stuart
0
8609
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9031
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8901
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8871
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7739
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5862
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4622
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2336
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2007
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.