Entrance Events! Chat Gallery Search Everyone Wiki Login Register

Welcome, Guest. Please login or register. - Thinking of joining the forum??
February 06, 2025 - @952.13 (what is this?)
Activity rating: Four Stars Posts & Arts: 64/1k.beats Unread Topics | Unread Replies | My Stuff | Random Topic | Recent Posts Start New Topic  Submit Art
News: :ha: :pc: Hello Melonland! :pc: :happy: Super News: E-Zine #3 Accepting Entries!

+  MelonLand Forum
|-+  World Wild Web
| |-+  ✁ ∙ Web Crafting
| | |-+  ☔︎ ∙ I need Help!
| | | |-+  Frameset help - hide scrollbars on frames


« previous next »
Pages: [1] Print
Author Topic: Frameset help - hide scrollbars on frames  (Read 935 times)
dotmidi
Sr. Member ⚓︎
****


manly men can doll, too!

⛺︎ My Room

View Profile WWWArt

20th Birthday CakeFirst 1000 Members!Graduate '23Pet BatCool Dude AwardJoined 2022!
« on: February 16, 2023 @676.57 »

https://dotmidi.neocities.org/Home-Page/frameset
 so i decided to have THREE FRAMES, one with links to friends on the side, the other is a directory

however, since i coded this new frameset the scrollbars r all visible, i don't know how to code them to be invisible (but still functional) i've tried everything, i went to the overall frameset and tried to code the scrollbar, i even went to the individual frames but to no avail

if anyone knows how i can get rid of the scrollbars on my frames pls teach me  :ozwomp:

Code
<!DOCTYPE html>
<html>

   <head>
      <title>tha homepage!!</title>
   </head>
   <style>

   </style>
   <frameset cols = "20%, 60%, 20%" frameborder="0">
   
  
      <frame src = "https://dotmidi.neocities.org/Home-Page/frame.html" name = "menu_page" noresize />
         <frame src = "https://dotmidi.neocities.org/base.html" name = "main_page"; />
         <frame src="https://dotmidi.neocities.org/friends" name = "friends";>
      <noframes>
         <body>Your browser does not support frames.</body>
      </noframes>
   </frameset>
	
</html>
« Last Edit: February 16, 2023 @687.93 by Melooon » Logged

Why can't people love me for who I am instead of the nineteen-year-old nymphomaniacal hottie college student I am on MySpace?
Melooon
Hero Member ⚓︎
*****


So many stars!

⛺︎ My Room
SpaceHey: Friend Me!
StatusCafe: melon
iMood: Melonking
Itch.io: My Games
RSS: RSS

View Profile WWWArt

Thanks for being rad!a puppy for your travelsAlways My PalFirst 1000 Members!spring 2023!
« Reply #1 on: February 16, 2023 @687.33 »

So there is prob a CSS solution here (I can see you did "::-webkit-scrollbar {display: none;}") already - but scrollbars can actually be set in your operating system - for example on mac scrollbars are invisible by default, so I actually don't see any scrollbars on your site. Some people prefer to have them visible though and switch them on!

You can also try this for Firefox (-webkit- means Chrome and Safari)
Code
* {
  scrollbar-width: none;  /* Firefox */
}

On Frameset the scrollbars are generated by your frameset page, so that's where you need to test your CSS - you've already done a bit of that so your on the right track!
Logged


everything lost will be recovered, when you drift into the arms of the undiscovered
dotmidi
Sr. Member ⚓︎
****


manly men can doll, too!

⛺︎ My Room

View Profile WWWArt

20th Birthday CakeFirst 1000 Members!Graduate '23Pet BatCool Dude AwardJoined 2022!
« Reply #2 on: February 16, 2023 @693.68 »

i am very troubled here.. trying to figure this out to my best capabilities
Logged

Why can't people love me for who I am instead of the nineteen-year-old nymphomaniacal hottie college student I am on MySpace?
Melooon
Hero Member ⚓︎
*****


So many stars!

⛺︎ My Room
SpaceHey: Friend Me!
StatusCafe: melon
iMood: Melonking
Itch.io: My Games
RSS: RSS

View Profile WWWArt

Thanks for being rad!a puppy for your travelsAlways My PalFirst 1000 Members!spring 2023!
« Reply #3 on: February 16, 2023 @711.79 »

My browser is having a bit of a freak out about your code, you had some weird ; characters and missing /> in your frames! I cleaned it up using Prettier - try this code and see if it works better!

Code
<!DOCTYPE html>
<html>
    <head>
        <title>tha homepage!!</title>
    </head>
    <style>
        ::-webkit-scrollbar {
          display: none;
        }
        * {
          scrollbar-width: none;  /* Firefox */
        }
    </style>
    <frameset cols="20%, 60%, 20%" frameborder="0">
        <frame src="/Home-Page/frame" name="menu_page" noresize />
        <frame src="/base" name="main_page" />
        <frame src="/friends" name="friends" />
        <noframes>
            <body>
                Your browser does not support frames.
            </body>
        </noframes>
    </frameset>
</html>
« Last Edit: February 16, 2023 @714.83 by Melooon » Logged


everything lost will be recovered, when you drift into the arms of the undiscovered
dotmidi
Sr. Member ⚓︎
****


manly men can doll, too!

⛺︎ My Room

View Profile WWWArt

20th Birthday CakeFirst 1000 Members!Graduate '23Pet BatCool Dude AwardJoined 2022!
« Reply #4 on: February 16, 2023 @726.68 »

Hmm.. I tried it but I can still see the scrollbars, maybe I'll wait to go home and see how it looks on a regular ol' pc? I'm using my school laptop rn :ohdear: :ohdear:
thanks a lot for a much cleaner coding layout though  :chef: this will help a lot so i can just focus on the CSS aspect of the problem
Logged

Why can't people love me for who I am instead of the nineteen-year-old nymphomaniacal hottie college student I am on MySpace?
dotmidi
Sr. Member ⚓︎
****


manly men can doll, too!

⛺︎ My Room

View Profile WWWArt

20th Birthday CakeFirst 1000 Members!Graduate '23Pet BatCool Dude AwardJoined 2022!
« Reply #5 on: February 16, 2023 @918.98 »

figured it all out! thanks for the help melon,.. fiend of frames  :ozwomp:
Logged

Why can't people love me for who I am instead of the nineteen-year-old nymphomaniacal hottie college student I am on MySpace?
Melooon
Hero Member ⚓︎
*****


So many stars!

⛺︎ My Room
SpaceHey: Friend Me!
StatusCafe: melon
iMood: Melonking
Itch.io: My Games
RSS: RSS

View Profile WWWArt

Thanks for being rad!a puppy for your travelsAlways My PalFirst 1000 Members!spring 2023!
« Reply #6 on: February 16, 2023 @925.60 »

What was your solution?? The future wants to know  :dive:
Logged


everything lost will be recovered, when you drift into the arms of the undiscovered
dotmidi
Sr. Member ⚓︎
****


manly men can doll, too!

⛺︎ My Room

View Profile WWWArt

20th Birthday CakeFirst 1000 Members!Graduate '23Pet BatCool Dude AwardJoined 2022!
« Reply #7 on: February 17, 2023 @94.83 »

What was your solution?? The future wants to know  :dive:

I decided to instead customize the scrollbar to have a more minimalist approach instead of getting rid of it entirely  :omg: better to work with what I have then stressing out over something that isnt such a biggie in the long run.  :ok:  :ok:

(I have a theory, also, that maybe neocities was delaying my website code being updated haha  :drat:)
Logged

Why can't people love me for who I am instead of the nineteen-year-old nymphomaniacal hottie college student I am on MySpace?
Pages: [1] Print 
« previous next »
 

Vaguely similar topics! (3)

Melons critiquing and helping each other

Started by urgellxBoard ✎ ∙ Art Crafting

Replies: 22
Views: 2231
Last post August 24, 2024 @487.13
by e-
tileable backgrounds + public domain images! + frames!

Started by MemoryBoard ♺ ∙ Web Crafting Materials

Replies: 5
Views: 751
Last post May 17, 2024 @642.14
by TheFrugalGamer
Hideshi Hino

Started by Misanthropic Monster™Board ☺︎ ∙ General Interests

Replies: 0
Views: 270
Last post June 20, 2024 @803.07
by Misanthropic Monster™

Melonking.Net © Always and ever was! SMF 2.0.19 | SMF © 2021 | Privacy Notice | ~ Send Feedback ~ Forum Guide | Rules | RSS | WAP | Mobile


MelonLand Badges and Other Melon Sites!

MelonLand Project! Visit the MelonLand Forum! Support the Forum
Visit Melonking.Net! Visit the Gif Gallery! Pixel Sea TamaNOTchi