Jump to content

Peeeeeeeeeeynk

Member
  • Posts

    42
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Peeeeeeeeeeynk's Achievements

  1. Hey guys I wanna buy a new graphics card and I am not sure what to get. I have AMD A6-6400K APU as my cpu, It comes with an AMD Radeon HD 8470D and that's about it. My rig does not have a "Real" gpu for games that I wanna play like rust. So I am looking for a card that goes well with my cpu. Bang for the buck is what I am trying to say. I hope you guys can help!
  2. Hi guys I'm planning on buying a new GPU. I am currenly using the built in one from my AMD A6 6400k CPU and I have a budget of 110$ Any recommendations on a GPU with the best performance to budget ratio?
  3. Hi guys I'm trying to learn on how to use icon fonts with Icomoon but I don't know how to use Icomoon or where do I put the stuff I downloaded. Can anyone teach me on how to use Icon fonts from Icomoon or just Icon fonts in general.
  4. Dude! Thank you so much this is so gonna speed my coding. The part of it not being able to be clicked on, it's okay just from this its already a big help. Thanks!
  5. no this is not the old one. I cant get it to work so I just deleted it and started new with this one.
  6. Hello everyone I'm trying to create a portfolio for my school project and I'm trying to implement filters in my code and I found some Issues where I cant fix it. This is the pen I'm working on http://codepen.io/CapsLocked/pen/qEdrf?editors=110 It works like this when they hover over the image the the text inside appears and the background image turns all blurry. I managed to do it in my earlier pens but the blur gets inherited by the text and I have no idea on how to solve this. Any help would be much appreciated.
  7. Thanks:D
  8. I'm still new to javascript maybe my syntax sucks.
  9. I know you can mentally solve them but the problem asked me to do a piece of code to prove if they are true or false .sorry should have mentioned that in the post
  10. Hi I'm practicing javascript at the moment,I'm doing these problems where I found on the internet where you have to code a program that does the follwoing. I managed to get the first one by using an if else but when I tried the if else again on the other numbers it did not work. Any help? I'm really new to javascript. Determine whether the following expressions are true or false: 1. !true || !false 2. (true && !false) && (false || !true) 3. (4 > 5) || true 4. ("this" != "that") && ("zebra" > "aardvark") 5. ((4 >= 6) || ("grass" != "green")) && !(((12 * 2) == 144) && true)
  11. thanks it's now working now all i have to do is fix the position issue:D
  12. I have been practicing on how to make dropdown menu's the problem is I can't get my hover to work every time I want my sub menus to appear. Please help. D: Below is some code that I made on my drop down menu. HTML <body> <nav> <ul> <li><a href="#">List Item #1</a></li> <ul> <li><a href="#">Sub Menu #1</a></li> <li><a href="#">Sub Menu #2</a></li> <li><a href="#">Sub Menu #3</a></li> </ul> <li><a href="#">List Item #2</a></li> <li><a href="#">List Item #3</a></li> </ul> </nav> </body> CSS nav { background: black; } nav ul li a { color:white; font-family:arial; text-decoration: none; display: block; padding:10px; text-align: center; } nav ul li { display:inline-block; } nav ul li a:hover { background-color: gray; } ul { margin-left:30px; position: relative; } nav ul ul { display:none; } nav ul li:hover > ul { display: block; }
  13. Google "Brackets" It's the one i'm using plus it's FREE!!
  14. Hey guys I have an input textarea and and a input submit, I want the button to work in a way so that when someone clicks it it will send the information in the textarea to a Email Address. How can you do this?
  15. Hi I have a question about z-index because i am fairly new to the property. Can I have 3 div's like this <div class="div1"> <div class="div2"> <div class="div3"> </div> </div> </div> My idea is can i make div 1 with the lowest hierarchy out of the three and div 2 and div 3 with the highest. I was planning on putting a transparent gradient layer over the body but I want the content to not be affected by the gradient. Is this possible?
×