/    Sign up×
Community /Pin to ProfileBookmark

adding fixed bottom script wont work

I found a template for my web page which I am using as I just cant get my head around scripting, this template also includes a .css.

now what I would like to do is to make my page (dreamworlds.com/about.html) look a lot more like [url]http://www.torrenthound.com/[/url]

I would like to create a fixed pattern at the bottom which always stays where it is like on torrenthound.

also, I can’t figure out how to change the high of my text box? plus I would love to add a border to my text box.

heres the script I think might be for creating a fixed bottom, but it won’t work probably because of the .css

[code=html]<frameset rows=”*,80″ frameborder=”no” border=”0″ framespacing=”0″>
<frame src=”file:///Macintosh HD/Users/mauricelatzke/Sites/academy/Untitled-1″ name=”mainFrame” id=”mainFrame” title=”mainFrame” />
<frame src=”file:///Macintosh HD/Users/mauricelatzke/Sites/academy/UntitledFrame-2″ name=”bottomFrame” scrolling=”No” noresize=”noresize” id=”bottomFrame” title=”bottomFrame” />
</frameset>[/code]

I have attached a copy of the style sheet im using.

and please take it easy on me im a horrible scripter

[upl-file uuid=af417480-9e1d-4b4d-9787-6165e66ab02c size=1kB]bird.css.zip[/upl-file]

to post a comment
HTML

1 Comments(s)

Copy linkTweet thisAlerts:
@webcoder13Aug 18.2008 — The code you suggested is using frames. Not only are frames, outdated, they are also not search engine friendly. I would suggest looking into CSS. It will allow you to achieve some of the visual aspects of your page you want. If you need help with CSS you can always ask on the CSS section of the WebDeveloper forms. To learn CSS, go to: W3Schools - CSS

Some examples:

A Text Box with Customized Height and a Border
[code=html]<input type="text" name="example" id="tbox" />
/* Include this between the HEAD tags */
<style type="text/css">
#tbox {
height: 25px; /* You can put your own height here, but make sure it's in pixels*/
border: #000000 2px; /* Hex Color then Line-Stroke */
}
</style>
[/code]


Or you could use:
[code=html]<input type="text" name="example" style="height: 25px; border: #000000 2px;" />[/code]

Or Even:
[code=html]<input type="text" name="example" style="border: #000000 2px;" height="25" />[/code]
×

Success!

Help @mauriceamadeus spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.16,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...