Jump to content

Rickname

Members
  • Posts

    14
  • Joined

  • Last visited

  • Days Won

    1

Rickname last won the day on May 6 2022

Rickname had the most liked content!

Previous Fields

  • Languages
    HTML, CSS,

Profile Information

  • Interests
    Banging my head in the wall trying to understand the language logics.

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Rickname's Achievements

Newbie

Newbie (1/7)

1

Reputation

  1. Rickname

    Menu Help

    Have you tried using media queries? https://www.w3schools.com/cssref/css3_pr_mediaquery.asp As example @media only screen and (max-width:600px){ /*CODE*/ }
  2. fa sucked anyway, with the incompatibility in Tor browser.
  3. Solved this issue, and the solution was too simple to be considerable. <main id="index"> <a href="bilete.html"><img alt="bakgrunnsbilete" src="./Grafikk/Bilete/kids-2985782.jpg"></a> </main> main#index a img{ width:100%; } Anyway, thanks a lot to you @dsonesuk for bearing with me through this thread!
  4. Solved this issue, and the solution was too simple to be considerable. <main id="index"> <a href="bilete.html"><img alt="bakgrunnsbilete" src="./Grafikk/Bilete/kids-2985782.jpg"></a> </main> main#index a img{ width:100%; } Anyway, thanks a lot to you @dsonesuk for bearing with me through this thread!
  5. So it should work giving <main> a background property in CSS? What's then wrong with the code I posted above? Even adding min-height:50%; doesn't makes the background image appear.
  6. It is possible to set an undefined height so the height can be set by abstract background-size values, or otherwise maintain this possibility? And which content could be added for giving the same effect?
  7. I have been trying with container elements, but do not know what I am doing wrong. <main> <div id="index"></div> </main> div#index{ background-image:url("./Grafikk/Bilete/kids-2985782.jpg"); background-attachment:fixed; background-size:contain; }
  8. The context here is adding images. I need to be able to set the background property background-size:contain; .
  9. Hmm... Get's this error when trying to search:
  10. Wonder if the love for Opera is as big now as it was before they became simplicity-focused with Chromium. Myself did I cried many night until I found Vivaldi.
  11. *cough* phpBB. No heavy arguments, just a personal preference.
  12. It's getting frustrating having to wait on the timer before being allowed to proceed the search on the forum for answers for my coding problems. I understand it's a measure against bots/server flooding, but isn't it better options around that doesn't put so strict limitations on us users?
  13. So classes are more flexible ref than id. But what is special about id? I can't imaging why it exists if it only can do what classes can do, and that with narrower field of usage.
  14. I'm quite new to coding, and have big trouble understanding the logic in even the supposedly easiest languages to learn. However, what is the functional differences between .class and #id? Is there situations where only either of them can be used? I can't see any difference by reading the W3 pages about them (respectively https://www.w3schools.com/cssref/sel_class.asp and https://www.w3schools.com/cssref/sel_id.asp).
×
×
  • Create New...