Home Entrance Everyone Wiki Search Login Register

Welcome, Guest. Please login or register. - Thinking of joining the forum??
July 27, 2024 - @350.80 (what is this?)
Forum activity rating: Three Star Posts: 32/1k.beats Unread Topics | Unread Replies | Own Posts | Own Topics | Random Topic | Recent Posts
News: :4u: ~~~~~~~~~~~  :4u:

+  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 728 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

Thanks for being rad!a puppy for your travelsAlways My PalFirst 1000 Members!spring 2023!Squirtle!!!!MIDI WarriorMIDI Warrior1234 Posts!OzspeckCool Dude AwardRising Star of the Web AwardMessage BuddyPocket Icelogist!OG! Joined 2021!...
« 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

Thanks for being rad!a puppy for your travelsAlways My PalFirst 1000 Members!spring 2023!Squirtle!!!!MIDI WarriorMIDI Warrior1234 Posts!OzspeckCool Dude AwardRising Star of the Web AwardMessage BuddyPocket Icelogist!OG! Joined 2021!...
« 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

Thanks for being rad!a puppy for your travelsAlways My PalFirst 1000 Members!spring 2023!Squirtle!!!!MIDI WarriorMIDI Warrior1234 Posts!OzspeckCool Dude AwardRising Star of the Web AwardMessage BuddyPocket Icelogist!OG! Joined 2021!...
« 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: 1886
Last post October 11, 2023 @152.56
by flowers
Melons critiquing and helping each other

Started by urgellxBoard ✎ ∙ Art Crafting

Replies: 17
Views: 1540
Last post July 06, 2024 @814.12
by urgellx
tileable backgrounds + public domain images! + frames!

Started by xixxiiBoard ♺ ∙ Web Crafting Materials

Replies: 5
Views: 569
Last post May 17, 2024 @642.14
by TheFrugalGamer

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