Home Entrance Everyone Wiki Search Login Register

Welcome, Guest. Please login or register. - Thinking of joining the forum??
April 19, 2024 - @373.60 (what is this?)
Forum activity rating: Four Star Posts: 55/1k.beats Unread Topics | Unread Replies | Own Posts | Own Topics | Random Topic | Recent Posts
News: :transport: :transport: More is More :transport: :transport:

+  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 571 times)
dotmidi
Sr. Member ⚓︎
****


i have grown accustomed to your face...

iMood: dotmidi

View Profile WWW

First 1000 Members!Graduate '23Pocket Icelogist!Pet 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

From time to time
I may speak in cliché
It's a sign of my age
What can I say?
Melooon
Hero Member ⚓︎
*****


So many stars!

SpaceHey: Friend Me!
StatusCafe: melon
iMood: Melonking
Itch.io: My Games

View Profile WWW

First 1000 Members!spring 2023!Squirtle!!!!MIDI WarriorMIDI Warrior1234 Posts!OzspeckCool Dude AwardRising Star of the Web AwardMessage BuddyPocket Icelogist!OG! Joined 2021!The Smallest Ozwomp Known To ManBug!
« 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 ⚓︎
****


i have grown accustomed to your face...

iMood: dotmidi

View Profile WWW

First 1000 Members!Graduate '23Pocket Icelogist!Pet 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

From time to time
I may speak in cliché
It's a sign of my age
What can I say?
Melooon
Hero Member ⚓︎
*****


So many stars!

SpaceHey: Friend Me!
StatusCafe: melon
iMood: Melonking
Itch.io: My Games

View Profile WWW

First 1000 Members!spring 2023!Squirtle!!!!MIDI WarriorMIDI Warrior1234 Posts!OzspeckCool Dude AwardRising Star of the Web AwardMessage BuddyPocket Icelogist!OG! Joined 2021!The Smallest Ozwomp Known To ManBug!
« 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 ⚓︎
****


i have grown accustomed to your face...

iMood: dotmidi

View Profile WWW

First 1000 Members!Graduate '23Pocket Icelogist!Pet 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

From time to time
I may speak in cliché
It's a sign of my age
What can I say?
dotmidi
Sr. Member ⚓︎
****


i have grown accustomed to your face...

iMood: dotmidi

View Profile WWW

First 1000 Members!Graduate '23Pocket Icelogist!Pet 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

From time to time
I may speak in cliché
It's a sign of my age
What can I say?
Melooon
Hero Member ⚓︎
*****


So many stars!

SpaceHey: Friend Me!
StatusCafe: melon
iMood: Melonking
Itch.io: My Games

View Profile WWW

First 1000 Members!spring 2023!Squirtle!!!!MIDI WarriorMIDI Warrior1234 Posts!OzspeckCool Dude AwardRising Star of the Web AwardMessage BuddyPocket Icelogist!OG! Joined 2021!The Smallest Ozwomp Known To ManBug!
« 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 ⚓︎
****


i have grown accustomed to your face...

iMood: dotmidi

View Profile WWW

First 1000 Members!Graduate '23Pocket Icelogist!Pet 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

From time to time
I may speak in cliché
It's a sign of my age
What can I say?
Pages: [1] Print 
« previous next »
 

Vaguely similar topics! (3)

What helped you code html/css easy?

Started by LIABoard ✁ ∙ Web Crafting

Replies: 17
Views: 1289
Last post October 11, 2023 @152.56
by lars
Melons critiquing and helping each other

Started by urgellxBoard ✎ ∙ Art Crafting

Replies: 12
Views: 713
Last post March 30, 2024 @213.02
by e-
Frameset help pls!! - Neocities editor warning

Started by dotmidiBoard ✁ ∙ Web Crafting

Replies: 3
Views: 611
Last post November 12, 2022 @896.48
by dotmidi

Melonking.Net © Always and ever was! SMF 2.0.19 | SMF © 2021, Simple Machines | Terms and Policies Forum Guide | Rules | RSS | WAP2


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