Explore topic-wise InterviewSolutions in .

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.

851.

Solve : Need to know how to add a news feed?

Answer»

loudwire.com has a NEWS feed. That news feed is on many other sites. I would like that on my site. How do I do that PLEASE?
GOING to NEED more information, where is this newsfeed on loudwire.com?If you want help, please GIVE us more info

852.

Solve : Help needed with a complete project?

Answer» HELLO,

Please i will like the assistance on a complete project. To build a solution for me.

It will involve a database and a website to show updated dashboard of information
that will be entered by users on same network.

Please any volunteer should let me know.

Thanks.
We are not here to do work for you!  If you need it done, find a software developer and pay them to do it...Camerongray, i know we are not here to do work for others that is why i made it known as
a volunteer. If you think you not ready for this just allow others who may be willing to do
express themselves. There is a massive difference between VOLUNTEERING to help someone and attempting to get free labour.  You will not get anyone here to do this for free, or anywhere else for that matter.

Noone in their right mind will do a project like this (Which I would roughly value at $500 at the cheaper end) for free.Okay, let's not argue about this. If somebody wants to volunteer his or her time, that's fine. If not, that's also fine.Lots of free help is available on the Internet. It just takes some time and effort to find it.Let me assume that he is making this for his club and it is a volunteer project. First thing he will do is consult with he peers to see what the want. He may find that some are already FAMILIAR with a cocktail network. If so, that would be the foundation for a web site. Such services already have in place the tools needed for a group project.
Example: Using this PHRASE:
Use social media for your club project
many  articles were found that look interesting.

How to use social media effectively at your club


Use The Right Social Media For Your Crowdsourcing  Projects

How To Use Social Media To Make Sales - Forbes

Why Not Use Social Media on Your Project Teams?

Free advice. 



853.

Solve : Image uploading website theme?

Answer»

Hello, I am an intermediate web designer who was looking to create a TYPE of a website which would allow users to upload jpegs and then rate them on a popularity of 1 to 10. I was wondering if anyone could recommend a script of sorts that would accomplish this. Obviously there would have to be some type of filtering for unwanted photos to be posted as well. The only other thing that I wanted to do was incorporate a different type of rating system too, instead of having a user hover over a 1 through 10 of bullet buttons maybe it could be miniature icons that pertain to the theme of my site. I am sorry if my DESCRIPTION is cryptic it i just that I WANT to keep it under wraps until it is finished.

*The need to register an account is not necessary either* I FIND most PEOPLE just browsing the net looking to kill time cannot be bothered with it.

854.

Solve : asdfghjkl?

Answer» SORRY jackaWhat are you doing? QUOTE from: Allan on JANUARY 26, 2015, 10:06:53 AM
What are you doing?
Is he stoned, do you think?
Um, Yeah about this... One of my good FRIEND thought this would be funny. How to i delete a POST?
855.

Solve : Contact form?

Answer»

Hi,
I have a contact form, it is a script from a tutorial of youtube, but I d'ont UNDERSTAND it doesn't work,
I haven't receive the E mail message ,  I wish someone can help me!

index.php


 

Name:
E-Mail:
 
 
Message:
Anti spam:9+1=
 
 
 
 

 

guide.php

 $nom = $_POST['nom'];
 $email = $_POST['email'];
 $message = $_POST['message'];
 $secu = $_POST['secu'];
 $to = "[email protected]";
 $sujet = "Client Message";
 $info = "un client a soumis un message.\n\nNom: $nom\n\nEmail: $email\n\nMessage: $message\n\nVeuillez le répondre";

 if ($secu=="10") {
 mail("$to, $sujet, $nom, $email, $info");
 header("Location:index.php?s=1");
 }
 else {
 header("Location:index.php?s=2");
 }
 ?>

the headrer is OK, so I d'idn't put here, only the problem is I have no E mail message

You are passing a string into the mail() function RATHER than the individual arguments:
Code: [Select]mail("$to, $sujet, $nom, $email, $info");should be:
Code: [Select]mail($to, $sujet, $nom, $email, $info);(Notice the lack of quotes)

That said, don't just copy code samples from YouTube or anywhere else for that matter, read through them and make sure you understand what every LINE does.Also to mention when sharing code here, be sure to hide confidential info such as actual e-mail address, as for if its detected by a spam source you could all of the a sudden be flooded with spam. Its best to alter usernames, passwords, and e-mail addresses from the original to hide the true info vs sharing with the entire world.  I have modified it:
mail($to, $sujet, $nom, $email, $info);
but it's still not OK
is it a problem of sendmail ?
I d'ont KNOW very well sendmail.
856.

Solve : index.htm and index.html both on root directory of a website?

Answer»

I am using Windows 7 and Dreamweaver CS5 to manage a WEBSITE.  Somehow, I've GOTTEN an "index.htm" and "index.html" on the root directory of the site (it was my own fault!).  I think that there are people with my site in their Favorites list with the ".htm" and some with the ".html" file being called. 

My question: is there any way that I can have one of these (say ".html") immediately and transparently directing the user to the other file (say, to the ".htm")?  I don't want these two index files with these different extensions on my root folder so I would have to update them identically whenever there is a change.  Any suggestions would be gratefully accepted.

Thanks very much!Download the .HTM file.
Then remove it from the site.
The bookmarks are to the root, not the file.
On most sires the root is public_html and the browser will GET one of
index.htm
index.html
index.php
Your site company can show you  a tutorial.
Or this might help you:
http://webdesign.about.com/od/beginningtutorials/f/index_html.htm
You might want to use the .HTM file as a the "Under Maintenance" message file. Upload it when you have to do work on the site and remove it when done.  Thank you, Geek-9pm!  That answer (and the link you suggested) look very helpful.  I'll do what you suggest.If the pages are identical you'll want to resolve to one version of the page. Google can penalize you for duplicate content. Provided you're on an apache server you can do a 301 redirect in the .htaccess file. This would resolve all .htm pages to .html or vice versa depending on your needs.

RewriteEngine on
RewriteBase /
RewriteRule ^(.*)\.htm$ $1.html [R=301]On Godaddy I have used URL Forwarding as WELL which allows 2 paths to resolve to a single path, so you can have it redirect the url path ending in htm to html and no matter which of the 2 paths are used they both point to the single html page or htm page that you decide to keep as the single page to keep, removing the other.

Who is your web HOST and  domain that you registered with?

I have heard that some internet security software flags redirection though in which a user has to agree that they want to be redirected though or it blocks the users from getting there.

My suggestion would be to keep both htm and html and state that the one is the old site and have a link for them to click to get to the new site. I'd also specify that they should update their shortcut or bookmark to the new site page.

857.

Solve : Dreamweaver spry menu bar?

Answer»

Hi,
I want to create a Dreamweaver SPRY menu BAR horizontal,
I have 2 problems to resolve:
1. how to make de distance between each menu, because they are too closed.
2.my spry menu bar is Under in my web site, when I want to open it, the menu is openned towards Under way, but I want it opens towards the top,
do someone can help me ?
thanks a lotIt has been a long time I have not used Dreamweaver.
There are good TUTORIALS available.
Here is one:
https://www.youtube.com/watch?v=4f1Gy84wPEY
Normally menus open either down to to the right. Users have different screnn layouts, so working from the BOTTOM up is hard to do. The user screen size MIGHT be too small.
Does that help?many tutorials concerning the spry menu, but I didn't find one can do from the bottom towards the top.

858.

Solve : wordpress maleware removal??

Answer»

Hi Everyone,

Few of my sites were hacked they were all running wordpress. The hosting company emailed me with a list of files that were injected with the malicous code includes the following :


   

      
../wp-includes/images/crystal/plugins.php: JCDEF.PHP.CMDSHELL-01.UNOFFICIAL
../wp-includes/images/crystal/locale.php: SiteLock-PHP-SHELL-md5-djx.UNOFFICIAL
../wp-includes/images/wlw/options.pl: {HEX}PHP.C99-7.UNOFFICIAL
../wp-includes/images/wlw/dotclear.php: {HEX}php.cmdshell.unclassed.344.UNOFFICIAL

../wp-admin/js/word-count.min_noversion.php: JCDEF.Obfus.CreateFunc.BackDoorEval-21.UNOFFICIAL
../wp-admin/images/bubble_bg-2x_ver1.php: JCDEF.Obfus.CreateFunc.BackDoorEval-21.UNOFFICIAL
../wp-admin/css/ie-rtl_noversion.php: JCDEF.Obfus.CreateFunc.BackDoorEval-21.UNOFFICIAL
../wp-admin/css/colors/blue/colors.min_infoold.php: JCDEF.Obfus.CreateFunc.BackDoorEval-21.UNOFFICIAL
../wp-admin/css/colors/midnight/colors_indesit.php: JCDEF.Obfus.CreateFunc.BackDoorEval-21.UNOFFICIAL
../wp-admin/css/colors/ocean/colors_bck_old.php: JCDEF.Obfus.CreateFunc.BackDoorEval-21.UNOFFICIAL
../wp-admin/css/colors/sunrise/colors_backup.php: JCDEF.Obfus.CreateFunc.BackDoorEval-21.UNOFFICIAL
../wp-admin/network/update-core_noversion.php: JCDEF.Obfus.CreateFunc.BackDoorEval-21.UNOFFICIAL
../wp-admin/maint/repair_indesit.php: JCDEF.Obfus.CreateFunc.BackDoorEval-21.UNOFFICIAL
../wp-admin/comment_new.php: JCDEF.Obfus.CreateFunc.BackDoorEval-21.UNOFFICIAL
../wp-content/plugins/jetpack/_inc/images/module-clouds-2x_old.php: JCDEF.Obfus.CreateFunc.BackDoorEval-25.UNOFFICIAL
../wp-content/plugins/jetpack/modules/custom-post-types/testimonial_noversion.php: JCDEF.Obfus.CreateFunc.BackDoorEval-25.UNOFFICIAL
../wp-content/plugins/jetpack/modules/tiled-gallery/tiled-gallery_new.php: JCDEF.Obfus.CreateFunc.BackDoorEval-25.UNOFFICIAL
../wp-content/plugins/jetpack/modules/widgets/gallery/a0042f93_infoold.php: JCDEF.Obfus.CreateFunc.BackDoorEval-25.UNOFFICIAL
../wp-content/plugins/revslider/backup/captions-original_ver1.php: JCDEF.Obfus.CreateFunc.BackDoorEval-25.UNOFFICIAL
../wp-content/plugins/revslider/images/dummy/index_ver1.php: JCDEF.Obfus.CreateFunc.BackDoorEval-25.UNOFFICIAL
../wp-content/plugins/w3-total-cache/inc/functions/extract_noversion.php: JCDEF.Obfus.CreateFunc.BackDoorEval-25.UNOFFICIAL
../wp-content/plugins/w3-total-cache/inc/options/enterprise/dbcluster-config_old.php: JCDEF.Obfus.CreateFunc.BackDoorEval-25.UNOFFICIAL
../wp-content/plugins/w3-total-cache/lib/Minify/Minify/Cache/Wincache_indesit.php: JCDEF.Obfus.CreateFunc.BackDoorEval-25.UNOFFICIAL
../wp-content/plugins/w3-total-cache/changelog_backup.php: JCDEF.Obfus.CreateFunc.BackDoorEval-25.UNOFFICIAL
../wp-content/themes/twentyeleven/functions.php: SiteLock-PHP-INJECTOR-1-et.UNOFFICIAL
../wp-content/themes/twentyeleven/images/comment-arrow-rtl_old.php: JCDEF.Obfus.CreateFunc.BackDoorEval-18.UNOFFICIAL
../wp-content/themes/twentytwelve/functions.php: SiteLock-PHP-INJECTOR-1-et.UNOFFICIAL
../wp-content/themes/twentytwelve/languages/twentytwelve_prevv1.php: JCDEF.Obfus.CreateFunc.BackDoorEval-18.UNOFFICIAL
../wp-content/themes/deliciousmagazine/deliciousmagazine/functions/js/shortcode-generator/js/tab-control_prevv1.php: JCDEF.Obfus.CreateFunc.BackDoorEval-18.UNOFFICIAL
../wp-content/themes/deliciousmagazine/deliciousmagazine/functions/js/shortcode-generator/shortcodes/tweetmeme_new.php: JCDEF.Obfus.CreateFunc.BackDoorEval-18.UNOFFICIAL
../wp-content/themes/deliciousmagazine/deliciousmagazine/template-imagegallery_bck_old.php: JCDEF.Obfus.CreateFunc.BackDoorEval-18.UNOFFICIAL
../wp-content/themes/deliciousmagazine/functions.php: SiteLock-PHP-BACKDOOR-GENERIC-md5-chp.UNOFFICIAL
../wp-content/themes/twentythirteen/languages/twentythirteen_ver1.php: JCDEF.Obfus.CreateFunc.BackDoorEval-18.UNOFFICIAL
../wp-content/themes/twentythirteen/functions.php: SiteLock-PHP-INJECTOR-1-et.UNOFFICIAL
../wp-content/themes/twentythirteen/content-image_prevv1.php: JCDEF.Obfus.CreateFunc.BackDoorEval-18.UNOFFICIAL
../wp-content/themes/twentyfourteen/functions.php: SiteLock-PHP-INJECTOR-1-et.UNOFFICIAL
../wp-content/themes/wp-clear/admin/jscolor/jscolor_bck_old.php: JCDEF.Obfus.CreateFunc.BackDoorEval-18.UNOFFICIAL
../wp-content/themes/wp-clear/styles/default_prevv1.php: JCDEF.Obfus.CreateFunc.BackDoorEval-18.UNOFFICIAL
../wp-content/themes/wp-clear/functions.php: SiteLock-PHP-INJECTOR-1-et.UNOFFICIAL
../wp-content/themes/index_backup.php: JCDEF.Obfus.CreateFunc.BackDoorEval-18.UNOFFICIAL
../wp-includes/SimplePie/HTTP/Parser_infoold.php: SiteLock-PHP-OBFUS_EVAL_REQUEST.UNOFFICIAL
../wp-includes/SimplePie/Parse/Date_new.php: SiteLock-PHP-OBFUS_EVAL_REQUEST.UNOFFICIAL
../wp-includes/SimplePie/Cache/DB_prevv1.php: SiteLock-PHP-OBFUS_EVAL_REQUEST.UNOFFICIAL
../wp-includes/SimplePie/Category_noversion.php: SiteLock-PHP-OBFUS_EVAL_REQUEST.UNOFFICIAL
../wp-includes/js/tinymce/utils/editable_selects_indesit.php: SiteLock-PHP-OBFUS_EVAL_REQUEST.UNOFFICIAL
../wp-includes/js/tinymce/plugins/hr/plugin.min_infoold.php: SiteLock-PHP-OBFUS_EVAL_REQUEST.UNOFFICIAL
../wp-includes/js/tinymce/themes/modern/theme.min_old.php: SiteLock-PHP-OBFUS_EVAL_REQUEST.UNOFFICIAL
../wp-includes/js/tinymce/skins/lightgray/img/anchor_old.php: SiteLock-PHP-OBFUS_EVAL_REQUEST.UNOFFICIAL
../wp-includes/images/media/spreadsheet_ver1.php: SiteLock-PHP-OBFUS_EVAL_REQUEST.UNOFFICIAL
../wp-includes/images/wlw/wp-icon_ver1.php: SiteLock-PHP-OBFUS_EVAL_REQUEST.UNOFFICIAL

I have tried downloading all the files and running a antimaleware bytes and windows defender scans and didnt find anything. I have also looked inside the files source code and im not sure if I should delete the entire file or only the malcious code if so how can figure out what lines were added ?

Any help would be much appritiated .



Thanks.
That looks pretty nasty, you could just delete all those files (antivirus won't PICK them up) but you'd risk leaving some behind.  Personally I would backup the site content and rebuild them on new Wordpress installs, this time making sure you KEEP the Wordpress installs up to date (out of date Wordpress is notorious for these ISSUES) and then ensure that you set up all access permissions.etc properly so this cannot happen again.Thank you for your help I will try deleting all the listed files from the server I made backup just in case . I did notice there were also multiple .htaccess which I THINK they are related to the security of the site . do you know if there should be only a single .htaccess file within a wordpress installation and also what SCRIPT it should be running ?  I will included couple of .htaccess scripts cause I have feeling there is something not right .

.htaccess :

Code: [Select][right]RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress[/right]

another .htaccess
Code: [Select]Options +ExecCGI
AddHandler cgi-script cgi pl


Thank you much appritiacted






[/code]Just do what camerongray said.
Backup all content.
Destroy the site.
Install new version of Word press.
Rebuild the site.
That is the best choice. 


ok  I have deleted all the files and sites are back up running again. Honestly I dont have the time right now to redo the website Im going to change all the passwords and update to the latest wordpress realse and hopefully that wont happen again anytime soon. Thank you everyone for you help.

859.

Solve : Space under image in table?

Answer»

I made a table with 7 rows and 1 rowspan that has an image, but the image has a line under it that I don't want.
Here's a link to it

https://www.dropbox.com/s/trdtzk2mnnqzc31/oef3.zip?dl=0

thanks
Can put the html file CONTAINING the table on a web server and post a link to a web page? I was going to take a look at your table but I don't want to SETUP a Dropbox account just to do that.  This might be true for other forum members too. http://weirdtable.net16.net/default.html

just learned how to upload a website Quote from: verystrengt on March 07, 2015, 05:55:10 PM

http://weirdtable.net16.net/default.html

just learned how to upload a website
Your link redirects to http://error404.000webhost.com/?   The reason probably is that you need to register a domain name and get it linked to your web server account before anyone can view the web pages you've uploaded.  I recommend godaddy.com for registering a domain name. Quote from: soybean on March 08, 2015, 09:58:48 AM
Your link redirects to http://error404.000webhost.com/?   The reason probably is that you need to register a domain name and get it linked to your web server account before anyone can view the web pages you've uploaded.  I recommend godaddy.com for registering a domain name.

No, my mistake, I changed the directory
the url now  is: http://weirdtable.net16.net/NetBeansProjects/Week3/public_html/oef3.htmlI saw this element in your code:
Code: [Select] }
            .lotr{
                height: 200px;
                width: 133px;

Try changing the height value to something greater than 200px.  Alternatively, test what would happen if you simply eliminate the height specification, or set it to 100% if that will work. Quote from: soybean on March 09, 2015, 08:21:16 AM
I saw this element in your code:
Code: [Select] }
            .lotr{
                height: 200px;
                width: 133px;

Try changing the height value to something greater than 200px.  Alternatively, test what would happen if you simply eliminate the height specification, or set it to 100% if that will work.

The picture became bigger, but nothing else changed :/I would just go test and test....

You can see that you the border is shown because your image is going over the top tableborder.
Go test with some padding:0; for your td's, try MARGIN: 3px the image.

Your image:

should be:
Quote from: frederiek on March 10, 2015, 04:35:51 AM
Your image:
<img src="pics/the-lord-of-the-rings.jpg" alt="lotr imagee" class="lotr"  >
should be:
<img src="pics/the-lord-of-the-rings.jpg" alt="lotr imagee" class="lotr"  />
The two lines of code you posted are exactly the same. Quote from: frederiek on March 10, 2015, 04:35:51 AM
I would just go test and test....

You can see that you the border is shown because your image is going over the top tableborder.
Go test with some padding:0; for your td's, try margin: 3px the image.

Your image:
<img src="pics/the-lord-of-the-rings.jpg" alt="lotr imagee" class="lotr"  >
should be:
<img src="pics/the-lord-of-the-rings.jpg" alt="lotr imagee" class="lotr"  />
an image END tag (/>) is no longer necessary in HTML5
margin:3px; moved the picture a little bit out of the table
860.

Solve : What do I have to learn to create a CMS site??

Answer»

I'm a junior programmer with following programming skills:
C#, ASP.NET, JavaScript, CSS, jQuery, HTML, MS SQL Server.
I am making the question because I don't know what the people use to make a CMS web site.
I'm just curious to know what is the procedure to create a CMS.
I can create windows and web based applications, but never till now had to do something with CMS.
Thank you in advance for your reply.
Cheers.It WOULD help if you explain the acronyms.
CMS:
Charlotte Mecklenburg Schools
Centers in  Medicaid Services
content management system
Of the later,  joomla is widely used.
http://www.joomla.org/
Is that what you want? Quote from: Geek-9pm on November 05, 2014, 06:56:35 PM

It would help if you explain the acronyms.
CMS:
Charlotte Mecklenburg Schools
Centers in  Medicaid Services
content management system
Of the later,  joomla is widely used.
http://www.joomla.org/
Is that what you want?

Yes, this is what I'm looking for:
content management system

Cheers.Well it depends if you are wanting to make a CMS, or make a website using a CMS.

If you are making a CMS, this will be just like building a web application (Using PYTHON, PHP, ASP.NET.etc) where you store content of the website in a database and then have a web interface to manage this content. You will then have another part of the application that renders pages using the data in the database.

If you are just looking to build a site using a CMS, you would just need to pick a piece of CMS software to use such as Drupal, Wordpress, Joomla.etc.  You would then just install this on your webserver following the provided instructions.  You would then use the CMS to build the website.  You would need either a premade template for your CMS or build your own in order to style the website.

Quote from: Geek-9pm on November 05, 2014, 06:56:35 PM
It would help if you explain the acronyms.
The acronym would be totally clear for anyone who understands the topic area... Quote from: camerongray on November 06, 2014, 03:01:57 AM
If you are making a CMS, this will be just like building a web application (Using Python, PHP, ASP.NET.etc) where you store content of the website in a database and then have a web interface to manage this content. You will then have another part of the application that renders pages using the data in the database.

Let me be clear if I understood you:
I can create a site using HTML, CSS, JavaScript and jQuery.
In one of the spaces at the site where I want to change the content for example inside tags, I can make somehow to fill that from a Database or other kind of files.
Did I got the point or I'm wrong.

Thank you in advance for you reply.
Cheers.Yeah, that's how a CMS works.  For the premade CMSs you would create a "template" using HTML, CSS, Javascript.etc and then put in placeholders where you want content to go, these placeholders vary depending on what CMS you use.  I build most STUFF in Drupal and I know that in that you use bits of PHP code which will echo out content wherever you want it.

Once you have built a template you would load it into the CMS and start editing your content.  They have a pretty steep learning CURVE but once you grasp it, they are fairly easy to work with.Thank you mate, I got the point now.
One more question:
Is it harder to make CMS as RSS Feed?
Cheers. Quote from: dr_iton on November 06, 2014, 04:46:43 PM
Is it harder to make CMS as RSS Feed?
Not really, most good CMSs have some sort of module/plugin system so as long as there is an RSS module available for it (if it doesn't come built in) you will be able to just install the module and use it.There a three basic content management systems: WordPress, Joomla and Drupal. They are all based on OOP. Making website step-by-step with starting with website plan you will save you a lot of time afterwards. This guides may help you to create your website: http://www.webbuildersguide.com/free-website-builders/. Though there are a lot of other guides and tips to built your CMS.
861.

Solve : Making text bold?

Answer»

Thanks for the link shiverbob

I have saved it!TRY text here .  It always works for me Hello SamZelda1

I THINK I have done it now:

http://www.bayingwolf.com/prices.asp

They are the two BOLD headers in the table.

Thanks for your REPLY.

862.

Solve : onFocus??

Answer»

Hello

If I have Code: [Select]<p><span>Name</span><input class="CONTACT" type="text" name="your_name" /></p> in an email Web contact page in an aspx file (ASP.NET) and this:

Code: [Select] Protected Sub Page_Load(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles Me.Load

        Dim yourname As String = Request.Form("your_name")
        Dim Name As String = "yourname"

       [b][color=red]yourname.Focus()[/color][/b]
   End Sub
in my aspx.vb file - I am trying to set focus in the user name FIELD - I get an error telling me that 'Focus' is not a member of String.

How should I be coding that then?

Thanks!

[attachment deleted by admin to conserve space]Request.Form returns a Form POST variable. You cannot set the focus because the form has already been submitted.

If you want to change the focus, you'll NEED to handle the onsubmit method with JavaScript within client-side code, or have the server-side validate and then re-display the form if an error occurs, but change, for example, labels to be red or show an error next to the field INDICATING the error.

Thanks for your reply.

This was not to highlight errors. This was just when a site visitor goes to the contact form page, the CURSOR is already flashing inside the the user_name field. So I thought it would be something like:

Code: [Select] Protected Sub Page_Load(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles Me.Load

        'your_name.Focus()

        End Sub

where your_name is the name of the input field:

Code: [Select] <p><span>Name</span><input class="contact" type="text" name="your_name" /></p>

863.

Solve : javascript error on wordpress?

Answer»

Hi,

Im having trouble with a slider animation on my homepage after updating wordpress. I have test the site USING firebug and it found two java errors.

I have TAKEN the file onto jslint to FIND more information what could be causing the error however i cannot figure out what is causing the script to break down.

link to the FULL version of the file : http://pastebin.com/PYDEByXE

Please let me know if I am missing any information

ThanksYou can't expect someone to trawl through all that code to find the error.  You will need to at the very minimum post the full error that is occurring or even better provide a link to the live site.Thanks Camerongray for your reply.

the error im getting with firebug using firefox :
Code: [Select]TypeError: e.Tween is undefined
blocked...r=1.1.6 (line 11, col 19573)

TypeError: window.Core is undefined
test.ya...nik.com (line 422, col 4)
error LIST from jslint :

Code: [Select]Missing 'use strict' statement.

        str = "";

line 14 character 9
Expected 'for' at column 5, not column 9.

        for (j = 0; j <= 3; j++) str += hex_chr.charAt(e >> j * 8 + 4 & 15) + hex_chr.charAt(e >> j * 8 & 15);

line 14 character 14
'j' was used before it was defined.

        for (j = 0; j <= 3; j++) str += hex_chr.charAt(e >> j * 8 + 4 & 15) + hex_chr.charAt(e >> j * 8 & 15);

line 14 character 21
'j' was used before it was defined.

        for (j = 0; j <= 3; j++) str += hex_chr.charAt(e >> j * 8 + 4 & 15) + hex_chr.charAt(e >> j * 8 & 15);

line 14 character 29
'j' was used before it was defined.

        for (j = 0; j <= 3; j++) str += hex_chr.charAt(e >> j * 8 + 4 & 15) + hex_chr.charAt(e >> j * 8 & 15);

line 14 character 30
Unexpected '++'.

        for (j = 0; j <= 3; j++) str += hex_chr.charAt(e >> j * 8 + 4 & 15) + hex_chr.charAt(e >> j * 8 & 15);

line 14 character 34
Expected '{' and instead saw 'str'.

        for (j = 0; j <= 3; j++) str += hex_chr.charAt(e >> j * 8 + 4 & 15) + hex_chr.charAt(e >> j * 8 & 15);

line 14 character 34
Stopping. (0% scanned).

global
    rhex

line 12
rhex
parameter
    e


link to the live site : http://test.yankrupnik.com

The slider thats not working is right at the top of the homepage there are 3 images.

Thanks again

864.

Solve : help with SPF record with multiple records?

Answer»

I need to create an SPF and TXT record with MULTIPLE entries, and some have a -all and ~all (soft, hard fail) How to I combine these into one record. at the moment it's :

"v=spf1 INCLUDE:spf.messageexchange.com a:smtp-out.enta.net -all include:_spf.createsend.com ~all"

But this is generating failures. Can anyone help with the syntax

865.

Solve : How to increase post title Font Size?

Answer»

Hello house this is my first time of posting on this forum, but i hope i would have a lasting solution to my problem here.
I want my post tile to be large and bold but have not been able to find a way around it using Html on Word press, what can i do ?

body {
   BACKGROUND:URL(images/top.jpg) 50% top repeat-x;
   color:#3d3e3d;
   font-family: 'Arial', sans-serif;
   font-size:17px;
}
a {
   color:#1d413b;
}
a:hover {
   color:#99cc99;
}
h1, h2, h3, H4, h5, h6, a.post_ttl {
   color:#1d413b;
   text-decoration:none;
}

a.post_ttl {
   font-size:17px;
   font-family: 'Arial', sans-serif;Welcome to CH . I deleted your other post - no need to ask the same question more than once. Hang around and I'm sure you'll get some helpful responses I have not used word press but I have used css.
Does a.post_ttl refer to your title?
If so try adding a line so it should read something like:
Code: [Select]a.post_ttl {
   font-size:34px;
   font-family: 'Arial', sans-serif;
   font-weight: bold;
}
But reading through word press forums it seems the class names change with each theme.
Is this your main style sheet that you posted?
What theme are you using?
TheWaffle thanks for REPLYING my message. I guess post_ttl refers to the post title, I would give it a try now. Would let you know if there are any changes. Once again thanks.Yes i tried using this

a.post_ttl {
   font-size:34px;
   font-family: 'Arial', sans-serif;
   font-weight: bold;
}

I noticed an increase in font size of the post title, what other css code might i add to change its color PREFERABLY to something Green.WordPress uses both PHP and CSS. Normally one will pick a template that is close to what is needed and then make adjustments  to the template. Some templates allow adjustments with an on-line interface.
If you give the name and source of the template and the version of WordPress, others here could run it on an emulator and see what it does.

One of many tutorials.
How to Change Font Size in WordPress.
Please read above if you are new to WordPress.

866.

Solve : Tumblr tag page?

Answer»

Hello everyone  ^^ Nice to meet you all <3

I'd like to use this page for TUMBLR:
Original post
Preview
Code

What I want is to make the width of the navigation buttons ( '✭'  '1 2 3 ✿'  'A B C D'  etc ) more wider and make the pages slide when I hover/click them (without needing Javascript).
Or even if it's with Javascript I don't really care as long as I make those buttons wider.

I know how to make the box wider but it won't matter because it will look like this:


I hope you can help me (UPDATE!!!

Ok, I somehow (please don't ask) managed to to what I wanted.
I put transparent pictures on those navigation buttons. The current problem is that those pictures aren't positioned exactly right:


If you GO to this link: http://shiwa-hime.tumblr.com/shop-list , right click and click 'Inspect element' , search for: http://static.tumblr.com/vifw4dm/b89nnfh5c/hedvig.png and you will see those transparent pictures.

867.

Solve : php probs?

Answer»

So I am working on a php website. (version 5.4)
I am having issues, as I am a bit rusty and haven't done this for about 2 years.
My first issue is I am getting a parse error.
CODE: [Select]Parse error: SYNTAX error, unexpected 'functionName' (T_STRING) in filename.php on line 1(The error is not verbatim)
I don't UNDERSTAND why I a having issues as line 1 and 2 of this utility script are:
Code: [Select]<?php
function connectToProductDB($hostname = "localhost", $username = "public", $dbname = "db", $password = "password123"){To answer my first question:
The issue wasn't with the code itself but the file.
I was working on a different machine than usual, and downloaded the script from the server.
No error was reported by filezilla but for some reason my local php interpretor and the server didn't like the downloaded copy.
My solution was to just redownload it and it then worked like normal.
Out of curiosity can ANYONE explain what POSSIBLY could have happened?No, but what I've found is that the line referred to in an error message for PHP, isn't necessarily where the root of the problem is.

868.

Solve : Javascript not working?

Answer»

I have only recently gotten into JavaScript, and STILL feel I am mostly a beginner in doing things with it, so it is quite possible this is a beginner mistake, but I would like to learn.

I have this script in the head section of the page, but it is not doing what I want it to do. In fact, it doesn't seem it is doing anything at all. Almost as if it isn't being activated by the onclick event. I'll show the parts of the code that are relavent, and a little more.
Code: [Select]    function reform(boxCheck) {
    if (document.getElementById(boxCheck).checked) {
     var x = concat("ext",boxCheck);
     console.log(x);
     document.getElementById(x).style.display = 'block';
    } else {
     var x = concat("ext",boxCheck);
     var v = concat("val",boxCheck);
     var s = concat("sym",boxCheck);
     var a = concat("act",boxCheck);
     document.getElementById(v) = null;
     document.getElementById(s) = null;
     document.getElementById(a) = null;
     document.getElementById(x).style.display = 'none';
    } Code: [Select]<form>
   <datalist id="symptoms">
    <option value="Pain/Discomfort">
    <option value="Stiffness">
    <option value="Weakness">
    <option value="Instability">
    <option value="Numbness">
    <option value="Paresthesias">
   </datalist>
   <input id="Head" type="checkbox" class="arealist" name="areaseff" value="Head" onchange="reform('Head')">Head
   <P id="extHead" style="display: none"><input id="valHead" type="number" name="valHead" MIN="0" max="100">%<br>
   Symptom: <input list="symptoms" id="symHead" name="symHead"> Affected Activity: <input type="text" id="actHead" name="actHead">
   </p>
   <br>What I'm trying to do is make the form dynamic and if the checkbox is checked, expand to allow elaboration. I'm sure I am missing something, just unsure as to what. Also, if there is a better way to do this, I'm open to learning best practices, etc.Concat is not a function. it is a method. In this case it is also redundant- you can simply use + to concatenate strings.
You cannot assign to a function result:

Code: [Select]document.getElementById(v) = null

You don't need to interact with anything besides the p tag itself (extHead in this case) and change it's display attribute. This seems to do what you want... (No idea how well the code tag works with HTML though)

Code: [Select]<html>
<head>
<Script type="text/javascript"> function reform(boxCheck) {
    if (document.getElementById(boxCheck).checked) {
     var x = "ext" + boxCheck;
     console.log(x);
     document.getElementById(x).style.display = 'block';
    } else {
     var x = "ext" + boxCheck;
     document.getElementById(x).style.display = 'none';
    }
}
</Script>
</head>
<body>
<form>
   <datalist id="symptoms">
    <option value="Pain/Discomfort">
    <option value="Stiffness">
    <option value="Weakness">
    <option value="Instability">
    <option value="Numbness">
    <option value="Paresthesias">
   </datalist>
   <input id="Head" type="checkbox" class="arealist" name="areaseff" value="Head" onchange="reform('Head')">Head
   <p id="extHead" style="display: none"><input id="valHead" type="number" name="valHead" min="0" max="100">%<br>
   Symptom: <input list="symptoms" id="symHead" name="symHead"> Affected Activity: <input type="text" id="actHead" name="actHead">
   </p>
   <br></form>
</body>
</html>
Thank you BC. This ended up working. I also see you corrected the missing } in the code that my copy and PASTING had left behind. Jumping back and forth between sequence programming and OOP was also a culprit in my use of concat. I'll try to walk AWAY and come back with fresh eyes in the future to hopefully catch errors like that. I appreciate the assistance.

869.

Solve : Javascript: Alternative commands to document.write()?

Answer»

Hello!  I am a new programmer.  I am trying to display a variable, but the only WAY I know to do that with is the document.write() COMMAND.  Every time I do that, it wipes everything, and puts the variable in the top left corner.  Are there any other ways that I could possibly display a variable?  Thanks -SamHi SamZelda1

create a span element with id "id" then use document.getElementById('id').innerHTML = value;If you are trying to display a variable for debugging purposes you can use console.log(var)
This will write the value of the variable into the javascript console.
In chrome you get to from the keyboard shortcut Command + OPTION + J (MAC) or Control + Shift + J (Windows/Linux)
other wise feras has your answer.
Or you could use window.alert(var). Cumbersome, but does what you are LOOKING to do. Personally I like Waffle's method better.  Create a span element id and then use this code:
Code: [Select]  <script type="text/javascript">
        var myDiv1 = document.getElementById("myDiv1");
        var myDiv2 = document.getElementById("myDiv2");

        myDiv1.innerHTML = "<b>Content of 1st DIV</b>";
        myDiv2.innerHTML = "<i>Content of second DIV element</i>";
    </script>
</html>
Hope this helps.

870.

Solve : Need a little help with HTML filters on my Wordpress theme.?

Answer»

Hi Guys!

I need a little help with my filtering system.

Basically, we have a new theme but the filtering system defaults as "show all" when I WANT it to default to showing only our available inventory (since there is way too much in "show all" and some people GET confused as to what is available and what is sold).

I have tried moving the "class=selected" coding to the available cars tab, but even though it selects the button it still shows all the items.

The web designer who put the theme up for me is not answering any of my messages, so I resigned to fix it myself. I've searched online for some answers, but I've come up short. Sooo.. here I am! I'm grateful for any help or insight. Thank you in advance!

If you want to see the actual site to see whats going on, its vintageracecarsales.com/inventory. Here is the coding for the page, with the SPECIFIC section i've been working on in red:


Quote

<?php get_header();
/*
Template name: Cars 4-col Template
*/
?>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<?php
   $skt_port_filter_hide  = sketch_get_option($invert_shortname.'_hide_pro_filter');
   $pagetitle = get_post_meta($post->ID, "_skt_pagetitle_metabox", true);
   $pagetitle = ((isset($pagetitle) && $pagetitle !="") ? $pagetitle : '1' );
?>
<?php if($pagetitle == 1) { ?>
<div class="bread-title-holder">
   <div class="bread-title-bg-image full-bg-breadimage-fixed"></div>
   <div class="container">
      <div class="row-fluid">
         <div class="container_inner clearfix">
            <h1 class="title">
               <?php the_title(); ?>
            </h1>
            <?php if(sketch_get_option($invert_shortname."_hide_bread") == 'true') {
            if ((class_exists('invert_breadcrumb_class'))) {$invert_breadcumb->custom_breadcrumb();}
            }
            ?>
         </div>
      </div>
   </div>
</div>
<?php } ?>
<!-- #Container Area -->
<div id="container" class="clearfix">
   <div class="container post-WRAP">
      <div class="row-fluid">
         <!-- Content -->
         <div id="content" class="span12">
            <div class="post project-temp4" id="post-<?php the_ID(); ?>" >
               <!-- Project Wrap -->
               <div class="project_wrap clearfix">
                  <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?>
                  <?php $args=array('post_type' => 'portfolio','posts_per_page' => '-1','paged' => $paged);
                  query_posts($args);
                  $args = array( 'taxonomy' => 'portfolio_category' );
                  $data_type = null; //For display data-type class
                  $data_id = 0; //For display data-id class
                  ?>
                  <div id="wrap" class="clearfix">
                  <?php if($skt_port_filter_hide == "true") { ?>
                     <div class="style-filter">
                      <!-- Category Filter -->
                       <DL class="group maingroup">
                        <dt></dt>
                        <dd>
                           <ul class="filter group" id="isofilters">
               
               

                                                                <li><a href="JavaScript:void(0);" data-filter="available">Available Cars[/url]</li>                                                         
                                                               <li><a href="JavaScript:void(0);" data-filter="parts">Parts & Other [/url]</li>

<li><a href="JavaScript:void(0);" data-filter="sold-cars">Sold[/url]</li>

<li><a href="JavaScript:void(0);" data-filter="*" class="selected">show all[/url]</li>
                                                               





                              



                           </ul>
                        </dd>
                      </dl>
                      <!-- Category Filter -->
                     </div><!-- style-filter -->
                     <?php } ?>
                     <div id="container-isotop" class="portfolio group four-col">
                        <?php
                        // The Loop
                        while ( have_posts() ) : the_post();
                        $terms = get_the_terms( $post->ID, 'portfolio_category' );
                        $cat_links = array();
                        foreach ( $terms as $term ) {
                           $cat_links[] = $term->slug;
                        }
                        foreach($cat_links as $itm){
                           $data_type .= $itm.' ';
                        }
                        $data_id++;
                        ?>
                        <!-- Project Box -->
                        <div class="item project_box span3 <?php echo $data_type;$data_type =null; ?>" data-type="<?php echo $data_type;$data_type =null; ?>" data-id="id-<?php echo $data_id; ?>">
                           <!-- standard -->
                           <div class="project-item" id="post-<?php the_ID(); ?>">
                              <?php if(has_post_thumbnail()) {
                              $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'invert_portfolio_image' );
                              $pretty_thumb = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID),'full'); ?>
                              <div class="feature_image" style="position: relative;">
                                 <img class="skin-border" src="<?php echo $image[0]; ?>" alt="Thumbnail" />
                              </div>


                              <div class="title">
                                 <a href="<?php the_permalink();?>" title="<?php the_title();?>"> <?php the_title();?> [/url]
                              </div>
                              



                              <?php } ?>



                           </div>
                           <!-- standard -->
                        </div>
                        <!-- Project Box -->
                        <?php
                        endwhile;               
                        // Reset Query
                        ?>
                     </div>
                     <div class="clearfix"></div>
                     <?php wp_reset_query(); ?>
                  </div>
               </div>
            <!-- Project Wrap -->
            </div>   
            <?php endwhile; ?>
            <?php else : ?>
               <div class="post"><h2><?php _e('Not Found','invert'); ?></h2></div>
            <?php endif; ?>
         </div>
         <!-- Content -->
      </div>
   </div>
</div>
<!-- #Container Area -->
<?php get_footer(); ?>
871.

Solve : convert jpg file name to text?

Answer»

Building a Go Daddy Quick Shopping Cart....trouble with match image to product.

I now have 8000+ pics and over 2300 items in my quick shopping cart. I have DOWNLOADED the image template and tried to merge the products with the image. No luck...."image file name could not be found" the only file name I seem to have would be the file name on the jpg pictures but I cannot copy and paste those into a excel worksheet. I would be great if I could access the file name on record with the media gallery...any suggestions

[recovering disk space, ATTACHMENT deleted by ADMIN]update: basically I want to paste a jpg file name into an excel spreed sheet.Hello,

sorry if IM bring back old thread, but i wanna share what i found.

1. Try SHIFT+right click at pic folder.
2. Choose "Open Command Window Here"
3. Type "dir /b >dirlist.txt" + enter
4. It will create dirlist.txt inside folder
5. You can copy paste now to excel

Hope it helps, cheers

872.

Solve : Xml and php or asp?

Answer»

I need to be able to save form DATA to a xml file.....
ALSO I need to add a new xml "user" element
with the SUB elements "name" and "EMAIL",
Each time a user fills out a form. can someone give me some pointers please thank you.
We are going to need WAY more INFORMATION about what problems you are experiencing before we can help.  You've told us what you are trying to do, now what problems are you having?

873.

Solve : Laravel?

Answer»

I have installed LARAVEL 5 using Composer in 2 places Wamp and Windows.  The REASON for 2 places was to use virtual host with wamp and Homestead with windows ( I think I'm right, Homestead with Vagrant sets up its own virtual box).
I'm looking for a PERSON who is a 'Laravel' whizzkid and can afford some patients a little time tutoring a twit like me.And uh what's the real reason for having the two setups? If you're just starting why don't you learn on one environment first? Quote from: notchosen on August 07, 2015, 07:54:06 PM

And uh what's the real reason for having the two setups? If you're just starting why don't you learn on one environment first?

That's not our CONCERN and that's not how we respond to requests for assistance. If you don't want to help, just don't post. thank you.He's OBVIOUSLY trying to do something in particular with this setup. So #1 question is to learn more about it.

OK nevermind.
874.

Solve : HTTrack Mirror Error; please someone help!!!!!!!!?

Answer»

Hi I'm GETTING a HTTrack Mirror Error; please someone help!!!!!!!!

HTTrack has detected that the current mirror is empty. If it was an update, the previous mirror has been restored. Reason: the first page(s) either could not be FOUND, or a connection problem occurred. => Ensure that the website still EXISTS, and/or check your PROXY settings!<=

We could do TeamViewer if someone likes, so thing can be fix already; because, it is burning to much of my time, for this little issue.

875.

Solve : Help embedding forum into website?

Answer»

Hey guys,

I could really use some help, otherwise this could take me months 

I'm trying to embed a forum into a webpage so that the links to the other web pages remain at the top (instead of the forum taking over the ENTIRE page).

The forum I'm using is PHPBB and I read somewhere that I have to edit a file in the directory for the foums skin entitled 'overall_header.html'.

I did  this and I can now see the links, but they're just text and not KEEPING in style with the rest of my website at all so I'm presuming it has something to do with the CSS. doc as well?

This is the result I got when I used part of my websites code into the skins overall_header.html doc:



(You can see the links top left)

This is how I'd like it to look:



I've attached:

phpbb_header.txt ~ The original 'overall_header.html' file that comes with the PHPBB skin
phpbb_stylesheet.txt ~ The original style sheet for the PHPBB skin
website_header.txt ~ Contains the HTML code for the header I'd like to have
website_style.txt ~ Style sheet for the rest of my website

If you need any more information please let me KNOW...

I really appreciate your time!

Neljan

[attachment deleted by admin]All you have to do is add this line to between the and of "overall_header.html":
<link rel="stylesheet" href="<*full path to your main site's css file*>" type="text/css" charset="utf-8" />THANKS for your help 

I tried...



...and...

http://worldclanleague.com/style.css" type="text/css" charset="utf-8" />

...because I wasn't sure whether <> was needed or not

* The results were the same (no change).

There is already a line like that in the overall_header.html:



Dont know whether thats significant? Quote from: neljan on February 23, 2009, 11:47:45 PM

There is already a line like that in the overall_header.html:

<link rel="stylesheet" href="{T_STYLESHEET_LINK}" type="text/css" />

Yes, that's the main forum CSS file.

Quote from: neljan on February 23, 2009, 11:47:45 PM
<link rel="stylesheet" href="http://worldclanleague.com/style.css" type="text/css" charset="utf-8" />

That's the right one.

Both the main forum and the site's CSS file should be there.Should be where???

So I should move the forum stylesheet to the same place as the sites stylesheet or the sites style sheet to the same place as the forums style sheet?Sorry about the confusion.

Your site's stylesheet (<link rel="stylesheet" href="http://worldclanleague.com/style.css" type="text/css" />) should be added between the and tags of the forum.

The other link you were talking about (<link rel="stylesheet" href="{T_STYLESHEET_LINK}" type="text/css" />) should remain where it is.

Hope this answers your questions.Hi Kpac,

I think it must have something to do with my other problem (that you're also advising me on).

Something to do with my .css file not being ACCESSABLE?

If you'd be willing to look into it I'd be happy to give you access to my CP.I think this must have something to do with it.
I replied to the other topic.Thanks again for helping me with my other problem kpac, I now feel like I'm getting somewhere!

Right, so I'm back to trying to make my forum look like the rest of my site...

I thought I'd start fresh so I unistalled the PHPBB theme (Avalon) and reinstalled it, I then edited the 'overall_header.html' as instructed, inserting:

http://worldclanleague.com/style.css" type="text/css" charset="utf-8" />

...between

I've also added:

Code: [Select]<div id="nav" style="left: 223px; top: 0px; width: 665px; height: 120px;">
      <ul>
        <li><a href="index.html"><span>01</span> HOME</a></li>
        <li><a href="http://www.worldclanleague.com/forum"><span>02</span> FORUM</a></li>
        <li><a href="rules.html"><span>03</span> RULES</a></li>
        <li><a href="lineups.html"><span>04</span> LINE UPS</a></li>
        <li><a href="contact.html"><span>05</span> CONTACT</a></li>
      </ul>
    </div>

<p><img alt="logo" src="images/logosmall.jpg" width="213" height="89" /></p>
Between

Code: [Select]<body class="{S_CONTENT_DIRECTION}">
<div id="body">

..and

Code: [Select]<a name="top"></a>

<table border="0" cellspacing="0" cellpadding="0" width="{$CA_WIDTH}" id="maintable" align="center">
<tr>
    <td class="row-left" valign="top"><img src="{T_THEME_PATH}/images/row_left_top.gif" width="4" height="100" alt="" /></td>
<td id="header" align="center" valign="top">
    <div id="logorow">
        <div id="logo-left"><div id="logo-right">
        <a href="{U_INDEX}">{SITE_LOGO_IMG}</a>
        </div></div>
    </div>

(etc)

Although I see some kind of recognision that I've added this code, for example in my hosts site html editor:



and in Sharepoint designer:



I see no change in the actual forum in the browser  (not even the results I had before where I could see the links)

And ideas?(sorry for double post)

I worked it out, I had to refresh the style in the ACP for the forum.

It doesn't look right but I'm getting somewhere One problem could be clashing classes in the stylesheets.

For example: the with the header you are trying to insert has an id of "nav". A problem occurs if the forum's stylesheet has a set style for an element with an id of "nav" - the browser doesn't know which one to use.
876.

Solve : How to put a site into my site??

Answer»

Hello guys,
My nephew has bought a domain at one.com the site allows you to add the site with a build in site editing progam, but you're also free to edit the HTLM documents.
That's what I do, when there is something that the build in prog can't do he asks me if I could help him out. (e.g. it doesn't support moving Gif files, so I hosted one and added it to the HTML)
Now he would like to have a guestbook, he found a free guestbook, but it goes with a link.
Now he would like to have it in a screen still on his site, is there anyway I could do it?

Thanks in advance

Jonas

Info
This is his site
This is his guestbookJonas...

You can always use an iframe to add his guestbook to his site...

GoogleThank you, That was where I was looking for!
Strange I didn't find it myself, I did look for it for quite a while.
Well now it doesn't really fit in the page, is there anyway I can cutt of the left and right a bit since it's just white?

Edit: nvm I've found it, I can use frameborder="pix to cutt off"
Edit edit: that's not true xD frameborder can only be 1 or 0

Jonas Can you post the code you have?Off caurse
here you go
Code: [Select]<HTML>
<HEAD><TITLE>willemwauters.be</TITLE>
<STYLE type=text/css>

body, p, td{
font-family:verdana;
font-size: 8pt;
font-weight:normal;
color:#000000;
}

h1{
font-family:verdana;
font-size: 16pt;
font-weight:bold;
color:#8b8b8b;
}

h2{
font-family:verdana;
font-size: 9pt;
font-weight:bold;
color:#8b8b8b;
}

a{
color: #737c7a;
text-decoration: none;
}

a:hover{
color:#cccccc;
text-decoration: none;
}

.menu td a{
color:#ffffff;
font-size: 8pt;
text-decoration: none;
}

.menu td a:hover{
color:#cccccc;
text-decoration: none;
}


H3 {font-size: 16pt; font-weight: normal}
H4 {font-size: 14pt; font-weight: normal}
</STYLE>
</HEAD>
<BODY style="MARGIN: 45px 0px 40px; BACKGROUND: #000080">
<DIV id=maindiv1 align=center><DIV id=maindiv2 style="WIDTH: 799px; POSITION: relative">
<TABLE style="POSITION: relative; BORDER-COLLAPSE: collapse; BACKGROUND: #000080; TOP: 0px; LEFT: 0px" id=maintable border=0 cellSpacing=0 borderColor=#8b8b8b cellPadding=0 width=800 align=center>
<TBODY>
<TR>
<TD></TD></TR>
<TBODY>
<TR>
<TD style="PADDING-BOTTOM: 8px; PADDING-LEFT: 8px; PADDING-RIGHT: 8px; PADDING-TOP: 8px" vAlign=bottom align=right>
<P><FONT color=#737c7a></FONT>&nbsp;</P></TD></TR></TBODY></TABLE>
</DIV></DIV>
<TBODY><TR><TD style="BACKGROUND: #8b8b8b" height="1"><IMG width=1 height=1></TD></TR></TBODY></TABLE>
<TABLE style="BORDER-COLLAPSE: collapse; BACKGROUND: #000080" border=0 cellSpacing=0 cellPadding=0 width="100%">
<TBODY>
<TR>
<TD height=290 vAlign=center width=235>
<TABLE style="BORDER-COLLAPSE: collapse" class=menu border=1 cellSpacing=0 borderColor=#ffffff cellPadding=0 width="100%" metaid="WillemWauters" meta="menu"><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/index.html">Home</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/biografie.html">Biografie</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/programma.html">Programma</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/uitslagen.html">Uitslagen</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/fotoalbum.html">Fotoalbum</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #acacac url(/images/winter/menu-bg-active.gif) no-repeat">&raquo;&nbsp;<a href="/gastenboek1.html">Gastenboek</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/krantenknipsels.html">Krantenknipsels</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/page4.html">Links</a></td></tr></TABLE></TD>
<TD style="BACKGROUND: url(/images/winter/vertical-border.gif)" width=1></TD>
<TD style="BACKGROUND: no-repeat" height=290 vAlign=top width=564>
</TD></TR></TBODY></TABLE><TBODY><TR><TD style="BACKGROUND: #8b8b8b"><IMG width=1 height=1></TD></TR></TBODY>
<iframe src ="http://www.webhelpje.be/gastenboek/gastenboek.php?name=WillemW" frameborder="0" width="1005" height="100%">
<p>Uw browser oindersteund geen ingeframde pagina, <a target="blank" href=http://www.webhelpje.be/gastenboek/gastenboek.php?name=WillemW>klik hier om handmatig naar het gastenboek te gaan></a></p>
</iframe></TABLE>
<TABLE style="BORDER-COLLAPSE: collapse; BACKGROUND: #000080" cellSpacing=0 cellPadding=0 width="100%" height="100%">
<TBODY>
<TR>
<TD style="PADDING-LEFT: 25px; PADDING-RIGHT: 10px; BACKGROUND: none transparent scroll repeat 0% 0%" vAlign=top align=middle>
</FONT></P>

My problems:
I frame schould be next to the menu in stead of underneath, and the with borders left and right should be gone

Anyone who can help me?

Thanks in advance

Jonas Is this what you want, Jonas?

Code: [Select]<HTML>
<HEAD><TITLE>willemwauters.be</TITLE>
<STYLE type=text/css>

body, p, td{
font-family:verdana;
font-size: 8pt;
font-weight:normal;
color:#000000;
}

h1{
font-family:verdana;
font-size: 16pt;
font-weight:bold;
color:#8b8b8b;
}

h2{
font-family:verdana;
font-size: 9pt;
font-weight:bold;
color:#8b8b8b;
}

a{
color: #737c7a;
text-decoration: none;
}

a:hover{
color:#cccccc;
text-decoration: none;
}

.menu td a{
color:#ffffff;
font-size: 8pt;
text-decoration: none;
}

.menu td a:hover{
color:#cccccc;
text-decoration: none;
}


H3 {font-size: 16pt; font-weight: normal}
H4 {font-size: 14pt; font-weight: normal}
</STYLE>
</HEAD>
<BODY style="MARGIN: 45px 0px 40px; BACKGROUND: #000080">
<DIV id=maindiv1 align=center><DIV id=maindiv2 style="WIDTH: 799px; POSITION: relative">
<TABLE style="POSITION: relative; BORDER-COLLAPSE: collapse; BACKGROUND: #000080; TOP: 0px; LEFT: 0px" id=maintable border=0 cellSpacing=0 borderColor=#8b8b8b cellPadding=0 width=800 align=center>
<TBODY>
<TR>
<TD></TD></TR>
<TBODY>
<TR>
<TD style="PADDING-BOTTOM: 8px; PADDING-LEFT: 8px; PADDING-RIGHT: 8px; PADDING-TOP: 8px" vAlign=bottom align=right>
<P><FONT color=#737c7a></FONT>&nbsp;</P></TD></TR></TBODY></TABLE>
</DIV></DIV>
<TBODY><TR><TD style="BACKGROUND: #8b8b8b" height="1"><IMG width=1 height=1></TD></TR></TBODY></TABLE>
<TABLE style="BORDER-COLLAPSE: collapse; BACKGROUND: #000080" border=0 cellSpacing=0 cellPadding=0 width="100%">
<TBODY>
<TR>
<TD height=290 vAlign=center width=235>
<TABLE style="BORDER-COLLAPSE: collapse" class=menu border=1 cellSpacing=0 borderColor=#ffffff cellPadding=0 width="100%" metaid="WillemWauters" meta="menu"><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/index.html">Home</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/biografie.html">Biografie</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/programma.html">Programma</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/uitslagen.html">Uitslagen</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/fotoalbum.html">Fotoalbum</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #acacac url(/images/winter/menu-bg-active.gif) no-repeat">&raquo;&nbsp;<a href="/gastenboek1.html">Gastenboek</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/krantenknipsels.html">Krantenknipsels</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/page4.html">Links</a></td></tr></TABLE></TD>
<TD style="BACKGROUND: url(/images/winter/vertical-border.gif)" width=1></TD>
<TD style="BACKGROUND: no-repeat" height=290 vAlign=top width=564>
<iframe src ="http://www.webhelpje.be/gastenboek/gastenboek.php?name=WillemW" frameborder="0" width="550" height="800">
<p>Uw browser oindersteund geen ingeframde pagina, <a target="blank" href=http://www.webhelpje.be/gastenboek/gastenboek.php?name=WillemW>klik hier om handmatig naar het gastenboek te gaan></a></p>
</iframe></TD></TR></TBODY></TABLE><TBODY><TR><TD style="BACKGROUND: #8b8b8b"><IMG width=1 height=1></TD></TR></TBODY>
</TABLE>
<TABLE style="BORDER-COLLAPSE: collapse; BACKGROUND: #000080" cellSpacing=0 cellPadding=0 width="100%" height="100%">
<TBODY>
<TR>
<TD style="PADDING-LEFT: 25px; PADDING-RIGHT: 10px; BACKGROUND: none transparent scroll repeat 0% 0%" vAlign=top align=middle>
</FONT></P>Yeah I've had something like that too, only the menu is a bit messed up when you do it like that.
I want the menu like 50px off the left and 50px lower then the beginning of the iframe
I've tried WORD html edditing, but that totally changes my codation, and I don't like that.

Any thoughts?

Jonas Give me a few...Jonas...

I was just browsing through the site.  It would seem that the images are all different sizes and it's throwing the pages off...each time one LOADS.  It would be best to ensure the images are all the same size, so that the pages stay consistent.  Every time you go to a new page, the menu moves.

Also...if it were me...I'd include another image on the guestbook page and place the iframe underneath...again...keeping with conformity on all the pages.

I HOPE you know what I'm referring to.Yeah I know but I don't know how I can get the menu at the same place everywhere :s
It's not the image who replaces the menu.

And yeah I could just put it untherneath

that would be easier xD

Thanks for the help and effort

Jonas You're using tables, right?

Your menu is INSIDE a table.  So are the images...

So, when you load a new page and the image is a different size, it'll throw off the position of the menu...Yeah but I messed that up earlier on, by removing some tables at sertain pages.
I'm planning on fixing that sometime soon.
BTW: I finally managed to get it WRIGHT
Code: [Select]<HTML>
<HEAD><TITLE>willemwauters.be</TITLE>
<STYLE type=text/css>

body, p, td{
font-family:verdana;
font-size: 8pt;
font-weight:normal;
color:#000000;
}

h1{
font-family:verdana;
font-size: 16pt;
font-weight:bold;
color:#8b8b8b;
}

h2{
font-family:verdana;
font-size: 9pt;
font-weight:bold;
color:#8b8b8b;
}

a{
color: #737c7a;
text-decoration: none;
}

a:hover{
color:#cccccc;
text-decoration: none;
}

.menu td a{
color:#ffffff;
font-size: 8pt;
text-decoration: none;
}

.menu td a:hover{
color:#cccccc;
text-decoration: none;
}


H3 {font-size: 16pt; font-weight: normal}
H4 {font-size: 14pt; font-weight: normal}
</STYLE>
</HEAD>
<BODY style="BACKGROUND: #000080; MARGIN: 45px 0px 40px">
<DIV id=maindiv1 align=center><DIV id=maindiv2 style="WIDTH: 799px; POSITION: relative">
<TABLE id=maintable style="BACKGROUND: #000080; LEFT: 0px; POSITION: relative; TOP: 0px; BORDER-COLLAPSE: collapse" borderColor=#8b8b8b cellSpacing=0 cellPadding=0 width=800 align=center border=0>
<TBODY>
<TR>
<TD>
<TABLE style="BACKGROUND: #000080; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD style="PADDING-RIGHT: 8px; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; PADDING-TOP: 8px" vAlign=bottom align=right>
<P><FONT color=#737c7a></FONT>&nbsp;</P></TD></TR></TBODY></TABLE>
<TABLE style="BORDER-COLLAPSE: collapse" height=1 cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR></TR></TBODY></TABLE>
<TBODY>
<TR>
<TD vAlign=center width=235 height=290>
<TABLE class=menu style="BORDER-COLLAPSE: collapse" borderColor=#ffffff cellSpacing=0 cellPadding=0 width="100%" border=1 meta="menu" metaid="WillemWauters"><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/index.html">Home</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #acacac url(/images/winter/menu-bg-active.gif) no-repeat">&raquo;&nbsp;<a href="/biografie.html">Biografie</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/programma.html">Programma</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/uitslagen.html">Uitslagen</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/fotoalbum.html">Fotoalbum</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/gastenboek1.html">Gastenboek</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/krantenknipsels.html">Krantenknipsels</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/page4.html">Links</a></td></tr></TABLE></TD>
<TD style="BACKGROUND: url(/images/winter/vertical-border.gif)" width=1></TD>
<TD style="BACKGROUND: url no-repeat" vAlign=top width=564 height=290>
<P><IMG src="/Afbeelding%20047.jpg-for-web-large.jpg"></P></TD></TR></TBODY></TABLE><TBODY><TR><TD style="BACKGROUND: #8b8b8b"><IMG width=1 height=1></TD></TR></TBODY></TABLE>
<TABLE style="BORDER-COLLAPSE: collapse; BACKGROUND: #000080" cellSpacing=0 cellPadding=0 width="100%" height="100%">
<TBODY>
<TR>
<TD style="PADDING-LEFT: 25px; PADDING-RIGHT: 10px; BACKGROUND: none transparent scroll repeat 0% 0%" vAlign=top align=middle>
<P><SPAN style="FONT-SIZE: 20pt"><SPAN style="FONT-SIZE: 22pt"></SPAN></SPAN>&nbsp;</P>
<iframe src ="http://www.webhelpje.be/gastenboek/gastenboek.php?name=WillemW" frameborder="0" width="550" height="1000">
<p>Uw browser oindersteund geen ingeframde pagina, <a target="blank" href=http://www.webhelpje.be/gastenboek/gastenboek.php?name=WillemW>klik hier om handmatig naar het gastenboek te gaan></a></p>
</iframe>
<P>&nbsp;</P>
<P>&nbsp;</P></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></BODY>

Thanks for all the help

Jonas

877.

Solve : HOW TO HIDE META DATA CONTENTS or Keywords FROM A WEBSITE OR FROM VIEW SOURCE.?

Answer»

HELLO TECH GEEKS.!
----------------------

I want to hide meta data or meta contents from my website
such as when anybody open my website or source
meta contents or Keywords will not show in "View source" but keywords should work in internet or web page.

Is this possible through html / html5 or php.
but not through Javascript, because anybody can disable Javascript from his browser and after that can read my keywords.




Thanks in Advance.
Well, of course not since if you are sending raw HTML to a site it will be visible when you view the source...

Why exactly must you hide the keywords?  I can't think of any legitimate reason to do this!Yaa...!
I know that thing,
Thankyu.. for REPLY. Hi there,

Various sites being BUILD today are trying to build sites where source code can't be read(using view page source.)
Some examples are that sites whence loaded you can't proceed further until you can't disconnect your internet. These sites also include feature to disable page source.
But source code can be read in some other way.  (Obviously site must have been dowloaded in the above case, on your computer.)

So source will have to be sent to the client. But features like above can be added.

Cheers.
shukas1995 Quote from: shukas1995 on February 25, 2015, 04:01:00 AM

Various sites being build today are trying to build sites where source code can't be read(using view page source.)
Some examples are that sites whence loaded you can't proceed further until you can't disconnect your internet. These sites also include feature to disable page source.
Any evidence of this?  You cannot hide ANYTHING that is sent to the client's computer, end of story.  Sure there are horrible Javascript hacks that can be done to make it harder for someone to view the source but it will not stop anyone who has any idea of what they are doing and will cause a total usability nightmare that will ultimately stop people using the site.The meta content, if well WRITTEN in the webpage, is quite important as it is often used as the "snippet" for the Search result page (search engine result page). The public can read it in Google search engine results page and makes them more or less likely to feel the need or desire to visit your site. As a public thing there is no way that you can or should "hide" it. That would be like a firm/agency wanting to hide its ads from their competitors. Accordingly, although the meta keywords are not used by Google search engine, they cannot be hidden, but you can leave it if you want. Google meta title and meta descriptions can increase click through rates for the website and keywords aren't used for rankings in Google. 


Quote from: aditya on February 20, 2015, 01:43:36 AM
HELLO TECH GEEKS.!
----------------------

I want to hide meta data or meta contents from my website
such as when anybody open my website or source
meta contents or Keywords will not show in "View source" but keywords should work in internet or web page.

Is this possible through html / html5 or php.
but not through Javascript, because anybody can disable Javascript from his browser and after that can read my keywords.




Thanks in Advance.
If your hide on get source, google or another SE cant get. And Meta is not display for you. Google 'Make HTML source unreadable'
Lots of links found.
No good reasons GIVEN
Thank you very much. This was very helpful. I have solved problem which was bothering me for a while. BR.
878.

Solve : Adding a Banner on top of the page.?

Answer»

Hi,
I'm helping my nephew out with his new site, but I'm a complete n00b if it comes to HTML, but I'm very motivated to learn how I can do things with HTML. w3schools.com is a very good site but it doesn't answer all my questions.
Earlier on Glitch already helpt me out with adding the guestbook to that page.see here
So I'm hoping some of you can help me:
I want to add a banner at the top of the page, but does anyone know how can can do that, without the complete page moving down.

I'm still working on the banner but it will be 1000px width and 150px of hight.
Edit: banner is added now but I can't seem to get it at the top of the page
Here's the CODE:
Code: [SELECT]<HTML>
<HEAD><TITLE>willemwauters.be</TITLE>
<IMG src="http://i202.photobucket.com/albums/aa33/Jonasty009/Banner-2.gif">
<STYLE type=text/css>

body, p, td{
font-family:verdana;
font-size: 8pt;
font-weight:normal;
color:#000000;
}

h1{
font-family:verdana;
font-size: 16pt;
font-weight:bold;
color:#8b8b8b;
}

h2{
font-family:verdana;
font-size: 9pt;
font-weight:bold;
color:#8b8b8b;
}

a{
color: #737c7a;
text-decoration: none;
}

a:hover{
color:#cccccc;
text-decoration: none;
}

.menu td a{
color:#ffffff;
font-size: 8pt;
text-decoration: none;
}

.menu td a:hover{
color:#cccccc;
text-decoration: none;
}


H3 {font-size: 16pt; font-weight: normal}
H4 {font-size: 14pt; font-weight: normal}
</STYLE>
</HEAD>
<BODY style="BACKGROUND: #000080; MARGIN: 45px 0px 40px">
<DIV id=maindiv1 align=center><DIV id=maindiv2 style="WIDTH: 799px; POSITION: relative">
<TABLE id=maintable style="BACKGROUND: #000080; LEFT: 0px; POSITION: relative; TOP: 0px; BORDER-COLLAPSE: collapse" borderColor=#8b8b8b cellSpacing=0 cellPadding=0 width=800 align=center border=0>
<TBODY>
<TR>
<TD>
<TABLE style="BACKGROUND: #000080; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD style="PADDING-RIGHT: 8px; PADDING-LEFT: 8px; PADDING-BOTTOM: 8px; PADDING-TOP: 8px" vAlign=bottom align=right>
<P><FONT color=#737c7a></FONT>&nbsp;</P></TD></TR></TBODY></TABLE>
<TABLE style="BORDER-COLLAPSE: collapse" height=1 cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR></TR></TBODY></TABLE>
<TBODY>
<TR>
<TD vAlign=center width=235 height=290>
<TABLE class=menu style="BORDER-COLLAPSE: collapse" borderColor=#ffffff cellSpacing=0 cellPadding=0 width="100%" border=1 meta="menu" metaid="WillemWauters"><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/index.html">Home</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/biografie.html">Biografie</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/programma.html">Programma</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/uitslagen.html">Uitslagen</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/fotoalbum.html">Fotoalbum</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #acacac url(/images/winter/menu-bg-active.gif) no-repeat">&raquo;&nbsp;<a href="/gastenboek1.html">Gastenboek</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/krantenknipsels.html">Krantenknipsels</a></td></tr><tr>
<td align=left valign=middle height="25" style="padding-left: 25px; background: #8b8b8b url(/images/winter/menu-bg.gif) no-repeat">&raquo;&nbsp;<a href="/page4.html">Links</a></td></tr></TABLE></TD>
<TD style="BACKGROUND: url(/images/winter/vertical-border.gif)" width=1></TD>
<TD style="BACKGROUND: url no-repeat" vAlign=top width=564 height=290>
<P><IMG src="/Afbeelding%20047.jpg-for-web-large.jpg"></P></TD></TR></TBODY></TABLE><TBODY><TR><TD style="BACKGROUND: #8b8b8b"><IMG width=1 height=1></TD></TR></TBODY></TABLE>
<TABLE style="BORDER-COLLAPSE: collapse; BACKGROUND: #000080" cellSpacing=0 cellPadding=0 width="100%" height="100%">
<TBODY>
<TR>
<TD style="PADDING-LEFT: 25px; PADDING-RIGHT: 10px; BACKGROUND: none transparent scroll repeat 0% 0%" vAlign=top align=middle>
<P><SPAN style="FONT-SIZE: 20pt"><SPAN style="FONT-SIZE: 22pt"></SPAN></SPAN>&nbsp;</P>
<iframe src ="http://www.webhelpje.be/gastenboek/gastenboek.php?name=WillemW" FRAMEBORDER="0" width="550" height="1000">
<p>Uw browser oindersteund geen ingeframde pagina, <a target="BLANK" href=http://www.webhelpje.be/gastenboek/gastenboek.php?name=WillemW>klik hier om handmatig naar het gastenboek te gaan></a></p>
</iframe>
<P>&nbsp;</P>
<P>&nbsp;</P></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></BODY>

Thanks in advance

Jonas I've found it myself, I was so stupid I didn't even noticed there was a table who had 45px cellspacing above, so I changed that to 0 and it was fixed.

Jonas

Can a admin please remove this topic? cause I can'tThere's no need to remove it. It might help someone ELSE.

879.

Solve : Suggestions for low cost or free web hosting and large project downloads?

Answer»

I am looking to post online Open Source projects for download that I either created myself or altered others open source projects, but I have been out of the WEB loop for about 10 years from having a website hosted and MAINTAINED. Figured I'd check here for suggestions.

One altered open source project is to expand OS backwards COMPATIBILITY to Windows XP SP3 and this download is about 800MB in size. Most are small lesser than 20MB in size that I created myself.

Not looking to make any money on this venture. Its all open source and posted for others to use and further alter if needed.

In the past I have put some projects up on GitHub for ones that I created myself for people to use. I have no idea of web traffic to them and if anyone has even downloaded them. With no website pointing to the GitHub for open source projects that I have there, I am not sure if Google crawls to gather info from GitHub from the description pages for projects to then suggest a hit on a search in search engine to the GitHub page.

Also, I dont need to specifically have my own website, but I am thinking that is probably what I will need to have for this. If there was already a trusted website out there that isnt on the dark or grey net that where projects like this can be shared for others to find and use and google search to add to the search that would WORK too. However there are many grey and dark net hosts out there for downloads and I dont want my projects which are clean and not illegal mixed with the questionable and/or illegal download sites.  Many of the COMPANIES you knew ten years ago are still out there.
Check with educational institutions near you.
Or, check out this article from lifehackerr.
http://lifehacker.com/5911651/five-best-web-hosting-companies
Also consider services from Yahoo or Google.
Look at this:
http://thenextweb.com/google/2011/03/04/how-to-host-your-website-on-google-for-free/

One of my old favorites was https://www.34sp.com/ in the UK.
I wouldn't trust any free hosts - they tend to disappear very quickly and the people running them tend to have questionable skills when it comes to managing and securing the system.

Github is the de-facto standard for open source project hosting and is certainly indexed by Google - I regularly find projects on github, including some of my own which aren't very popular at all.  It also makes it easy for others to collaborate on the project with you, something you can't do with a simple website.  You can then use Github pages (https://pages.github.com/) to build a website which will be hosted on Github as well as be managed through git itself.cool thanks for the info

880.

Solve : Why won't my site appear??

Answer»

Hey guys,

(Sorry I must be a noob to building websites)

I uploaded my index.html, css and images directory to my webhost but I get this great BIG ugly message:

Quote from: Ugly

Forbidden

You don't have permission to access / on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

I uploaded to the www. directory, the files also automatically appear in public.html directory.

Thanks in advance for your help!So, you've uploaded your files but you can't view any of your website via browser, RIGHT?

Does your hosting service provide a "cPanel", a control panel, where you can view the files you've uploaded and perform CERTAIN file maintenance procedures?  I believe you should be able to access your files on the web server by logging on to your web hosting account and change permissions.

Are you using a paid service?  If so, contact their tech support if necessary.Can you post a link?Hi,

Yes the hosting service provides a cPanel, the permissions are 6,4,4.

link is : http://www.worldclanleague.com/Yep, I think you need to change permissions.  See this reference: http://www.wpi.edu/Academics/CCC/Help/Unix/Webdev/webchmod.htmlIf it's cPanel Extra, log in to cPanel, scroll down to the bottom (usually), click Xtra, and then click Fix public_html.

soybean's link will give you some valuable info for future reference.Thanks for your advice guys, but still I have nothing 

Apparently it's something to do with the coding, I uploaded an old site I made and it worked fine but I can't see anything wrong with the new sites coding.

I even changed the top part of the new sites coding to match the old site (the one that works) exactly and it still doesn't work!!!

I find this ridiculous, I don't know what I have to do to get this bloody thing working.

I've attached the index html file, if you can see why it isn't working please let me know.

[attachment deleted by admin]I see no reason that file will not display as a web page.  Are you absolutely sure it's on the web server with the name index.html, not index.txt?  Try something...

Go to your public_html or www directory in filemanager. If you see a file called .htaccess or htaccess.txt, open it, and copy the contents into a reply.

Also go to the Xtra section of cPanel, and then click Fix File Ownership. You MIGHT or mightn't have this option.

Who is the site hosted with?Hey thanks for your help guys, I appreciate it.

The file I've uploaded is index.html (not .txt)

Theres no .htaccess or htaccess.txt file.

Theres no 'Xtra section' (that I can see) in the CP.

The host is : http://hostpapa.co.uk/

I'm willing to give someone my username/password to access the CP if it helps?If you want, I can take a look. Just PM me.I sent you a pm Should be fixed now.

Your index file was called Index.html (notice capital I). The server isn't configured to recognise Index.html files, just index.html files, so that's what I renamed it to. Fairly easy mistake to make, so don't feel stupid or anything.

You still have a few files to upload, as well as changing the link to the forum on the homepage. The link should be worldclanleague.com/forum/.

Good luck with it.

You're a saint 

Thank you so much Kpac!!!No problem.
881.

Solve : Password protecting a site?

Answer»

Hi

Ive created my own website with plublisher 2007 but now i need to password protect certain content on the website i need to create different passwords
You could use a user login authentication SYSTEM using PHP or ASP etc., or you could use htaccess.ok but i created the site with ms publisher 2007 will those still work?
Is your site built with ASP or plain HTML?Plain html i just desighned it with publisherTry here: http://www.javascriptkit.com/howto/htaccess3.shtmlMaybe try this? I think it doesnt work...

Code: [SELECT]<SCRIPT TYPE="text/javascript">
function askLogin(password) {
var p = prompt('Please enter your password','Password')
if p('',password') {
  alert('Thanks!')
else
  alert('You do not have permission to access this page!')
  var newLoc = "http://www.example.com/path-to-failed-login.type"
  window.location = newLoc
  }
}

<body onLoad="askLogin('PASSWORD HERE')">For multiple passwords, use:

Code: [Select]<script type="text/javascript">
function askLogin(password) {
var p = prompt('Please enter your password','Password')
if p('',password') {
  alert('Thanks!')
else
  alert('You do not have permission to access this page!')
  var newLoc = "http://www.example.com/path-to-failed-login.type"
  window.location = newLoc
  }
}

<body onLoad="askLogin('PASSWORD HERE','Password Here','Password Here','So on')">

882.

Solve : Upload to folder in PHP??

Answer»

I NEED SOMETHING so that VISITORS can upload a picture to the folder at:

http://www.herbertsworld.com/online/pictures


Can SOMEONE help?SEE here: http://www.w3schools.com/php/php_file_upload.asp

883.

Solve : How Do I Download pdf and doc files?

Answer»

I would like to download ebook files with the Dialog box that
offers the OPTION to "Open" or "Save".  I now load the files onto
my server but when I link the file just appears and not the dialog
box I see on other sites.Sorry, but I don't understand what you're asking.

What is it you're trying to do? Maybe it's just me, but I don't get it.  I think I understand.

You're saying, when someone clicks a link to download a PDF file, you don't want the file to display in the browser, just download?but the fourm name suggest other wise.  It says how do I download ......That's EXACTLY what I said. oh thought you were meaning what he had typed.If you RIGHT click on the link to the file and select Save Link As (referring to FIREFOX here), does that allow you to save the file rather then immediately open it? Quote from: soybean on February 26, 2009, 07:16:06 AM

If you right click on the link to the file and select Save Link As (referring to Firefox here), does that allow you to save the file rather then immediately open it?

Yes, but I think the OP wants to use a link to download the files.

Have a LOOK on Scripts.well it would allow for that.  Solveing this issue
What are you on about? Allow for what? Solving what issue?the guy who had started this that had never came back. Quote from: squall_01 on March 02, 2009, 10:24:50 AM
the guy who had started this that had never came back.

Unnecessary reminder, thank you.I'm not reminding just stateing.
884.

Solve : Please help with table!!!!!?

Answer»

Take a look at the image of the table below. Your assignment will be to recreate this table using HTML. Make SURE you include the CSS definitions. Here are some CLUES to help you out:

The table is 500 pixels WIDE
The cell COLORS are #0000FF, #330066 and #FF0000
The table border color is #FFFF00
The outside cells are 25% of the WIDTH of the table
The height of the center cell is 25% the height of the table

What's our prize?Homework - no can do.

885.

Solve : Website design modifications?

Answer» HELLO Experts

Please comment whether my website needs design modifications?

All your GUIDANCE is really valuable.

www.buzzhash.com

Amandawow that font COLOR in your POST for assistance is hard on the eyes all washed out into the background. Not SURE why you went with that color. 

Let me normalize it:

Quote
Hello Experts

Please comment whether my website needs design modifications?

All your guidance is really valuable.

www.buzzhash.com

Amanda
886.

Solve : Need help graphics software?

Answer»

Hello All,

Guys I am a newbie and I do not hold much knowledge about graphic designing software. ACTUALLY I am looking forward to buy graphic software for my daughter who is much interested in this TOPIC and is looking forward to build her future in the same field.
I searched it on internet and came across these two software but I am UNABLE to decide which one WOULD suite her best. Adobe illustrator CS4 http://www.ecostsoftware.com/adobe/adobe-illustrator-cs4-win_p4124 and corel draw graphics suite X4 http://www.ecostsoftware.com/corel/corel-draw-graphics-suite-x4_p3529 . I don’t want to ask her as I want it to be a surprise. So guys please help me PICK the right software for her.I haven't used either, but personally I would go with Illustrator.

Here are some reviews:
Adobe:
http://graphicssoft.about.com/library/reviews/uctkm_fpr_illustrator10a.htm
http://www.arstechnica.com/apple/news/2008/11/adobe-illustrator-cs4-review.ars
http://www.cnet.com/topic/adobe-illustrator.html

Coral:
http://graphicssoft.about.com/od/integrated/gr/coreldrawsuite.htm
http://reviews.pricegrabber.co.uk/graphics-publishing/m/65338034/expert/
http://www.reviewcentre.com/reviews54223.html

Good luck.

887.

Solve : Can you make a fading background in HTML??

Answer»

Is there any way I can make 2 colors fade in to each other with HTML as a background?
I've tried creating an gradient with Photoshop but it just repeats the im over and over.
I just want one transition.

Is that possible with HTML?
I've tried googling but I always end up on a CSS file.

Thanks in advance

Jonas HTML can't but JavaScript can.

www.javascriptkit.com/script/cut4.shtml
www.permadi.com/tutorial/jsbgfade/index.html
www.crowderassoc.com/javascript/bgfade.htmlYeah, I've also found some of that stuff, but that's not what I want.
I would like to have something like this:


But when I add this picture to the body as background, it keeps repeating it. But I want it to keep red for the rest of the page.
Any idea how I can do that?

Jonas Is is across or down the page you want?

If it's across you want, just use this:
<body style="background: url(bg.jpg) #000000 repeat-x;">

"repeat-x" repeats the IMAGE across the page.

Repeating the image down the page isn't possible, as far as I'm aware of. You'd need to just make the image larger.I want it down the page xD
I've tried making the image 9000xp of height but it just resises it
Can't I do it with javascript? (I don't know much about javascript)

Jonas Are you putting it in a table? Or is it the background?

You might find something at one of these links:
http://www.w3schools.com/css/css_background.asp
http://www.dotnetspider.com/resources/20752-Repeat-image-using-CSS.aspx

I'm not sure about either though. It mightn't look like you want it to.Yeah I've also already found that, but I can only use HTML cause my nephew uses a program to add tekst and that prog can only read htlm

I've started a topic in programming to ask if it is possible with javascript This is it

Jonas JavaScript isn't really programming though...

Also, JavaScript ends up modifying HTML code, so if you were able to do it with JavaScript, then you would be able to do it with HTML or CSS.oh xD didn't know both of that xD
then my post in prog is kinda worthless (can some admin please remove it then?)
Srry about that

An other MISTAKE I made was thinking that CSS was a total different LANGUAGE then HTML I can use you links, I think that will help me out, I'm gona give it a try.
I'll let you know

Thanks for all the help (although I was reacting in a KIND of wrong way because I had totally wrong knowledge about javascript and CSS)

Jonas Actually wait.

WordPress (the blog) has the ability to do this. Not sure what language it uses though. Give me a while and I'll dig through it.Dno wordpress I'll give the CSS a try, dno if it will give the result I want.

Jonas I've found something that is pretty close to what I wanted:
<body style="background: url(http://i202.photobucket.com/albums/aa33/Jonasty009/achtergrond.jpg) #7a0305 repeat-x;">
It would be nice if it would fade throughout the whole page but it's close ENOUGH,

THANKS FOR ALL THE HELP!!!
I'm really sorry I misunderstood you earlier on

1 more question, can I take different images and put them under each other?
that would be even nicer

Jonas Good.

Putting two images as your backgound I'd say is definitely not possible though. Ok oh well I have a result that's very close, thanks

I'll be back with other questions xD
Cause I want to learn a lot and give the site a professional look.

I'm thinking, should I create different topics on each question that I will have or should I make one topic?

Jonas
Well, different topics would probably be easier to follow.

Just once they're not too closing related.

888.

Solve : copy contents from one html page1 table-A to html page2 table-B..?

Answer»

please help me in this with the help of programming if someone expertise the same i.e javascript or any other languageYou need to answer the question.
Are you doing direct editing of the HTML?
OR
Are you doing  editing of the visual page?

The visual page is call WYSIWYG

I ASSUME you are using WYSIWYG and do not understand how to specify a new column target AREA to place the clipboard contents.

Using a scrip is only needed for a huge job that has dynamic usage.
dear i am gonna attach text file for the same.  could not find the javascript or your could say could not understand where to put the same.   if you know about it pls help....

attaching page1 and page3 in text form. may be it would clarify more.  save it as html file and see what i am trying to do.  trying to copy data from table in page1 to table in page3

[attachment deleted by admin to conserve space]hello experts,

what happened....?

need you help guys...........Your HTML code does not indicate why or how you would want to combine these two tables.
Yes, HTML can create tables. But it is not a data base manager. It does not SOMEHOW know which objects belong  together.

Please try to explain in plain English what you need to do.
Are these tables used to store numbers?
Or a bunch of important words?
Is it part of a spreadsheet?
Is it a photo album?
Is it a list of poems?
Os it a list of important dates in history?

In any case, understand the purpose of the table is critical to making major changes to anything other that just color and size.

If you have two disparate tables, but with a set of objects common to both, merge or join of  the tables is more of a data base manager program, not a lot of HTML code.

Please explain why you need to do this?
Why not just start over and make a new table that has everything?



hello friends,

these are the web pages only.   i prepared the pages by insterting the values in the table in page1 by using editor ealier. i MADE thousands of pages.   now what happened, my college needs table to be more presentable, so they provided me set standard for the table.  now i created the pages again with new table style.  required data is the same.   so one way is to insert all the data one by one in new html pages by myself, or i could find a way out to copy all the data from table in page1 format to new page say page3 .

otherwise i will have to insert data manually using editor in each page.......If I'm honest, I think most of the issues here stem from the fact you are using extremely outdated editors that haven't been developed since 2005, in the past 10 years web standards have changed hugely and nowadays WYSIWYG type desktop editors are totally out of fashion.  I'd strongly recommend just sitting down and learning raw HTML, it won't take long (probably not much longer than you've spend trying to get this to work) to get reasonably competent with it.  I imagine the issue could be solved very quickly by simply editing the actual HTML code.

889.

Solve : How do I replace an onscreen element with a value??

Answer»

Given HTML like this:




 
 
    Alabama...
 
    Wyoming
 





I want to be able to replace the on-screen "with the "value" upon a selection click.

How do I do that?
Ideally you would want to use jQuery for this to make life a lot easier but it could be done in raw Javascript if absolutely required.  Essentially you would need to bind an event handler to the change event of the select.  When the event handler is triggered, simply get the value of the select and then use something like the jQuery replaceWith method to replace the input. http://api.jquery.com/replacewith/Gosh, that seems an incredible amount of work just to do what should be very light weight! Something like TURNING off the .visible property or setting one element equal to another (if the element has an ID = "Fred" setting Fred.value to something like "SylvesterStallone" should replace the element, no?

Perhaps something in the DOM object?
Just curious as to what you what to do.
Do you already have a lo-tech way of  doing it?
Example:
  Three PAGES. All three pages have common things. They look alike.
  First page gets something and the will then goo either page 2 or page3 as needed.
Does that describe what your want?
Unfortunately that's really as simple as it can be, you have to do DOM manipulation in Javascript, you can't just set variables to make it work.Actually, I think I found the solution but I can't seem to get the syntax. Presume I have a with the long form states In a list as pairs with the two letters abbreviations in each state' s value.

Using "WithReplace", and the select being called "regstater" what would be the correct syntax to have in the select's onclick= event?

I know I'm on the right track but my mind is going tapioca pudding!
How much JavaScript do you know?  I'd suggest getting reasonably comfortable with it before attempting this.  You shouldn't really be putting much code in the onclick attribute (ideally not using it at all and using JS event handlers).  The main bulk of your JavaScript logic should be in a separate JavaScript file loaded into the page.










































































































> How much JavaScript do you know?

Well, I prefer *real* programming languages instead...

Seriously, what is the problem with its OnClick event handling? I thought it was pretty robust. No?









.I'm not entirely clear on what you are trying to do, myself. It seems clear that you want to completely replace the combobox with the selection in the combobox, but that seems a bit weird, which is why I ask. if it is, you'll want the onchange event, not onclick. And you'll want to change the HTML itself. You can either do this with the DOM replaceChild() method, or you can create an element to encompass the select tag, and replace the innerHTML of that item:

Code: [Select]<html>
<body>

  <input type="text" id="xyz" />
<span id="stateselection">
  <select size="0" id="regstater" onchange= "stateselection.innerHTML=regstater.value">
    <option value="AL">Alabama</option>
    <option value="WY">Wyoming</option>
  </select>
</span>


</body>
</html>

By the way- this isn't in a form, but the name attribute is only used for form submissions. the id tag is used when dealing with the DOM; Your original script was failing because there was no regstater2 id, for example; but as you have them defined, EVEN if the name was lookup-able, they would be the same item anyway. Not sure what you expected when setting a property to itself

Another reason I'm unsure if this is actually the sort of thing you were after is because if it is the textbox sorta just- SITS there and does nothing. If you want to set the value of the textbox to the state when the state combobox is changed, that's fairly similar:

Code: [Select]<html>
<body>

  <input type="text" id="xyz" />
  <select size="0" id="regstater" onchange= "xyz.value=regstater.value">
    <option value="AL">Alabama</option>
    <option value="WY">Wyoming</option>
  </select>

</body>
</html>


Quote
Seriously, what is the problem with its OnClick event handling? I thought it was pretty robust. No?
Nothing really. But it's typically a pain in the *censored* trying to get any non-trivial logic into a STRING attribute. Typically you would write the code in a separate file as a function, include it in the file by using a
890.

Solve : How to make a GIF image??

Answer»

Thanks. I think.  Quote from: michaewlewis on September 27, 2007, 07:43:04 AM

Dilbert, have you actually created an animated gif with gimp? I haven't figured out much more than single image editing with gimp. Not sure even where to START.

http://www.csb.yale.edu/userguides/image/moviemaker/anim_gif.html

That tutorial is for UNIX. Axe the "start by typing gimp BIT, and it's for Windows too.

Also:

http://www.gimp.org/tutorials/Simple_Animations/

For more, go here:

http://www.google.com/search?q=animated+gif+gimpYou may create images .jpg and add to gif animator
http://byte.freetzi.com/easy-gif-animator.html Quote
« Reply #16 on: 27 September 2007, 16:06:19 »

In future, read what date the last reply has been on.Interesting piece of SOFTWARE though....Heh 

make your own VIDEO avatars it's easy

1 - download or make video any format
2- download Video Avatar program

that's all =))What?

What is today's date?
891.

Solve : Image map/links?

Answer»

So, the title isn't great because I'm not quite sure how to explain what I'm after.  I haven't DONE any web coding at all since about 2009, and that was just fairly basic HTML/CSS and a little JS, most of which I forgot SOON after.  Other than a few simple edits, I then didn't touch web design whatsoever until a few weeks ago when I started doing some bits and bobs on Codecademy - great site by the WAY, I would highly recommend it to anyone who either hasn't done web code before or who is as rusty as I was.

Anyway!  The thing is, I'm still plugging away with Codecademy, but there's a specific project I want to do.  I've Googled it of course but there's actually too much info for me to easily digest so I thought I'd throw this question out there in the HOPES that someone can maybe recommend a straightforward way to do this.  I'm happy to learn as I go, in fact even if it was possible I'd prefer not to just have a drop-in solution so that I can learn how it works, but I don't really want to piece this together from a hundred different sources because I don't have the energy right now.

Basically, what I want to do is have a map, let's say a map of the UK.  This would obviously be an image.  I'd then like to be able to click areas, let's say each county, to then give me a number of options to pick, let's say towns or cities.  Clicking on those then takes me to a new page with information on.

I understand I probably want to use an image map, but that's about as far as I go, I don't know how to use one or anything of the sort.

So, if anyone could point me in the direction of some good resources on this, that would be hugely appreciated if there's anything I've missed out, let me know and I'll provide more details.Mapedit will be a life saver for this. I used Mapedit which came with a book back in the late 1990s and it is awesome!! I have used the fully functional trial version of it to map out areas of an image with mapped X,Y areas on them for custom navigation bars that are mapped images and this program is SWEET!

Its as easy as selecting the webpage and image you will be mapping and then selecting areas within the image and cropping areas for it to on the fly add the HTML mapping instructions into your original HTML file. When your done and you go back in you can see the added mapping and can tweak it manually if needed. You can also add mouse over info etc.

If you like it you should buy it, but here it is its functional for a specific number of uses and then the trial runs out. It might be 10 different launches of it. If you leave it running and then select more than 1 HTML to edit you can go through a number of pages and add mappings. Upon closing program and launching it again it will tell you how many uses you have left before it no longer works for trial.

http://www.boutell.com/mapedit/Ideally you'd be best to use a proper mapping system with an API such as OpenStreetMap but I presume this is a learning project so you want to work out how to do it yourself?

At a rough thought the way I would do it would be to write some Javascript (most likely using jQuery) that gets the position of the mouse relative to the image when the image is clicked (e.g. the x and y coordinates of the click from one corner of the image) - You could then have some sort of array in memory that stores the coordinates of a clickable area and then next to that stores data about what would happen when you click on that area (e.g. a list of cities).  You would then write some Javascript that handles this and displays the prompts.

Alternatively you could use CSS to float some clear DIVs over the image in the areas that you want to be clickable, you could then set up some Javascript that handles the clicks on these DIVs.It's possible that I've made this sound more complex than it is, apologies - it doesn't need to be an accurate map, it's more for informational purposes.  So, imagine a page where you click on an area of the map, you're presented with a list of some towns and cities in that area (I'd set these...somewhere...it doesn't need to get these from the internet or anything as I only want to list a few locations) and then these towns/cities are just standard links to another page.  It's basically an informational page so that I can present someone with this site and they can click on, say, Yorkshire, and see the areas or cities of interest that I've written a page of info on.  Nothing that hasn't been done before but it's relevant to a friend's interests and I thought it'd make a little project for me, too.

So, I don't think I'm looking to hook into an API or something because that's probably way too advanced for this simple project, but the whole Jquery to get a position and then an array sounds interesting, possibly a little above my current knowledge but it would be a good thing to learn, so I'll probably look into that some more.

Thanks for the info guys, you've given me some direction for my research apologies for my extreme newbiness in this, as I say I am just massively rusty.

892.

Solve : web design for beginners?

Answer»

I'm having a difficulty in creating a web SITE.am a beginner but I wish to create a website & I don't know how.pls can anybody help me out.Are there any books mearnt for me to read.Thanks for your help in advanceBooks galore are AVAILABLE, so many that I  do not want to give a strong recommendation to any ONE of them.  Do a search on Amazon.com or barnesandnoble.com and you'll find many.  I just did a search on Amazon.com, using the phrase how to develop a website.  You might try How to Build a Website and Publish Your First Page in Less Than 5 Minutes: A Step-by-Step Guide to Help You Get Started Right Away.   Note: the "Less Than 5 Minutes" is an exaggeration, of COURSE.  Quote

I'm having a difficulty in creating a web site.
What is your main objective?
Do you have any prior experience that can help?
Is you problem technical or social?
Technical trouble is  if you can not use she tools.
Social problem is when people do not like your site.

The technical thing can be resolve by used easy tools.
But if people just do not like your content, that is a harder to fix.
 
Search the web for:
build a website in one hour
OR
find good social content
So many ways to create a website. So many different ways to host it etc.

Are you going to go with a free webserver with advertising and their domain name or are you going to have your own domain name registered and pay to have it hosted or host it yourself with an apache server in your home and a domain redirect from say godaddy.com to your apache web server?

Are you going to have a static website or interactive features?

Have you ever programmed or deal with HTML before?

Are you going to sell something in which you need e-commerce point of sale functionality?

Are you going to have your own e-mail server associated with your domain such as if its 99RedBalloons as domain name your e-mail might be [email protected]

Do you want to use a WYSIWYG or CODE everything manually when programming your web pages? ( WhatYouSeeIsWhatYouGet = WYSIWYG ... These are for people who have no clue on how to code in HTML and just want basic static web pages. ) *Microsoft office for example has the ability to save documents in HTML format to be as if they are a web page. I seen people use powerpoint for example to make web pages as well as word, and publisher where you can drag a picture to where you want it and add text boxes and type in information and then save it in HTML format so that it can be uploaded to a web server location with a FTP tool and be online for others to check out. These pages though lack features like forms where information can be entered and passed to a database.

Do you need a database linked to this for member registration or point of sale or information lookup and or entry by visitors?


So many more questions... but this covers a lot of them.
893.

Solve : Content Stays Centered on web page.?

Answer»

Hi, I know this must extremley easy and really stupid question.
I am trying to build a web PAGE where the content always stay centered no matter how you have your webbrower.
I would LIKE: BLANCK space/ then the content/blanck space. But the content is always to stay centered; here is an example of excatly what I want, just find the code that was USED to make that HAPPEN. I use DreamWeaver CS3 by the way.
http://www.keepgreenvillebeautiful.org/

Question are:
How to keep content centerd
does each piece need to be its own table?
Thank you
Goto View HTML or whatever its called for Dreaweaver and add this:
Code: [Select]<p align="center"></p>What ever is put between

and

is centered

Hope this Helps
,Nick(macdad-)Thank you, and thanks for the quick response!Anytime
894.

Solve : webpage suggestion?

Answer»

hello

I am a teacher and need to design a page for my school teacher that counts their extra classes (over TIME classes) and their volunteering hours per week

I need suggestions on how to apply it or the best way to do it 


the basics: the page should contains teachers name, their id numbers, counts how many classes they have on a week and print a weekly report of itI see this wasnt answered and answering now in case this info is still needed. Somehow this one slipped through the cracks without getting answered.

Easiest method for someone who isnt familiar with HTML and hosting a webpage would be tracking all of this in excel and then either daily or weekly save a copy of the worksheet as a HTML document, and then POST it with WS_FTP or another method up to a web host. Then teachers could go tot he site and load a static copy of the spreadsheet in their browser.

This method needs 1 PERSON to input the data to a spreadsheet and save the file as an HTML in office, and then manually upload it as frequently as needed.

If you want a system where teachers LOGON and input there data themselves then you will need a more advanced setup in which you have a database for them to log into and input data. A database option online might be outside of your ABILITIES and you might need to hire someone to set one up for you at a cost etc.

You could even have teachers on a mailing list and they e-mail their info in and one person enters the data into excel spreadsheet and then emails them the update attachment showing all info as an XLS excel document to everyone involved. ( This would make data more private vs able to be seen by all on the web. )DaveLembke,
Good advice. I agree. Do it in a spreadsheet. Then publish it on a web server.
Many spreadsheet programs publish to HTML.
Besides Excel, one could use Libre office.

895.

Solve : Help! Using Wordpress but getting fatal error message!?

Answer»

I can't get a customers website to show up at all and I need it up asap 

I can't EVEN log in to the admin part of page. When I did I went in and updated plugins. Instead of contact form I put in their email address. Didn't do anything major and then this happened. They really need this site up like yesterday.  I've been working for hours on end on this and I can't figure this out for the life of me.  I hope someone can please help!

Here is the error I got when going to the page...


Fatal error: Call to a member function get_page_permastruct() on a non-object in /homepages/15/d265658961/htdocs/diecastmania/wp-includes/link-template.php on LINE 350Could it be that the web server / web host needs to reboot the server?

Were you messing with PHP in which there is an issue/typo at line 350?

Have already read over the WordPress documentation?
https://codex.wordpress.org/
WordPress is WRITTEN in PHP and one would not want to modify it unless thee was a very big resewn. Changes to the presentation are done inside of the WORD press program, not at the source code level.


Have you installed any plugin (like Theme My Login) around the time of this error?

896.

Solve : New here and need serious html help quick?

Answer»

Ok so I have my own computer business and have been working on the website for weeks and found a great css profile and just gave up on my orginal css template, I dont know css that well and was tired of trying to get it to WORK, So I am having better luck (but still having trouble) with this other template I want to use I got from a hosting site.. the link is below

http://www.lutchenpc.vpweb.com/

and here is my awardspace link

http://www.lutchenpc.co.cc/

So how can I get the first to look like the second. I know the images to match up I just dont know how to fix it.

Below is the code Im currently working on that is in my index.html
.
.
.

"http://www.w3.org/TR/html4/loose.dtd">
Lutchen Computer Solutions - Home

http://www.lutchenpc.co.cc. Computers & Technology">








a.userlink {
color: #0000e5;
}
a.userlink:visited {
color: #9644ed;
}
a.userlink:hover {
color: #FFFFFF;
}
font[size="1"] { font-size:10px; }
font[size="2"] { font-size:13px; }
font[size="3"] { font-size:16px; }
font[size="4"] { font-size:18px; }
font[size="5"] { font-size:24px; }
font[size="6"] { font-size:32px; }
font[size="7"] { font-size:48px; }










http://www.lutchenpc.co.cc" galleryimg="no">[/url]
[/url]
[/url]
[/url]
[/url]



Expert Computer Service - Wherever You Need It!
Whether your personal laptop just crashed or you need to configure a small business network, Lutchen Computer Solutions can help. Our team of certified technical professionals can be at your service almost immediately. Bring your SYSTEM to our place or we'll come to you!
We specialize in:
  • Repairs
  • Upgrades
  • Networking
  • Emergencies
  • System Set-Up
  • Virus Detection and Recovery
  • Security and Performance
  • Hardware/Software SALES

With technology getting more and more advanced, you need a reliable computer service partner you can trust. Lutchen Computer Solutions would be pleased to be your technology partner.
Please call US today for a quote! Ask about our FREE Performance Analysis.














I am making progress I just dont understand why not all my images are xed out?Are you sure all your images have been transferred and are in the correct directories?How can I tell?Filemanager? What administration control panel does your host offer?
897.

Solve : How do I use select/option with menu to change screen elements??

Answer»

I'm using Microsoft Access. I'm able to (using Dreamweaver CS5) populate a select/option properly. Once selected I want to further populate other display items: once "John Smith" is selected I want to be able to display his address and TELEPHONE number; when I select "Joe BLOW" I want to display his address and telephone number.(without a page reload)

How do I do so?Examples would be great. Showing me how that is done ENTIRELY in Dreamweaver would be excellent!

Thank you.This is the sort of thing that sounds like it would be easy but is actually somewhat complicated and almost certainly beyond the scope of Dreamweaver.  At the very least you would need to use Javascript to show/hide the appropriate elements BASED on the name selection, however this would require user details to be loaded into the page at load and then hidden which isn't great from an efficiency perspective.  The correct way to do this without reloading the page would be to use AJAX so your Javascript frontend can get data from the backend server without reloading the page.  When the user selects a name you make an AJAX request to some sort of server backend to get the address.etc which you would then display on the page.Yes, I was trying to avoid a reload of the page. If the .value of the select/option is an index into the database and I have an onchange event handler to some function in the header section then I should be able to use that index to read into the database, then dissect the record and then to display what I need, such as
            address.value= database record ("address")
and likewise for telephone.value

Although cumbersome that should work, no? If so then I should be able to pound the appropriate code into Dreamweaver's code view pane? If that works I will have to file that as a new definition of "kludge"!(I've been trying to get this *censored* thing to work for over a month and I am frustrated beyond belief. :-( How do you populate a RecordSet within an Onchange event on an Access database? Once I read the record into a RecordSet I can dissect it as needed. Any HELP? Examples would be wonderful!)

898.

Solve : Can't get my menu horizontal?

Answer»

Hi, here I am with my next problem:
I can't seem to get my images next to each other.
I WANT the menu to adapt at different screen sizes so I want it to be width="100%"
I got 8 taps so that's 12.5% per tap
so I tried this:
CODE: [Select]<table>
<th>
<a href="/index.html">
<IMG width=12.5% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
</th>
<th>
<a href="/biografie.html">
<IMG width=12.5% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
</th>
<th>
<a href="/programma.html">
<IMG width=12.5% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
</th>
<th>
<a href="/uitslagen.html">
<IMG width=12.5% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
</th>
<th>
<a href="/fotoalbum.html">
<IMG width=12.5% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
</th>
<th>
<a href="/gastenboek.html">
<IMG width=12.5% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
</th>
<th>
<a href="/krantenknipsels.html">
<IMG width=12.5% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
</th>
<th>
<a href="/page4.html">
<IMG width=12.5% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttonactief.png">
</a>
</th>
</table>

But it won't work

Can't seem to find why tried td too no luck it just resises the img but it keeps the pixel with of the full image as with of the td or th

Can anyone help me?

Thanks in advance

Jonas Dont need the Table you can just resize them, down to 11% each, you have to COMPENSATE for the margins on each side.

try this:
Code: [Select]<p align="center">
<a href="test.html">
<IMG width=11% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
<a href="/biografie.html">
<IMG width=11% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
<a href="/programma.html">
<IMG width=11% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
<a href="/uitslagen.html">
<IMG width=11% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
<a href="/fotoalbum.html">
<IMG width=11% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
<a href="/gastenboek.html">
<IMG width=11% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
<a href="/krantenknipsels.html">
<IMG width=11% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttoninactief.png">
</a>
<a href="/page4.html">
<IMG width=11% src="http://i696.photobucket.com/albums/vv330/willemwauters/Buttonactief.png">
</a>
</p>
Hope this Helps
,Nick(macdad-)Horizontal menus are usually done with the tag.

http://webdesign.about.com/od/css/a/aa082304_2.htm
http://css.flepstudio.org/en/css-tutorials/horizontal-menu.html
http://www.dynamicdrive.com/style/csslibrary/category/C1/Yeah, but both of your solutions aren't really solving my problem, the problem is it needs to resise them automaticly (with use of the %).
And Nick I don't think your method will work. It will just give a vertical menu.
Still thanks for the help I MIGHT have found something in one of the link, I'll check if I can use the % in combination with that method.

Jonas no it gives a horizontal menu, but HECK...and besides, you cant use the full 12.5% on each of the pictures, you have to take into consideration the margins of the page.What you should do is set a fixed width (like you have, i.e. 12.5%) but leave the last without a fixed width. This will resize the last cell automatically.

899.

Solve : "PowerPoint" was unable to display some text?

Answer»

After running a custom Windows Update a few days ago, I am now receiving an error message when opening various PowerPoint files: "PowerPoint" was unable to display some of the text, images, or objects on slides in the file, "filename," because they have become corrupted. Affected slides have been replaced by blank slides in the presentation and it is not possible to recover the lost INFORMATION. To ensure that the file can be OPENED in previous versions of PowerPoint, use the Save As command and save the file with either the same or a new name." When I click OK, the file opens and it appears that all of the text slides have text BOXES with white backgrounds where in the ORIGINAL versions the backgrounds were clear. I am unable to change these and the application stalls when I try to modify. I tried Detect and Repair and this did not solve the problem. I tried opening the files on other computers, and the same error message occurred.  I am afraid to open other files that I need to use to create new presentations.

I have Windows XP Pro, and the version of Office /PowerPoint is 2003, SP3
Quote

custom Windows Update

Where did you get this from, and why patch beyond microsofts final patches to SP3?

Have you run a virus scan to SEE if you have anything going on virus or malware related?
900.

Solve : user input and background color (html)?

Answer»

hi is there a way of making variables in html and can it have USER input so you type a color in the input box you click ok and the background changes to that color that they just typed into the input box
JavaScript can do it.


<html>
<head>
  <script type="text/javascript">
  function changeBG()
  {
    var bgcolour = document.getElementById('COLOUR').VALUE;
    document.body.style.backgroundColor = bgcolour;
  }
  </script>
</head>

<body>
  <input type="text" id="colour" />
  <input type="submit" value="Change BG" onclick="changeBG()" />
</body>
</html>


The input field will accept common colour names, RGB values, and HEX values. Unfortunately, if the user has JS disabled, then this won't work, but HTML can't do it on its own.