Posts
 
Reputation
Joined
Last Seen
Ranked #810
Strength to Increase Rep
+8
Strength to Decrease Rep
-2
88% Quality Score
Upvotes Received
28
Posts with Upvotes
23
Upvoting Members
16
Downvotes Received
3
Posts with Downvotes
2
Downvoting Members
3
6 Commented Posts

256 Posted Topics

Member Avatar for samaru
Member Avatar for phphp
Member Avatar for diafol
0
284
Member Avatar for Lily_3

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 …

Member Avatar for FC Jamison
0
222
Member Avatar for Chris920

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.

Member Avatar for FC Jamison
0
347
Member Avatar for Louie_3

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 …

Member Avatar for FC Jamison
0
150
Member Avatar for rhaylee

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 …

Member Avatar for FC Jamison
0
383
Member Avatar for FC Jamison

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 …

Member Avatar for rubberman
1
6K
Member Avatar for ncaditya
Member Avatar for sleepswim

As far as I know, you can't do this using CSS alone. I could be wrong, though...

Member Avatar for drjohn
0
118
Member Avatar for Yzk
Member Avatar for NotThereAnymore

Are you wiping the drive (or partition) and doing a fresh install or are you trying to write over the old Windows installation?

Member Avatar for Ethire
0
682
Member Avatar for ndeniche

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.

Member Avatar for Ausopenxcell
0
503
Member Avatar for FC Jamison

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) …

Member Avatar for Lylla
0
178
Member Avatar for Braga_ESI

If this is a form, have you tried [html] <input type="reset" value="Reset!"> [/html]

Member Avatar for fizerahmani123
0
651
Member Avatar for prashanth18

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.

Member Avatar for leakbali
0
271
Member Avatar for ivanCeras
Member Avatar for Racoon200
Member Avatar for floatingDivs
0
163
Member Avatar for cashblogs

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 …

Member Avatar for Brian Stephens
0
256
Member Avatar for FireSBurnsmuP

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 …

Member Avatar for SaintThomas
0
161
Member Avatar for tln26

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.

Member Avatar for hits86
0
380
Member Avatar for Crisis757
Member Avatar for dodo rawash
1
171
Member Avatar for eihd

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.

Member Avatar for keshavgarawal89
0
1K
Member Avatar for plarsen111
Member Avatar for diafol
0
636
Member Avatar for tiffythom
Member Avatar for almostbob
-1
1K
Member Avatar for taffylad

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 …

Member Avatar for characteredu
2
390
Member Avatar for FC Jamison

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?

Member Avatar for ZootAllures
0
130
Member Avatar for spacepoet

You might try a program called Tigra Scroller. [url]http://www.softcomplex.com/products/tigra_scroller/demo1.html[/url]

Member Avatar for MikeWatson
0
134
Member Avatar for Vicksley

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.

Member Avatar for Tonupunuri
0
231
Member Avatar for tefflox

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 …

Member Avatar for michaeli99
0
123
Member Avatar for irfan.motiwala
Member Avatar for watkinsd

What resolution is your monitor set to? It appears to be looking normally in 1024 x 768.

Member Avatar for peter_budo
0
92
Member Avatar for cardcupper

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.

Member Avatar for MidiMagic
0
93
Member Avatar for jonow

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&eacute;sum&eacute;'; tlink[2]="http://www.frankjamison.com/resume/"; tdesc[2]="View my r&eacute;sum&eacute;"; ttype[2]="static"; tiden[2]=""; tmenu[3]='Portfolio'; tlink[3]="http://www.frankjamison.com/portfolio/"; tdesc[3]="View my portfolio"; …

Member Avatar for FC Jamison
0
583
Member Avatar for Traicey

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?

Member Avatar for Traicey
0
101
Member Avatar for daviddoria

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 …

Member Avatar for daviddoria
0
181
Member Avatar for tefflox

That's not the problem... Your links table in the sidebar is set to 400px...that is what is throwing everything off.

Member Avatar for Kaarthik
0
86
Member Avatar for kavithakesav

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'> &#160; </div> [/code]

Member Avatar for MidiMagic
0
194
Member Avatar for s080072

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 …

Member Avatar for Shanti C
0
114
Member Avatar for cavemanlawyer15

It looks good to me as well. What browser, resolution, and operating system is your client running?

Member Avatar for jhample
0
175
Member Avatar for jado

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.

Member Avatar for LanceJohnson
-2
540
Member Avatar for amandamay
Member Avatar for FC Jamison

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 …

Member Avatar for aprajita
0
543
Member Avatar for kashmir323

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]

Member Avatar for kashmir323
0
149
Member Avatar for Ries
Member Avatar for lochii

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]

Member Avatar for FC Jamison
0
203
Member Avatar for tarsem
Member Avatar for lochii

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: …

Member Avatar for lochii
0
177
Member Avatar for babouche

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.

Member Avatar for katarey
0
156
Member Avatar for Pim

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, …

Member Avatar for FC Jamison
0
96
Member Avatar for kavithakesav

Try [code] #menu.current_page { color:#FFFFFF; } [/code] or just [code] .current_page { color:#FFFFFF; } [/code]

Member Avatar for FC Jamison
0
114

The End.