This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 751. |
Solve : WC3 validation problem? |
|
Answer» I'm using a XHTML table format for my sitemap and the file has just one error left to correct: Any reason for having an empty table? I'm not sure, but that could be causing it.This is definitely it. I took the empty tables out of the code and it validated fine. I can't see the changes you made. Is it possible to show me here? Really appreciate it. Quote from: springbud on April 21, 2013, 08:47:38 PM I can't see the changes you made. Is it possible to show me here? Really appreciate it. just remove these (there are a few of them): That validates now. Many thanks http://www.jkershaw.info/sitemap.html |
|
| 752. |
Solve : Need Word Press templates for Mobile Devices.? |
|
Answer» It sis for a new PROJECT, not my present blog. The WordPress Mobile Pack is a complete toolkit to help mobilize your WordPress site and blog. It includes a mobile switcher, filtered widgets, and content adaptation for mobile device characteristics. Activating this plugin will also install a selection of mobile themes by ribot, a top UK mobile design team, and Forum Nokia. These adapt to different families of devices, such as Nokia and WebKit browsers (including Android, iPhone and Palm). If enabled, your site will be listed on mpexo, a directory of mobile-friendly blogs. Also CHECK out the documentation and the forums. If you like the plugin, please rate us on the WordPress directory. And if you don't, let us know how we can improve it!Another option is to look for a template that is described as "responsive". Instead of having a separate template for a mobile site, you would have one template that adjusts to different screen sizes. for example if the resolution falls below a certain level, the navigation bar will change into a drop down menu triggered by a button. A good example of responsive design is BOOTSTRAP from Twitter. You can see how it works by viewing http://twitter.github.com/bootstrap in both a desktop browser and a mobile device (or by shrinking the browser window to a smaller size).Wow! Glad I asked. All of the above were helpful. Now I have enough stuff to keep me busy of awhile. Thanks to hall. Another way to find mobile themes is to log into your admin area in wordpress. After logging in go to your DASHBOARD, then click on change theme completely. At the top of the next page click on install themes, right next to manage themes. After the next page comes up type in mobile, click on search and all of the themes that come up should be mobile themes. Hope this helps also. |
|
| 753. |
Solve : putting link code in banner image? |
|
Answer» how do I put link code in banner?? |
|
| 754. |
Solve : temperature converter? |
|
Answer» My temperature converter converts Fahrenheit to Celsius fine but it wont convert Celsius to Fahrenheit please can someone help? Enter a temperature in degrees Fahrenheit: Enter a temperature in degrees Celsius: I'm thinking two functions named Conversion are ambiguous. Try using two different names and fixup the references accordingly. Not very knowledgeable of HTML but are duplicate div nodes VALID? (id="outputDiv") Your problem is that both functions are called Conversion - This will not work as you need to be able to identify the functions uniquely, you should change the name of them so you have one (for example) "convertCtoF" and another "convertFtoC" (It's generally ACCEPTED to start functions with a lower case character although it doesn't affect the actual functionality. Also, you do not need to specify 'language="javascript"' since you use the type attribute, using language was the older WAY of doing things before the type attribute became standard. The only other issue that doesn't affect the functionality is that you have 2 divs with an ID of "outputDiv" - An ID is designed to identify a single element so both of these IDs should be different. Alternatively you can use a "class" attribute to identify multiple elements under the same name. See updated code below - There appears to be a problem with the calculation to convert C to F but at least the function still works so it shouldn't be to hard to fix: Code: [Select]<div style="text-align:CENTER"> <h2>Temperature Conversion Page</h2> <script type="text/javascript"> function convertFtoC() { var tempInFahr = parseFloat(document.getElementById('fahrBox').value); tempInCelsius = (5/9) * (tempInFahr - 32); document.getElementById('celsiusBox').value= tempInCelsius; } function convertCtoF() { var tempInCelsius = parseFloat(document.getElementById('celsiusBox2').value); tempInFahr = (9/5) * (tempInCelsius + 32); document.getElementById('fahrBox2').value= tempInFahr; } </script> <div id="f-to-c" class="outputDiv"> <p> Enter a temperature in degrees Fahrenheit:<input type="text" id="fahrBox" size="10" value="" /> <input type="button" value="Fahr -> Celsius" onclick="convertFtoC();" /> equals <input type="text" id="celsiusBox" size="10" value="" /> degrees Celsius </P> </div> <div id="c-to-f" class="outputDiv"> <p> Enter a temperature in degrees Celsius:<input type="text" id="celsiusBox2" size="10" value="" /> <input type="button" value="Celsius -> Farhrenheit" onclick="convertCtoF();" /> equals <input type="text" id="fahrBox2" size="10" value="" /> degrees Fahrenheit </P> </div> |
|
| 755. |
Solve : Best software for working with PHP website I'm trying to use note++ but looking? |
|
Answer» If you have direct access to your Apache server I would just use shell to write the code. It will show you any SCRIPTING errors that you may have. But If I don't have shell access I would use Notepad++ and use Filezilla to FTP. Quote from: jormeno on May 22, 2013, 02:09:03 PM If you have direct access to your Apache server I would just use shell to write the code. It will show you any scripting errors that you may have. But If I don't have shell access I would use Notepad++ and use Filezilla to FTP. how would Nano show errors in the script? This sounds more like editing a live production environment by the seat of the PANTS. Quote from: BC_Programmer on May 22, 2013, 06:25:49 PM how would Nano show errors in the script? This sounds more like editing a live production environment by the seat of the pants. sorry I forgot to add that I use VIM. you can find that package you can use yum -y install VIM. VIM will color code it for you. Quote from: jormeno on May 23, 2013, 10:10:31 AM sorry I forgot to add that I use VIM. you can find that package you can use yum -y install VIM. VIM will color code it for you. Ahh. well syntax highlighting and "error insight" type features are quite different. whether you use yum or sudo (or whether either are available) depends on the environment of the server itself. Quote from: BC_Programmer on May 23, 2013, 10:22:50 AM Ahh. well syntax highlighting and "error insight" type features are quite different. You are so right, I am at work so I was speed typing lol. With VIM it will color code the code you are using but if everything shows up in red in some SCRIPTS such as css or php it will DISPLAY in red. If it is correct it will display in green and white and red you will no when you see once you start coding in VIM. sorry for the confusing.Syntastic seems to be what you are REFERRING to (VIM plugin) |
|
| 756. |
Solve : ASP source code? |
|
Answer» Hi all . . . any HELP is GREATLY appreciated. |
|
| 757. |
Solve : [PHP] Pulling information from the database to fill forms?? |
|
Answer» Hey Hopers, what I'm trying to do is pull INFORMATION from my database and display it in html form fields, I'v already worked out how to do this for text but I'm unsure of how to do it with HTML Form Fields like Radio, Checkbox and Select. I imagine it's due to your code expanding to this: When I do that on it's own it outputs a checked radio field, which is what I want but for some reason the field doesn't check with the PHP code, I Guess I'll have to look into my code a little more. edit: Realised the issue was that I was pulling the data via sessionid but I had forgotten to include the file that handles sessions, sorry guys.Wont let me edit my post again, I guess there is a timer For anyone who has this issue and finds this, I ended up changing my method for a more indepth 'failproof' method as the above was returning true if null for some reason. I ended up using an if statement and then calling the session information and then echoing the fields.; Code: [Select]<?php if($session->userinfo["gender"] == "male") { echo '<input type="radio" name="gender" id="gender" value="male" checked>Male' ; } else { echo '<input type="radio" name="gender" id="gender" value="male">Male'; } if($session->userinfo["gender"] == "female") { echo '<input type="radio" name="gender" id="gender" value="female" checked>Female' ; } else { echo '<input type="radio" name="gender" id="gender" value="female">Female'; } ?> Hopefully this can help someone else like me new to this type of PHP Coding Now I'm up to the birthdate field, I could use the above method but It would take quite a few lines to get the correct results, what would be the best way for me to A. Store the Date of Birth and B. retrieve and display it for editing? I'm assuming I'd CONVERT the results into a string for storage but how would I split it back up on retrieving it? |
|
| 758. |
Solve : Javascript problem in Safari for windows? |
|
Answer» I need to password protect a webpage so I use the following code, which works find in Explorer, CHROME and Firefox but returns password Incorrect in Safari. |
|
| 759. |
Solve : Wordpress Hosting Proglem? |
|
Answer» I need to move my WordPress Blog. You are right. Could not find any posts in the stuff I downloaded. Actually, usually the database isn't stored in files that are accessible from your hosted account. Quote from: BC_Programmer on June 21, 2013, 06:32:32 PM Actually, usually the database isn't stored in files that are accessible from your hosted account. Yeah, you'll need to export them using a program - Most web hosts provide "PHPMyAdmin" through their control panels, this is what you would use to export and then probably also to import once you reach your new server.Thanks folks. Right, FTP does not go into all things. But I was able to get into the control panel via the server portal, not my web site. But on a hunch, I tried getting HTTP via a proxy. It worked! For some reason I was BLACKED from my web site! With HTTP, WordPress will export stuff as an XML file. Problem solved! |
|
| 760. |
Solve : All the coding going into the title?? |
|
Answer» I have been very tired here with this. For experts that do not remember HTNL, use and editor like Opera. Use the WYSIWYG mode to make something, then look at the HTML source to see how it was done.RIGHT: Quote from: Geek-9pm on May 31, 2013, 11:09:10 PM For experts that do not remember HTML, use and editor like Opera. Use the WYSIWYG mode to make something, then look at the HTML source to see how it was done. |
|
| 761. |
Solve : popup calendar control? |
|
Answer» Hai everyone |
|
| 762. |
Solve : web designe? |
|
Answer» guyz I am making new website that is totally based on computer like "how to decrease your start up time" & other tricks . I am never make website ever . i WANT to know making website on these tricks is legal or not Yep, as long as you don't cover stuff like pirating software, cracking passwords.etc you'll be fine!befor you stard designing the web page i recomend looking for a tutorial on html and css, so you have a rough idea on coding the web page after that down load a trail of dreamweaver and BUILD the web site I recommend that you learn the basics of web design. This will help you avoid web design mistakes along the process that makes the entire procedure long and time wasting. I learn't HTML in college, not really knowing exactly what was what haha. I just basically learned the STRUCTURE of an HTML file, adding text, making it bold etc. After getting a bit of knowledge in that, I started to work with CSS, making text bold etc. |
|
| 763. |
Solve : E-shop hosting advice?? |
|
Answer» So it looks like I'll be involved in a small business project and long story short we'll need to MAKE a business website with a proper e-shop. I've been recommended to pick 1and1 as the hosting service since they have support for business sites and what's more important for me is that I'm not into coding from SCRATCH and they have support for building an e-shop. |
|
| 764. |
Solve : HTML Email Help? |
|
Answer» http://jsfiddle.net/4Gb9r/ See where it says "Current Annualized Distribution Rate 6.10%" I am trying to make the top of the brown BOX, LEVEL to the BLUE box on the left with "Benefits for you" This is an HTML email I received someone made in MS Word, which is why I am having ISSUES. Again, I am trying to have these two boxes aligned on the top with some padding in-between. I have been trying to get this done all day. Any help would be much obliged. |
|
| 765. |
Solve : HTML, load picture with a next button.? |
|
Answer» So I just started to try and write a web page. With the help of w3schools I got the page working pretty GOOD, but I hit a roadblock 2 days ago that I can't fix. |
|
| 766. |
Solve : Mobile Device Template of Wordpress? |
|
Answer» The idea sis for a new project, not really my own current website. |
|
| 767. |
Solve : html codes for making Google + search box? |
|
Answer» I want to create a a google + search BOX |
|
| 768. |
Solve : Checking compatibility across browsers? |
|
Answer» I'm using a trial version of dreamweaver. Whats a free way to check browser compatibility across IE and other browsers and mobile devicesBrowsershots.org is a pretty handy website for that. You can get screenshots of your page in any browser, at any resolution, though it can take a little while as it's all done by volunteers.IETester is good for that (I use it all the time at work) - http://my-debugbar.com/wiki/IETester/HomePage |
|
| 769. |
Solve : I made an interesting discovery on my webhost? |
|
Answer» I discovered that my webhost account had been compromised in some fashion. |
|
| 770. |
Solve : free software that shows divs? |
|
Answer» Hi, IM practicing HTML code and am getting CONFUSED where a div stops and anouther one starts what is some free software I can use to solve this?Bot sure if this is what you want. There are HTML editors thereat LET you alternate between the HTML and the visual mode. One is Sea Monkey.
Hope that helps. and is there a text editor that will show what start div is connected to what end div?The SeaMonkey HTML visual editor will switch instantly to source, mode from tab. Code example: Code: [Select]<html> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type"> <TITLE></title> </head> <body> <div style="color:#0000FF"> <h3>This is a heading</h3> <p>This is a paragraph.</p> </div> </body> </html> Does that help? The div tags made all inside blue, but did not stop other tags. will display as: This is a heading This is a paragraph. Try using Notepad++ . It color codes and indents HTML tags. I think this could be helpful to you with regard to the div tags. |
|
| 771. |
Solve : Creating a Football Pick Slip? |
|
Answer» This could be the vaguest, most asinine question ever. |
|
| 772. |
Solve : Urgent!!!!!! what is the html codes for the google+yahoo search bar?? |
|
Answer» open this link http://onewebsearch.com/ and please tell me what is the html code of it |
|
| 773. |
Solve : Picture? |
|
Answer» I have a project for school and i CANT figure out why my pictures are'nt loading. Click the LINK below to go the page with more info http://borderlands.wikia.com/wiki/Axton" target="new">http://borderlands.wikia.com/wiki/Axton[/url] Home[/url] Do you an "images" folder on your web server? Is it in the home directory, where your home page resides? The problem might be in how you have simply coded the path as "images/download.jpeg". Take a look at http://stackoverflow.com/questions/5190769/html-img-and-asp-net-image-and-relative-paths and review your path CODING. All images have to be absolute REFERENCE or relative reference. Relative means relative to where the web page is located. When in soubt, luse absolute reference. What program do you use? Some web editors take are to the details. But if you are hand coding, you have to FTP all the files to the right places on the web site. Are you using Dreamweaver? It should do the work for you. Thanks i guess my images folder was not present when i did this but i had it in my folder, but i made a new one and it was fine. Thanks though |
|
| 774. |
Solve : Creating a Similar Grid Style posts On Any other blog? |
|
Answer» I am very CONFUSED and ashamed also that my friend asked me to change the post style in blogger but after an HOUR i could not this is out of my mind and i don't know what to do so plz any body tell me that how to copy that similar GRID style post design in any other blogger blog. |
|
| 775. |
Solve : How to display records from MySQL on a new site using PHP?? |
|
Answer» I want to fetch a news (record) from mysql and display in my site using PHP. Here is my code(PHP): |
|
| 776. |
Solve : trouble with date? |
|
Answer» Hi guys, would someone look over this and advise me what to do? Parse error: syntax error, unexpected 'm' (T_STRING)Code: [Select]<?php error_reporting(0); mysql_connect('localhost','root',' '); mysql_select_db('oodb') or die("Unable to select database"); $query=" SELECT * FROM oocust WHERE payrec = 'P' && pd = ' ' $result=mysql_query($query); $num=mysql_numrows($result); echo date("m/d/Y")"<br />"; echo "<FONT size=+2><b> Accounts Payable Report<br /><br />"; echo "<table cellspacing=1 cellpadding=0 border=0> <tr> <th colspan=3></th> <th>due</th> <th>days</th> <th></th> <th></th> <tr> <th>ACCT#</th> <th>customer</th> <th>description</th> <th>date</th> <th>late</th> <th align=right>charges</th> <th align=right>paid</th> <th align=right>due</th> <tr> <TH colspan=9>==============</TH> </tr>"; while($row = mysql_fetch_array($result)) { $totcharges = $totcharges + $row['charges']; $totdue = $totdue + $row['amtdue']; $totpaid = $totpaid + $row['paidamt']; echo "<tr>"; echo "<td>" . $row['acctno'] . "</td>"; echo "<td>" . $row['bname'] . "</td>"; echo "<td>" . $row['descr'] . "</td>"; echo "<td>" . $row['duedate'] . "</td>"; echo "<td align=right>" . $row['dayslate'] . "</td>"; echo "<td align=right>" . $row['charges'] . "</td>"; echo "<td align=right>" . $row['paidamt'] . "</td>"; echo "<td align=right>" . $row['amtdue'] . "</td>"; } echo "<tr>"; echo "<th colspan=9>========/TH>"; echo "<tr>"; echo "<td>Gtotals</td>"; echo "<td colspan=4></td>"; echo "<td align=right>" . sprintf("%.2F",$totcharges) . "</td>"; echo "<td align=right>" . sprintf("%.2f",$totpaid) . "</td>"; echo "<td align=right>" . sprintf("%.2f",$totdue) . "</td>"; echo "</tr>"; echo "</table>"; mysql_close(); ?> |
|
| 777. |
Solve : test creator?? |
|
Answer» I to know how to go about CODING an ONLINE test CREATOR. Could somebody HELP me out with that? |
|
| 778. |
Solve : need advice re php access? |
|
Answer» Hi guys, help me with my little coding problem. please.<BR>I key in "localhost/invoice/apdue.php" and get desired 9/28/13 Accounts payable Report but when trying to open apdue.php via the below (invoicenav.html), that should open the apdue.php:, Code: [Select]<html><body bgcolor="#ccffff"><p> <table bgcolor=pink width="180" border=0> <tr> <td><a href="http://localhost/apdue.php">Payables Due</a><br></td> <tr> <td><a href="http://localhost/appaid.php">Payables Paid</a><br></td> <tr> <td><a href="http://localhost/ardue.php">Receivables Due</a><br></td> <tr> <td><a href="http://localhost/arpaid.php">Receivables paid</a><br></td> </tr></table> </center></body</html> I get the below: Quote Object not found!Below is the aforementioned apdue.php: [/quote] Code: [Select]<?php error_reporting(0); mysql_connect('localhost','root',''); mysql_select_db('oodb') or DIE("Unable to select database"); $query=" SELECT * FROM oocust WHERE payrec = 'P' && pd = ' '"; $result=mysql_query($query); $num=mysql_numrows($result); echo date('m/d/y'); echo "<font size=+2><b> Accounts payable Report</font></b></b><br />"; echo "<table cellspacing=1 cellpadding=1 border=0> <tr> <th colspan=3></th> <th>due</th> <th>days</th> <th></th> <th></th> <tr> <th>acct#</th> <th>customer</th> <th>description</th> <th>date</th> <th>late</th> <th align=right>charges</th> <th align=right>paid</th> <th align=right>due</th> <tr> <TH colspan=9>===================================================================</TH>; </tr>"; while($row = mysql_fetch_array($result)) { $totcharges = $totcharges + $row['charges']; $totdue = $totdue + $row['amtdue']; $totpaid = $totpaid + $row['paidamt']; echo "<tr>"; echo "<td>" . $row['acctno'] . "</td>"; echo "<td>" . $row['bname'] . "</td>"; echo "<td>" . $row['descr'] . "</td>"; echo "<td>" . $row['duedate'] . "</td>"; echo "<td align=right>" . $row['dayslate'] . "</td>"; echo "<td align=right>" . $row['charges'] . "</td>"; echo "<td align=right>" . $row['paidamt'] . "</td>"; echo "<td align=right>" . $row['amtdue'] . "</td>"; } echo "<tr>"; echo "<th colspan=9>=====================================================================</TH>"; echo "<tr>"; echo "<td>Gtotals</td>"; echo "<td colspan=4></td>"; echo "<td align=right>" . sprintf("%.2f",$totcharges) . "</td>"; echo "<td align=right>" . sprintf("%.2f",$totpaid) . "</td>"; echo "<td align=right>" . sprintf("%.2f",$totdue) . "</td>"; echo "</tr>"; echo "</table>"; mysql_close(); ?> Pardon my questions. Have you had much experience running PHP locally? Why is not the whole thing done in PHP? Did you already test this code elsewhere? Do you have other PHP programs that run OK? Which PHP do you have? You're going to kick yourself over this! You said: Quote I key in "localhost/invoice/apdue.php" But the link in 'invoicenav.html' goes to: Quote http://localhost/apdue.php You're missing the '/invoice/' in the link to apdue.php |
|
| 779. |
Solve : auto refresh? or page reset, jquery perhaps?? |
|
Answer» This is my first time on this site or asking QUESTIONS in any forum so excuse me if I am not addressing my issue well. I will try to explain the best I can and also THANK any of you that take time to read this. I have a theme site for a well known karaoke site, I make hundreds of themes to offer to members for their profiles and personal SONG pages. |
|
| 780. |
Solve : Parallax.js won't load all images on iPhone (iOS7)? |
|
Answer» Hey! I'm currently developing a portfolio for a course I'm TAKING. |
|
| 781. |
Solve : How do I get a URL address for My photos? |
|
Answer» I want to work for a Media company but they want me to provide a URL address to view a portfolio. I am a newbie to this type of thing and I am trying to get work. do I have to have a web site i need alot of direction here. Thank you in advance for your time. MattYou could buy private web space. Better yet, find a friend who has a web site and he can provide you with a page on the site. |
|
| 782. |
Solve : Photoshop or Illustrator?? |
|
Answer» Hello, I normally use Photoshop but its up to the user which works for them.Not a bad choice. The OP might mention what features he is missing? Some things are just novelties that create 'artistic' effects and are not the main stream of good photo and graphics skills. Here is a brief list of programs somebody thinks are cool. Best Graphic Design and Image Editing Software Judge for yourself, Here is one of the images the represents a program. And here is another... This is not a recommendation, rather the point is that now there are so many choices s available that it is hard to say just one is better or ideal. When I tell people how old my favorite is, they roll on the floor laughing. Quote from: Rob Pomeroy on July 12, 2013, 03:48:56 AM Illustrator is for vector design (lines, shapes, etc), Photoshop is for raster design (bitmaps, photos, etc.). Use the right tool for the job.Best answer. Use a tool you understand. Vector design is for fine mechanical detail, like doing a blueprint for a tall building. Great for the workers. But Photoshop would show what the building will look like to the visitors after it is finished. Most web sites use some kind of photographs for expressive presentations. |
|
| 783. |
Solve : How can I update my Web Site from my iPhone?? |
|
Answer» Yes, I would like to update my web site from my cell phone. I do not of a way to do nit, but nit is sheer overkill. I am not ready to go that far,. Not YET. It is now a very, very plain HTML site with just none PAGE. Or simply install an CMS to your website... People recommend Wordpress... This. I use WordPress on a couple of sites and there are some great mobile apps that make it easy to write/edit posts etc.It really depends on your website. Mine is a blog using Wordpress. Wordpress has apps for everyphone so you can update your site. Check them out at http://wordpress.org/mobile or via email like you asked, check out http://codex.wordpress.org/Post_to_your_blog_using_email Untangle and OpenDNS are fantastic together if you are hosting your own site. If your website is cloud hosted then you have no need for either. Plus you would spend some time trying to figure out the email paths and routing. Joomla is a fantastic CMS and there are extension you can add on for that granular editing from a phone and the email/text to blog feature. The one other thing I would say/ask, is why would you want to update form your phone!? Anything more than a hundred words would start to feel tiring on a phone or even a tablet. But thats just my opnion. setup your website using wordpress and update it using the wordpress app. Its a pain to setup if you're a n00b but will be the easiest thing for you to manage long term.Thanks to all. I will go with WordPress. |
|
| 784. |
Solve : How make search field for clickable list? |
|
Answer» I am looking for something like this: |
|
| 785. |
Solve : Having issues getting images to display.? |
|
Answer» Just starting out with HTML and I'm having an issue getting the images to display in either notepad or the html editor on the site I'm using to LEARN html. <img src="foldername/imagename.jpg alt="" width"" height""> It is missing values for alt, width, and height as well as most importantly a closing " after the image file location. So I think you would get better results with: Quote <img src="foldername/imagename.jpg" alt="ImageDescriptionHere" width"120" height"120"> As far as this: Quote Just starting out with HTML and I'm having an issue getting the images to display in either notepad or the html editor on the site I'm using to learn html. Notepad can not display images, it is just a text editor. If you want to view your webpage, I would locate it through a browser and have the browser handle the HTML to show you how it all operates. As far as HTML editor, unless it has a WYSIWYG feature or a HTML Page Viewer, it is likely bound to inability to show the page as it would display on a browser. I pretty much use a text editor and a browser for HTML development or a WYSIWYG tool like Dreamweaver. I have also taken the route of using PowerPoint to get everything laid out the way I want it and then save as HTML and post that online, as well as used a tool called MapEdit that allows you to map out x/y coordinates of an image to make embedded hyperlinks in images such as when you want to make a navigation bar using an image for the button layout and then you used MapEdit to SELECT regions of the image and assign hyperlinks to the regions so that instead of using many many tables etc, you can have source file that calls an image for the user interface, and it has hyperlink declarations that make the image interactive. I also used this MapEdit tool to make HTML games before I learned how to make Flash Games which are better. As far as text editor goes, I have been using Crimson Editor which is free and color codes your source file no matter if you are working with HTML, C, C++, Perl, etc and so your source takes on colors that make the text stand out from the functions in the source. Way better than looking at black and white for long periods of time and way easier to FIND typos in your source because a typo can stand out as a function that is black and white that should be a color, and then you realize the typo and fix it and it takes on the color assigned for that feature function. If your website you are working on was LOCATED at say C:\mywebsite\ and your home page is index.html you can enter C:\mywebsite\index.html into the URL window of your browser and your webpage will display just as it would online. |
|
| 786. |
Solve : Needs falling snow js scipt lizzy? |
|
Answer» div.footer { |
|
| 787. |
Solve : Automatic login into second site with button/link? |
|
Answer» Hello! |
|
| 788. |
Solve : Need a quick html code for a video player with repeat? |
|
Answer» I tried to design and embed a youtube into html but cant get it to repeat. I WOULD post what I have tried, but its all crap. |
|
| 789. |
Solve : Help for Website development? |
|
Answer» Hi guys, |
|
| 790. |
Solve : Help with HTML and CSS script.? |
|
Answer» Hey im makeing a WEBSITE and i have the Basic Index.html correct: |
|
| 791. |
Solve : Javascript treated as text - Don't know why? |
|
Answer» This happens in IE 11, Firefox 26.5, and SAFARI. Neither BROWSER recognizes my javascript other then the Alert command. |
|
| 792. |
Solve : Why doesn't this very simplistic function work?? |
|
Answer» This code displays the button then nothing happens when I click on it. Can someone please tell me why? Thank you in advance for your reply. |
|
| 793. |
Solve : A pattern that i can use in every site in my project? |
|
Answer» hi, i am freash MAN at comp. eng but i want to create a fan-based web site. i am learning dreamweaver from internet but there is i question i couldn't handle, hope you help. let's suppose that i've created the site and i want to make changing in bar on the top of the site that have "home page, reffrences, forum... etc" buttons. Am i going to change this bar with new bar in every single page. How can i solve that ?If you are building a site where you have a bunch of separate HTML files then yes, you will have to change the navigation bar on every page. This is one of the reasons why websites nowadays are rarely built in pure HTML and instead incorporate some SORT of scripting such as PHP/Perl/Python where the content of pages is STORED somewhere (like a file or, more commonly a database) and the script will assemble the page from a template (Written in HTML/CSS) and the stored content. If you want to build a big site you WOULD really be best to look into using a Content Management System (CMS) (Such as Drupal or Wordpress). This is a piece of software which will handle the changing of content saving a lot of time in the long run (Especially for things like navigation bars). You would then login to the CMS through your web browser and use it to edit the content, this is a lot easier than dealing with files and Dreamweaver. Building a site with just HTML files and nothing else may work fine at the start, but it gets to be a real pain when the site grows and needs more content or more advanced features, using a CMS avoids this. Quote from: tremuska on December 09, 2013, 06:45:20 PM ... i am fresh man at comp. neg but i want to create a fan-based web site. i am learning Dreamweaver from internet but there is ...What are you goals? This is the 21 st century Learning HTML now is apropos for only a handful of computer engineers. Today is time to let the computer do the hard work. If you are more into creativity, set aside what you have and start into fully automated web designs. Example: This site sis written in PHP, but looks like HTML to your browser. And it is all in a package called SMF. Look at the bottom of the page: Quote SMF 2.0.5 | SMF © 2013, Simple MachinesBy using such a package, you skip the code and GET into doing content. It will save six months or even a year of your time. Simple Machines Forum - Official Site http://www.simplemachines.org/ Of course, if learning how to code is more important that success, don't let my rash comments deter you. |
|
| 794. |
Solve : Help needed with web coding? |
|
Answer» I can't seem to get my website to fit into different monitors without it moving things around. This is urgent so any help is greatly appreciated!!! A Neo-traditional approach © MMXIV KJÆRULF PRAKSTI MY CSS: html, body { margin:0; padding:0; WIDTH:100%; height:100%; background-color:#FFF; font-family:"Helvetica Neue"; font-size:11px; text-transform:uppercase; } h1 { font-family:"Helvetica Neue"; font-size:27px; font-weight:bold; } p { text-align:center; } #note { font-size:10px; margin-top:-5px; font-style:ITALIC; } #wrapper { min-height:100%; position:relative; } #header { padding:10px; background:#FFF; text-align:center; } #button { width:100%; } #CONTENT { padding:10px; padding-bottom:50px; /* Height of the footer element */ } #image { display:block; text-align:center; margin-top:25px; } #menu, ul li { text-decoration:none; } #footer { position:absolute; bottom:0; width:100%; text-align:center; height:40px; margin-top:50px; font-size:9px; } /*Initialize*/ ul#menu, ul#menu ul.submenu { padding:0; margin-top:-10px; text-align:center; } ul#menu li, ul#menu ul.submenu li { list-style-type: none; display: inline-block; } /*LINK Appearance*/ ul#menu li a, ul#menu li ul.submenu li a { text-decoration: none; color: #000; background: #FFF; padding: 5px; display:inline-block; } /*Make the parent of sub-menu relative*/ ul#menu li { position: relative; } /*sub menu*/ ul#menu li ul.submenu { display:none; position: absolute; top: 30px; left: 0; width: 100px; } ul#menu li:hover ul.submenu { display:block; } /* Links -------------------------------------------*/ a:link { color:#000; text-decoration:underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */ } a:visited { color: #000; text-decoration:underline; } a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover EXPERIENCE as the person using a mouse. */ text-decoration:underline; } THANK YOU SO MUCH!!!Honestly, this is a guess but I think it's worth trying. Instead of using width of 100% in your CSS code for body, try a fixed width. |
|
| 795. |
Solve : Cache problems? |
|
Answer» Hello, |
|
| 796. |
Solve : CGI SCRIPT? |
|
Answer» Hello everybody, |
|
| 797. |
Solve : Nginx 2.1.2 server, permission denied when accessing index.html? |
|
Answer» Nginx web server, permission denied when accessing index.html |
|
| 798. |
Solve : Continuous loop videos? |
|
Answer» HI, sometimes I will CLICK on a website and I will SEE a short video that will play once, and then continue to play as if in a loop. How can I get that continuous loop EFFECT on my short videos? Thanks! -cinqueu8 |
|
| 799. |
Solve : Need Help with HTML to reduce the size of a custom Template for Ebay? |
|
Answer» I have limited HTML experience but have managed to design a custom template for my ebay business. I have listed an auction with it, only to discover that it displays wider than the auction page without a scroll bar along the bottom from left to right and it is only about 80% visable. I have SEARCHED and searched on how to reduce the width on it without any real good answers but I truly believe that there is a simple fix that I am OVERLOOKING if only I could find someone with a similar situation. I have attached a docX with the code and am open to suggestions. Thanks much for taking the time to review my plea for HELP! Oh you are so amazing I can make that work perfect! I knew it must be simple but because of my lack of experience I must have kept asking GOOGLE the wrong question! Thanks for the help! I truly appreciate it! No problem! |
|
| 800. |
Solve : FRONT PAGE 2000 and W3C validator?? |
|
Answer» Hello: I'm using FP2000 & Windows 8. |
|