0 Users appreciate this thread.
How to make an announcement box and other things!
(Capt.)Orb (2012-07-24 19:23:34)That's a good handy code.
Aviation fact: The a380 is the largest commerical aircraft in service!
Go to Splashiverse! Splashiverse
Go to Splashiverse! Splashiverse
SPCOxion (2012-07-28 02:34:15)Awesome.
Maybe you could make a new theme, like warm? Or a sea-like theme?
Log in to submit a comment
Back to forum: Web Programming (HTML, JS, CSS, PHP, MySQL)
New registered users today: 7
Newest registered user: ElegantVulpes
First we need a box of course. Doing so is simple, and do it we shall!
<style>.announce_box {width:80;height:100;}</style>
That's a start, pretty simple, right? But let's go further, shall we?
<style>.announce_box {width:80;height:100;border:2px Solid gray;border-radius:2px;background-color:white;}</style> <div id=.announce box>
Good, now we're at the next step, the news! Just keep in mind this is not that great!
<marquee direction="up" height="100" scrolljump="0.5" scrolldelay="130">*News here*</marquee>
Of course you must know some advanced HTML and CSS to understand this. But it's almost done, just combine the codes like so.
<style>.announce_box {width:80;height:100;border:2px Solid gray;border-radius:2px;background-color:white;}</style> <div id=.announce box> <marquee direction="up" height="100" scrolljump="0.5" scrolldelay="130">*News here*</marquee>
There's one problem though, it doesn't match your website's theme. No need to worry, here are some combinations that may match your website's theme.
border:2px Solid green;border-radius:2px;background-color:lime;
This gives it a nature feel, nice and breezy...
(More coming soon)
2012-07-11 18:40:17