Recent content by Krygore

  1. Krygore

    What is everyone working on?

    Back in August I enrolled in Bloom Institute of Technology, it has been a very interesting adventure. I'm about halfway through the course now and pushing hard to get through it the rest of the way. I've had a few set backs (a new job that requires more of my time and the birth of my first...
  2. Krygore

    HTML & CSS Employment

    React and node.js would a huge benefit to learn! What courses have you taken so far, if any? If none, I highly recommend checking out udemy.com or even bloomtech.com (which is a non-accredited school that I'm currently in with a 110% refund guarantee if they can't find you a job paying at least...
  3. Krygore

    TailwindCSS

    I definitely agree to that statement. I also feel bootstrap is easier to use. I have yet to be able to get a cdn that works properly for tailwindcss and therefore still haven't used it. For some reason or another, the @import file doesn't do what it's supposed to on my computer lol
  4. Krygore

    JavaScript Return an array of names

    For the record, I did spot the differences @cbreemer and realised that it was more helpful than I originally thought. I was able to use it later on in the code where I ran into an issue that I needed to loop through the array. So, still useful information lol
  5. Krygore

    Hello everyone

    You've definitely come to the right place! I believe the site admin/owner actually has a few tutorials here on the site for free for you to browse through as far as C C# and C++ go. Any other programming languages, we have tons of experienced and knowledgeable people here who can help set you on...
  6. Krygore

    JavaScript Return an array of names

    I ended up figuring it out with a map method. function listOfNames(array) { let newArray = array.map(({name}) => name) ; return newArray; } console.log(listOfNames(artists));
  7. Krygore

    JavaScript Return an array of names

    So, that returns just the first name in the array... Amedeo Modigliani It's a pre-generated list TBH. There is a total of 20 artists, Paul Klee and Georges Braque are not on it, but Picasso is
  8. Krygore

    JavaScript Return an array of names

    So I have an object array of classic artists, I need to create a function that creates a new array with just the artist names. I have tried using .map() and for..in loops with no success. Here is where I left off before giving up :sleep: const artists = [ { "id": 0, "name": "Amedeo...
  9. Krygore

    Website overview

    I really like the layout you have! Easy to navigate, everything is clearly visible. If I could change anything about it, it would be the animation on your main header text. Every time the image changes, the text spins in and that's a little obnoxious in my opinion, but please don't change it...
  10. Krygore

    HTML & CSS How To Nest Embedded Video and Audio In DIV?

    Why do you have html tag in there 3 times? All the contents should be within the same html tag. Also, all scripts go just before the closing </body> tag, in the order that you want them executed (yes, it matters). You had a typo in your frameborder properties as well. You could try using...
  11. Krygore

    HTML & CSS Bootstrap

    In my opinion, the only thing Bootstrap is good for is that you can use the templates to get you started on the general idea that you are looking for. Overall though, I agree with @OldMan, learn the coding languages yourself so you have an understanding of them. Implement BS if you want, but use...
  12. Krygore

    HTML & CSS Space between two <div> elements

    Your #info selector doesn't have a display property in use for the top: 0px; that you have there. The code doesn't know what to do with top: 0px; with out having display: absolute; or display: relative;. You should be looking at padding or margin. Also keep in mind the box model! Padding...
  13. Krygore

    HTML h1 as html5 header ?

    Place the header tag before your h1 tag and end it after the last element that you want in your header. So if you only want your h1 in the header, it would look like this: <header> <h1 header= class='post-title entry-title' style='margin: 10px 0;font-size: 17px;'> text title</h1> </header> That...
  14. Krygore

    HTML & CSS Help with border radius in wordpress app

    In your selector tag, delve deeper into the tag and select the img element as well. #mapsvg-map-5 .mapsvg-popover img{ background-color: #fffdf3; padding: 1px 1px; border-radius: 25px; } Give that a try. And what coding language is that?
  15. Krygore

    TailwindCSS

    Has anyone here used TailwindCSS? If so, how difficult is it to learn to use? I'd love to be able to just assign a class to get the effect I want without having to mess with a bunch of CSS properties and toy around with it til I figure out the right formula... My code looks like hell and I want...
Top Bottom