Just a young web developer look to expand my knowledge.
- Interests
- Video games, web developing, fishing, soccer, my girlfriend.
- PC Specs
- Windows 7 64bit
43 Posted Topics
Re: “PIPPIN: I didn't think it would end this way. GANDALF: End? No, the journey doesn't end here. Death is just another path, one that we all must take. The grey rain-curtain of this world rolls back, and all turns to silver glass, and then you see it. PIPPIN: What? Gandalf? … | |
I have a website that has been using background color animations for a while when all of sudden they just stopped working. I can't think of any major change I've done that would have caused it. So I created a folder to test out my jquery.min.js and jquery.ui.js files. Here … | |
The website weblup(dot)net/templates/template3 looks 100% correct on the computer thusfar. The overflow is hidden and you can't see the mobile menu bar or the pictures that slide in. But when opened on the phone you can scroll over, and see where the mobile menu is and where the next photo … | |
So I haven't used preg_match too terribly often but I found this example online for parsing a page to get text from div's: preg_match("/<div class=\"topic\">(.*?)<div class=\"content\">(.*?)<\/div>/", $html, $matches); Now everything looks familiar to me and I understand until I see the (.\*?) What role does it play in preg_match? | |
So I have my PHP code here: $r = new HttpRequest('https://api.worldoftanks.com/wot/auth/login/', HttpRequest::METH_POST); $r->addPostFields(array('application_id' => 'e991ff783ae65f1ceefd1036211e5772', 'redirect_uri' => 'http://www.wotclanbuilder.com', 'nofollow' => 1)); try{ $result = $r->send()->getBody(); $json = json_decode($result); $url = json_encode($json->data->location); echo $url; } catch (HttpException $ex) { echo $ex; } and my Ajax code here: // AJAX Code To … | |
I'm using this code right now: // JavaScript Document $(document).scroll(function(){ if($(document).scrollTop() >= 470) { $('div.slide-in-section1').effect('slide'); } }); And of course I did realize that whenever you scroll just a little more it will keep re-running this bit of code. But I figured I had a fix, which was this: // … | |
Re: Yeah if you were to use parallax scrolling you would want to use media queries for different sized screens. | |
I have some JQuery code where an if-then statement is being run after a .slideToggle event. I just don't understand why the if section is still being run when it would appear the if statement is false. Code incoming: JQuery: $(function() { var pull = $('#pull'); menu = $('div#nav ul'); … | |
As you can see in the picture below, the whenever I hover over an element in the corner, the element is seeming to over-ride the border and is going over it instead of behind it. I'm assuming that's because of the "box-sizing: border-box;" in the CSS, how would I deal … | |
Re: To answer your question about classes, yes you can apply classes to any tag. You can also use ID's which are basically the same. Here would be an example: HTML (Side Note: Remember the class name can be anything you desire): Username:<br /> <input class="textbox" type="text" id="user_input" name="username"/><br> CSS: input.textbox … | |
Alright so I'm trying to figure out why this code will show the menu bar on the computer when the page is loaded, but not on my Samsung Galaxy S4 whenever it's loaded. Here is the code, I can provide the link if needed, but I would prefer not to. … | |
Re: Hello I may be able to help you with this one. I recently switched to a payed version (which I will reccomend because all the free ones are pretty limited compared to what you can have), but what I used before was called 000webhost. You can find them at http://www.000webhost.com … | |
Re: I would agree with 000webhost... I have not tried the others. | |
I feel like this is a very dumb question but please excuse me if there is an obvious answer. I have just recently seriously dug into JQuery (loving it by the way). Anyways in the code below you can see I have the color to animate to white and green … | |
Re: I don't believe it would be necessary to convert it to a PDF. But I could be wrong. I am still a little confused on what you are trying to achieve. ![]() | |
Re: This is a question of curiosity, are you doing the resizing to find out if the page is responsive? | |
So I am planning on being a full time web-developer. But at the moment I'm not sure really what kind of college options I have. I've looked but I haven't really found any kind of "web-developing degrees". I always thought I would go to college but uh... well I'm not … | |
I don't understand what the problem is at all... I can point you to the url [link removed] but I just need people to tell me what html and css they need to know... I can put it all here but it would be a bit overwhelming. | |
Re: Well this may work but I would suggest making sure everything you want replaced is wrapped in a main div. Then having your PHP replace that div with what you want the preview to look like. I'm not totally sure I'm understanding exactly what you are asking but if there … | |
I have looked everywhere, I looked through regedit, I can't see anything on control panel, it's not on extensions, I have reset firefox, I recently ran a MalwareBytes scan and you think it would catch this, but I just can't figure it out. It's only on Mozilla it seems but … | |
Ok... to be honest I should have seen this coming. But as I was designing my website I decided to test it out ([test.weblup.net](http://www.test.weblup.net)) in IE and Firefox. If you test it out yourself you can see how different they look. Well I'm not sure how to deal with it … | |
So I have a website and it looks completetely normal in Google Chrome. When I open it up in Mozilla Firefox, there is 1 heading that won't word-wrap unless I make the font 1px bigger. So instead of looking like this: Welcome To Weblup! It just looks like this on … | |
Re: I'm still not quite understanding what you are asking for... are you wanting to go to a different page... or what. Any kind of example you can show us? | |
Ok so here's the breakdown... * I have never installed Wajam * I never wanted Wajam * I'm not sure what keeps installing it, my guess so far is there is a background process running that I don't know about that keeps installing Wajam * One clue might be is … | |
Re: If you want the image to dissapear when a maximum content is reached, then why do you have the code functioning onClick? | |
Re: Are you saying you want to use an external JS file? | |
Re: Try and make the text colorful, for example make the text sort of have a texture. This can be easily achieved if you have Photoshop. Otherwise try and and have every section seperated with one color, that will go good against textured text. | |
Ok so on my website ([Click Here](http://www.test.weblup.net)) you can see how the text is going into the background image a little bit. I'm leaving it there to show this as an example of my many problems. Well what I was thinking is should I remove the background image, and just … | |
Ok I am seriously stumped by this. I have a CSS reset, but some reason my body on my website ([Click Here](http://www.test.weblup.net)) still has a margin of 8px all the way arround. My CSS reset is pasted below, you can go to the website to see the HTML. The only … | |
Hello, as you can see here [link removed] You see that the text "Weblup" is sort of ofset to the other <li> elements. Now I do know that it is a different text size but it's basically the same size as the others due to padding. So I want to … | |
Re: You can use what cereal suggested, [http://www.videojs.com](http://www.videojs.com) or just try googling it. There are many free open sourced html, php, javascript, etc... players that you can embed into your website. | |
Re: Because people grab those things and stop them from doing that. Why don't zombies exist? | |
| |
Hi I am trying to change the <p id="returnsuccess"></p> to say anything at this point. I have some code it's about a form submission I don't think the PHP part is that important in solving this problem. But I want to know why the code I have doesn't work and … | |
I'm trying to make my button change from saying "Submit" to "Submitting" when it's clicked. But it's for a form so if something like e-mail validation fails I want it to change back to saying "Submit". Here is the code I already have if you would like to take a … | |
Hello all, I have recently copied a website from Weebly.com that I do own, so there is not copyright problems. It's just that I want to make the HTML simpler if I can. So here is what I have you can see the website live at [weblup.net78.net](http://www.weblup.net78.net). If there is … | |
I want to get this picture [Click Here](http://i.imgur.com/hCeF8pl.jpg) to look like the picture on this website [Click Here](http://www.weblup.weebly.com). It looks cropped almost because it doesn't look scaled or anything, but I know it's not cropped because I got the image off of this website. So any ideas. I tried to … | |
I am trying to insert a background image but for some reason when I put this... html{ background-image: url('images/background.png'); background-repeat:no-repeat; background-size:100% 100%; } It doesn't seem to work, it stays blank. I know I have the path correct and the name correct I have only gone over it a million … | |
This is code that I currently have right now so that I could have text centered in a div box. But there has to be an easier way, can someone show me how? Code I am using now: <div id="teampiccontainer" style="width:1000px; height:100px; background-color:#EB6262; margin: 0 auto;"> <div id="text1" style="display:table-cell; vertical-align: … | |
I am trying to center these <li> elements but I can't seem to figure out how. I now I could just add 400 margin to the other <li> element in CSS but I need to have a picture to the left of both of these and I know that won't … | |
I made a navigation tab (here is the url if you would like to see it http://i.imgur.com/FnjEoYH.png) and I am now trying to make each tab "highlight" (one example is the home tab http://i.imgur.com/VoU48Fk.png) whenever a mouse is hovered over it and go back to normal when mouse is not … | |
Re: There are many different kinds of job oppurtunities for a web designer. If you are a web designer you could be an independent company and create your own webhost. Also you could just work for another company that makes websites for other people for money, for example https://www.homestead.com/~site/hslo/designservices/howitworks.ffhtml Or you … |
The End.