- Strength to Increase Rep
- +7
- Strength to Decrease Rep
- -1
- Upvotes Received
- 39
- Posts with Upvotes
- 36
- Upvoting Members
- 29
- Downvotes Received
- 5
- Posts with Downvotes
- 4
- Downvoting Members
- 4
- Interests
- Music
- PC Specs
- 13" MacBook Pro - OS X Snow Leopard2.4 GHz320GB HD4GB RAM2TB External HD
Re: Your code is deprecated, and your method is outdated. NO ONE should use this. Regards, Arkinder | |
Re: It doesn't seem to be possible, and frankly it shouldn't be. It doesn't really make sense to take away the users default way of closing the browser. Regards Arkinder | |
Re: Please don't bring up old threads. Ask in the [URL="http://www.daniweb.com/web-development/php/17"]PHP[/URL] section. Regards Arkinder | |
Re: Please post a link to this page, and I'll be more than happy to help. Also, are you wanting the layout centered or on the left of the page? Regards Arkinder | |
Re: To start you clearly need to become more familiar with CSS. Not only what it is but how to use it. Mozilla, Google, and Opera all offer online tutorials. [URL="https://developer.mozilla.org/en-US/docs"]Mozilla[/URL] [URL="http://code.google.com/edu/submissions/html-css-javascript/"]Google[/URL] [URL="http://dev.opera.com/articles/view/27-css-basics/"]Opera[/URL] As well as the [URL="http://www.w3.org/wiki/CSS"]W3C[/URL], and [URL="http://htmldog.com/"]HTML Dog[/URL] is also worth checking out. For inspiration/ideas for styling your … | |
Re: You're question is a little vague to me. Some quick Googling comes up with things like [URL="http://www.1stwebdesigner.com/design/useful-web-design-tools-daily/"]this[/URL], and [URL="http://www.hongkiat.com/blog/27-must-have-starter-kits-for-web-designers/"]this[/URL]. As far as what the best things to have are is really just a matter of preference. However, two things I would say that every web developer needs is a good … | |
Re: No, it's not possible. It has something to do with the licenses. It shouldn't be too difficult to find a replacement for it though. OS X can still run PowerPC applications. If you have an install disk for the OS, you could always try making a new partition in the … | |
Re: A few specific places to try: [URL="http://code.google.com/edu/submissions/html-css-javascript/"]Google[/URL], [URL="https://developer.mozilla.org/en-US/docs"]Mozilla[/URL], [URL="http://htmldog.com/"]HTML Dog[/URL] , and [URL="http://www.w3.org/html/wiki/Learn"]W3C[/URL]. Regards, Arkinder | |
Re: W3schools is a horrible reference, and it should not be used for anything other than a reference - if at all. I do not know of any "good" video tutorials, but you could still try some of these: [URL="http://code.google.com/edu/submissions/html-css-javascript/"]Google[/URL], [URL="https://developer.mozilla.org/en-US/docs"]Mozilla[/URL], [URL="http://htmldog.com/"]HTML Dog[/URL] , and [URL="http://www.w3.org/html/wiki/Learn"]W3C[/URL]. Regards, Arkinder | |
Re: You are still using HTML 5 tags which do not exist to IE7. If you are wanting to switch your markup to HTML 4 make sure that you also change your DOCTYPE to HTML 4.01 Strict. [URL="http://www.w3.org/TR/html4/index/elements.html"]HTML 4 Reference[/URL] Regards, Arkinder | |
Re: The screen shots display fine for me. Try messing with the [ICODE]z-index[/ICODE] for the button, and if that does nothing you could try position the button absolutely. Keep in mind that you should give the containing popup a [ICODE]relative[/ICODE] position if you do the latter. If none of this makes … | |
Re: As far as ideas there are more than either of could count. However, ideas are useless if you cannot actually implement any of them. Start by learning the basics, HTML and CSS, then move into the more complex high-level languages. A few places to start at: [URL="http://code.google.com/edu/submissions/html-css-javascript/"]Google[/URL], [URL="https://developer.mozilla.org/en-US/docs"]Mozilla[/URL], [URL="http://htmldog.com/"]HTML Dog[/URL] … | |
Re: Joomla is a CMS (Content Management System). W3schools is a horrible reference. A few better places: [URL="http://code.google.com/edu/submissions/html-css-javascript/"]Google[/URL], [URL="https://developer.mozilla.org/en-US/docs"]Mozilla[/URL], [URL="http://htmldog.com/"]HTML Dog[/URL] , and [URL="http://www.w3.org/html/wiki/Learn"]W3C[/URL]. Regards, Arkinder | |
I recently had an assignment that asked us to restrict the amount of characters a user can enter for his or her name. My professor said this is useful in the event that your program is being "attacked." The simplest solution was to use C strings: [CODE]#include <iostream> const int … | |
I am not exactly sure what information is relevant, so my apologies for any useless/redundant information. On my Mac (Snow Leopard 10.6.8) with xCode (gcc) compiled and run through the terminal the following works fine (ignore code and continue reading): [CODE]#include <istream> #include <string> #include <iostream> #include <fstream> enum Year … | |
Re: As Dandello said, part of the problem is that the container is smaller than the total width of its child elements. The other part is that the browser window is also smaller than the total width of said child elements. Try increasing the width of the body and make changes … | |
Re: First, validate your [URL="http://validator.w3.org/"]HTML[/URL] and [URL="http://jigsaw.w3.org/css-validator/"]CSS[/URL]. You have listed this CSS rule twice with two values. Use only one - the second one. [CODE].clearfloat { display: inline-block;}[/CODE] [CODE].clearfloat { display: block;}[/CODE] The featured side bar doesn't have enough width in IE, which is what's pushing the text down. [CODE]#featured .info … | |
Re: As far as designing one for yourself goes, Xcode is a must. However, it requires a some what in-depth knowledge of how Lion deals with data. The only think I've ever used Xcode for is compiling my C/C++. Regards Arkinder | |
Re: Hi blaaam, Welcome to Daniweb! Yes, this should probably be posted in the [URL="http://www.daniweb.com/web-development/php/17"]PHP[/URL] section. Regards Arkinder | |
Re: It might be possible with psuedo-classes, but you would have to be very careful about where you place each element - more trouble that it's worth. jQuery is a JavaScript library that allows you to do things like this with very little code - 4-8 lines. So I definitely recommend … | |
Re: The .html file extension is just a renamed text (.txt) file containing HTML markup. Regards Arkinder | |
Re: [ICODE]background: url('images/footer.jpg') no-repeat;[/ICODE] Note the single quotes. Make sure that you're using the correct file path, then try giving it a set width and height. If it's still not appearing, then another element is affecting it. Regards Arkinder | |
| Re: Hey Toby, You'll need to use a [ICODE]clear: both;[/ICODE] either as its own element before the form, or on the footer. Floating an element removes it from the normal flow of the page, so that's what's causing it to overlap. If you need help figuring it out just let me … |
| Re: Make sure that you are using a doctype and that your [URL="http://validator.w3.org/"]HTML[/URL] and [URL="http://jigsaw.w3.org/css-validator/"]CSS[/URL] are valid. As drjohn suggested, reset the margin and padding for every element. Except, instead of using a body selector, try a universal rule just to avoid any possible inheritance issues. [CODE]* { margin: 0; padding: … |
Re: If .profile is a child of the division then it's going to have the same width because you haven't set any widths, unless .profile in an inline element (I'm assuming not since you're using [ICODE]text-align: center;[/ICODE]) So once again, assuming: [CODE] div { background: 0 10px url(bkcontentwrap.png) repeat-y; background-size: 800px … | |
Re: This cannot be done with HTML or CSS. Try PHP. Regards Arkinder | |
Re: [CODE]#nav-outer { background-image: url("/images/headerbg.png"); height: 110px; padding-top: 11px; position: relative; [COLOR="Red"]top: 24px;[/COLOR] }[/CODE] The [ICODE]top[/ICODE] property is pushing the header down. Firefox is the official browser of the W3C, and is such because it displays HTML and CSS more correctly than any other browser. So what I find odd is … | |
Re: Multiple audio elements display and work correctly for me. Check your attributes for missing quotations, and that you are correctly closing each tag. Regards Arkinder | |
Re: Could you post a link to a test site or the markup and CSS that you have already tried? There are several ways to do this, but I would rather not list them all if they aren't relavent to what you're doing. Regards Arkinder | |
Re: Use [URL="http://plugins.jquery.com/plugin-tags/popup"]jQuery[/URL]. Regards Arkinder |