- Strength to Increase Rep
- +8
- Strength to Decrease Rep
- -2
- Upvotes Received
- 28
- Posts with Upvotes
- 23
- Upvoting Members
- 16
- Downvotes Received
- 3
- Posts with Downvotes
- 2
- Downvoting Members
- 3
256 Posted Topics
| |
![]() | |
Re: I'm assuming this is an assignment in a beginning programming course. As such, I would look at this problem as a series if nested if statements. Pseudocode is kind of like writing down programming logic without worrying about syntax. So for this exercise you don't have to know how to … | |
Re: If you have a Premium subscription to LinkedIn, the most comprehensive CSS turorial I have come across is CSS Core Concepts on Lynda.com. Courses on Lynda.com are free with the Premium LinkedIn subscription. | |
Re: I won't write your code, because like others have said, iy is not our place to do your homework for you. I will, however, give you some psedocode to point you in the right direction. I believe that it is the goal of a forum such as this to provide … | |
Re: I am unclear on what specific type of input you want to take in. You say letters. Do you mean chars that are specifically A-Z and a-z? Do you mean a string of characters without spaces? Or do you want a string of characters with spaces? Each one requires a … | |
How would I write a C++ class of which only one can be created ever be instantiated in any program. I know that ClassName* objectName = new ClassName(); instantiates an object, but how would I make it so when you try to instantiate it more than once you still end … | |
Re: As far as I know, you can't do this using CSS alone. I could be wrong, though... | |
Re: Are you wiping the drive (or partition) and doing a fresh install or are you trying to write over the old Windows installation? | |
Re: I use Dreamweaver simply because I like the auto complete and color coding features of it...but I still do all of my coding line by line. | |
I am trying to learn how to write a merge sort function, but I have only gotten so far with the book I am using now: [code] template <class T> void mergeSort(vector<T>& s) { mergeHelper(s.begin(), 0, s.size()); } template <class Itr> void mergeHelper(Itr start, unsigned int low, unsigned int high) … | |
Re: If this is a form, have you tried [html] <input type="reset" value="Reset!"> [/html] | |
Re: I found this article on embedding fonts in a web page [URL="http://www.sean.co.uk/a/webdesign/embedding_fonts_in_webpages.shtm"]http://www.sean.co.uk/a/webdesign/embedding_fonts_in_webpages.shtm[/URL] It only works in IE though. | |
Re: Can we see your code, please? | |
Re: [code]<link href="../style.css" rel="stylesheet" type="text/css" />[/code] | |
Re: Click on sites/manage sites/edit and click through until you get to the ftp page for the site you want. Click the SAVE checkbox next to "What is your FTP password?" I've never had a problem with it not connecting to my site. If it is not connecting, recheck your ftp … | |
Re: Let's see if I can explain this right... A partition is simply a way of dividing the space on your hard drive to be used for different purposes. For instance, my hard drive is 160GB and I have formatted 2 partitions. The partitions are read as different drives (C and … | |
Re: No...and no. Your for loop should be formatted similar to [code] for(int i = 0; i < count ; i++) { average += grade[i]; } [/code] () and {} do not do the same thing. There are many other problems with this code as well. | |
Re: Here is the definition of algorithm... [url]http://en.wikipedia.org/wiki/Algorithm[/url] | |
Re: You could also try absolute positioning of the menu using CSS. Theoretically, items positioned with CSS are stacked on top of items that are not positioned with CSS. | |
Re: You would need to change your coding from paragraphs to nested divs. ![]() | |
Re: Javascript can only size or resize a window that has been opened with javascript. | |
Re: If that doesn't work, go to start->run and type in msconfig press enter click on the startup tab and post the file names listed under commands here. I'm specifically looking for winstall.exe ibm000001.exe spysheriff.exe If you have any of these, go to [url]http://www.xoftspy.com/[/url] and download their spy removal tool. If … | |
I accidentally added the following line to my SQL database twice: [CODE]INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_birthdays_ahead', '7');[/CODE] How do I remove one of them? ![]() | |
Re: You might try a program called Tigra Scroller. [url]http://www.softcomplex.com/products/tigra_scroller/demo1.html[/url] | |
Re: I use javascript for this. I have a menu.js file that wil update my menu links sitewide. I do the same for my footer as well. | |
Re: To my knowledge, there is no valid way to do this using only html and css. Try using the following script, where paragraphID is the id tag name of the paragraph. (i.e. [inlinecode] <p id="paragraphID"> [/inlinecode] [code] window.onload = initPage; window.onresize = initPage; function initPage() { // Get paragraph height … | |
Re: What resolution is your monitor set to? It appears to be looking normally in 1024 x 768. | |
Re: Here are some sites I found... [URL="http://www.lulu.com/content/617463"]http://www.lulu.com/content/617463[/URL] [URL="http://www.thesitewizard.com/faqs/membership-password-protected-site.shtml"]http://www.thesitewizard.com/faqs/membership-password-protected-site.shtml[/URL] [URL="http://www.wildapricot.com/membership-subscription-website.aspx"]http://www.wildapricot.com/membership-subscription-website.aspx[/URL] But the gist of the info is that you will need a content management software package. | |
Re: I included my dropdown menu with the following javascript: [CODE] <div id="menubar"> <div id="menu"><script type="text/javascript" src="resources/javascripts/menu.js"></script></div> </div> [/CODE] then the menu.js file was [CODE] menu(); /* Begin Menu Items */ tmenu[1]='Home'; tlink[1]="http://www.frankjamison.com"; tdesc[1]="Return to my homepage"; ttype[1]="static"; tiden[1]=""; tmenu[2]='Résumé'; tlink[2]="http://www.frankjamison.com/resume/"; tdesc[2]="View my résumé"; ttype[2]="static"; tiden[2]=""; tmenu[3]='Portfolio'; tlink[3]="http://www.frankjamison.com/portfolio/"; tdesc[3]="View my portfolio"; … | |
Re: I don't believe that's possible using straight html and css. I could be wrong, though. Are you sure you mean when you [COLOR="Red"]click[/COLOR] on the hyperlink image and not when you [COLOR="Red"]roll over[/COLOR] the image? | |
Re: So should the code look something like this? [code] <html> <head> <title>EngineeringNotes.net</title> <link href="style.css" rel="stylesheet" type="text/css" media="screen" /> </head> <body> <!--#include file="header.html" --> <div class="page"><!-- start page --> <!--#include file="sidebar.html" --> <div class="content"><!-- start content --> <h2>About this Site</h2> <p> This site is inteded to provide a "crash course" in … | |
Re: That's not the problem... Your links table in the sidebar is set to 400px...that is what is throwing everything off. | |
Re: You could try something like this: CSS [code] #button1 { width: 50px; height : 25px; overflow : hidden; background-image: url('/images/image.jpg'); } #button1:hover { background-image: url('/images/imageon.jpg'); } [/code] HTML [code] <div id='button1'>   </div> [/code] | |
Re: The noframes element displays text for browsers that do not handle frames. The noframes element goes inside the frameset element. If a browser handles frames, it will not display the text in the noframes element. Important: If you add a <noframes> tag to a frameset, you will have to enclose … | |
Re: It looks good to me as well. What browser, resolution, and operating system is your client running? | |
Re: Have you tried reinstalling the old version? If you can't do that...the only other way I know of its to dig it out of the registry. The problem with that is that if you do something wrong...you system could crash completely. | |
Re: I am not seeing a problem at all in IE7. | |
This tutorial will explain how to code a perfectly cross-browser compatible, single-level drop-down menu for your website. The first thing you are going to need is a little bit of JavaScript courtesy of Suckerfish. This should be placed in a file called menu.js and saved in the same directory as … | |
Re: If you are simply adding your own content, you could try a scrollable div. [code] <div style="width:300px; height:100px; overflow:auto"> <p>Test</p> <p>Test</p> <p>Test</p> <p>Test</p> <p>Test</p> <p>Test</p> <p>Test</p> <p>Test</p> </div> [/code] | |
Re: I don't believe that is possible. | |
Re: To center an image (or other block object) you would use something like: [code] .centered { display: block; margin-left: auto; margin-right: auto } [/code] [code] <IMG class="centered" src="..." alt="..." /> [/code] | |
Re: Try this: [code] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <HEAD> <TITLE>| ::Gears Of War :: | </TITLE> <style> body{ background-color:black}; text-align:center; } .container{ width:660px; height:100px; margin-left: auto; margin-right:auto; border:1px solid #AD9482; background-position: center; text-align: center; margin-top: 10px; margin-right: 10px; margin-bottom: 10px; margin-left: 10px; padding-top: 10px; padding-right: … | |
Re: ugh! Do you have this uploaded to a site so we can see the css and images as well? It might even be better it you zipped the files and uploaded them here. | |
Re: The difference is that an ID references a unique element on the page...i.e. there is only one element on the whole page with the ID. A class can be used to name several different elements on the page. In other words, you can have one div with a specific ID, … | |
Re: Try [code] #menu.current_page { color:#FFFFFF; } [/code] or just [code] .current_page { color:#FFFFFF; } [/code] |
The End.