Global Domains International

.WS Services => WebSite Development => Topic started by: Nicole Taylor on August 31, 2005, 03:22:18 PM



Title: HTML Questions? Ask Here!
Post by: Nicole Taylor on August 31, 2005, 03:22:18 PM
Hello,

Please use this section to post all HTML questions. Before submitting, read through the posts to make sure your question hasn't already been answered.

Thank you,

Nicole


Title: Re: HTML Questions? Ask Here!
Post by: Nicole Taylor on September 01, 2005, 11:32:26 PM
Hello,

Hypertext Markup Language (HTML) is the language in which all pages on the Web are written.

Below is a list of basic HTML tags and their descriptions. I hope you all will find this helpful in building your Websites.

<HTML> </HTML> - Identifies the file as an HTML document to the program opening it.

<HEAD> </HEAD> - Identifies the document’s head area, where you can code information about your document, including its title.

<TITLE< </TITLE> - Formats the documents title, which appears in the browser’s title bar.

<BODY> </BODY> - Identifies the document’s body area, which contains the Web page contents that appear in the browser’s window.

<BR> - Adds a line break; does not require a closing tag.

<P> - Adds a blank line before and after the current paragraph; does not require a closing tag.

<CENTER> </CENTER> - Horizontally centers the enclosed text or image.

<U> </U> - Adds underline format to text.

<STRONG> </STRONG> - Adds bold format to text. NOTE: Do not use the <B> </B> tags for bold because not all browsers will interpret.

<EM> </EM> - Adds italic format to text. NOTE: Do not use the <I> </I> tags for italic because not all browsers will interpret.

For highlighting text, you would use the following tags:

<span style="background-color: #FFFF00">Your Text Goes Here</span>

The #FFFF00 you see above is the value for yellow. To view all HTML color names see http://webmonkey.wired.com/webmonkey/reference/color_codes

<A> </A> - Marks the beginning and end of a hypertext link.

<A HREF="URL

Example: <A HREF="http://www.mywebsite.ws">Click Here</A>

To open your Website in a different window use the following:

<A HREF="http://www.yourwebsite.ws" TARGET="_blank">Click Here</A>

<IMG> - Used to insert an inline image in the document.

<IMG SRC="Document - The source of the inline image

<IMG BORDER="Value – The size of the border around the image, in pixels.

<IMG HEIGHT="Value – The height of the image in pixels.

<IMG WIDTH="Value – The width of the image in pixels.

<IMG HSPACE="Value – The amount of space to the left and right of the image, in pixels.

<IMG VSPACE="Value – The amount of space above and below the image, in pixels.

Example: <IMG SRC="image.jpg" Width=200 Height=60>

<FONT> </FONT> - Used to control the appearance of the text it encloses.

<FONT COLOR="Color – The color of the enclosed text.

<FONT SIZE="Value – Size of the font on a seven point scale. (1 is smallest, 7 is largest). Specifying SIZE=5 sets the font size to size 5 on the scale.

Example: <FONT COLOR="#FF0000" SIZE=3 FONT=Times New Roman>Global Domains International</FONT>

Nicole

HTML Second Edition, Reding/Vodnik 2001


Title: Re: HTML Questions? Ask Here!
Post by: Nicole Taylor on September 01, 2005, 11:38:44 PM
How do you put in the GDI calculator on a Web page?

Answer submitted by RodB.

This is a bit complex. You need to put GDI's PopupCalc script in the top of the HTML of your page or a link to an offpage javascript .js page containing the script. Technically an offpage script is better and far more elegant.

Then code like this should do it:-
<a title="Income Calculator" href="javascriptopupCalc('http://website.ws/kvmlm2/st_calculator.dhtml', '', '');"><img height="100" src="http://images.website.ws/kvmlm2/images/calc_small.gif" width="110" border="0">


Title: Re: HTML Questions? Ask Here!
Post by: Nicole Taylor on September 01, 2005, 11:48:25 PM
Question submitted by Deborah H.

Hi,
The html for the movie I asked for and someone was so kind  to post for me was deleted from the forum.
So I don't have it to go back to and use on my site.
Would the fellow that posted the html (or anyone else who has it), please re-post it?
I "really" want that on my site.
Thank you VERY MUCH!!   

Answer submitted by RodB.

Should be

<center><a href="http://website.ws/kvmlm2/_show.dhtml?speed=high&sponsor=USERID"><img src="http://images.gdi-invitation.ws/kvmlm2/images/cover_big.gif"></a></center>


Title: Re: HTML Questions? Ask Here!
Post by: Nicole Taylor on September 02, 2005, 12:06:11 AM
Question submitted by KLopez.

I have a question. How do I put my voice on my website? I would like to record my voice and put it on there - welcoming people to my page or something but I'm not sure how to do it. I've seen a few pages that have that up but I have no idea how I would do that.

Also, how can I get my movie presentation to show up on my website? I have seen several peoples websites and they have this on there also.

Thanks in advance for your help.

Answer submitted by Jim Stanger.

To add a clickable link to a WAV file on your website:

First, remember where you placed your sound file. Organization is key when making a website. Feel free to place your sound files in a "audio" directory, your images/pictures in an "images" directory, etc. That makes it much easier to refer to them when building a page with HTML (or, I assume, using the SiteBuilder, although I haven't used that.) Next, insert this HTML in the area you want to include the link:

<a href="directoryname/filename.wav">Click To Hear My Introduction</a>

...where "directoryname" is the directory your sound file is in, and "filename.wav" is the name of the sound file. If the file is in MP3 format than the extention would be ".mp3" instead of ".wav". If you uploaded your sound file to the root level of your website (that is, not in a directory created by you) then you'd leave the directory name out of the portion in quotes.

Hope this helps!


Title: Re: HTML Questions? Ask Here!
Post by: JeremiahB on September 03, 2005, 12:56:16 PM
...where "directoryname" is the directory your sound file is in, and "filename.wav" is the name of the sound file. If the file is in MP3 format than the extention would be ".mp3" instead of ".wav". If you uploaded your sound file to the root level of your website (that is, not in a directory created by you) then you'd leave the directory name out of the portion in quotes.

EXACTLY how do I know my directory name (I know... newbie question!)
Thank you!


Title: Re: HTML Questions? Ask Here!
Post by: KLopez on September 07, 2005, 08:15:49 PM
I tried that html that was posted about by Rod and that is not the red ferrari movie- it's the one where the man and woman talk but it's just flashing on my page.. anyways, please can someone post the red ferrari html code ?? I really would like to put it on my site. Thanks.


Title: Re: HTML Questions? Ask Here!
Post by: Jim Stanger on September 11, 2005, 06:11:23 AM
...where "directoryname" is the directory your sound file is in, and "filename.wav" is the name of the sound file. If the file is in MP3 format than the extention would be ".mp3" instead of ".wav". If you uploaded your sound file to the root level of your website (that is, not in a directory created by you) then you'd leave the directory name out of the portion in quotes.

EXACTLY how do I know my directory name (I know... newbie question!)
Thank you!

When you organize files on your own Windows computer you create a heiarchy of folders (also called directories) to store them in, correct? You can do the same thing with your web space. When you login to your web server via an FTP program (such as Filezilla) you see only one folder with the name of your domain...click on that and you are now in the "root" or bottom-level directory. Every file you put there will be accessed on the web by typing:

http://www.yoursitename.ws/yourfile.html

When you organize web content in directories the web address changes depending on the name of the directory. If you put all of your digital photos in a directory called "photos" then all of the files files in that directory can be accessed on the web by typing in:

http://www.yoursitename.ws/photos/filename.jpg

If you want to organize them further into vacation photos and business photos create seperate directories to put them in. To make it easy I'll call those new directories "vacation" and "business". So files in those directories are accessed on the web with:

http://www.yoursitename.ws/photos/vactaion/filename.jpg
http://www.yoursitename.ws/photos/business/filename.jpg

Probably more than you were looking for, but it makes a good overview for those really new to how websites work.

Cheers,

Jim


Title: Re: HTML Questions? Ask Here!
Post by: Charles Lund on September 18, 2005, 11:22:55 AM
 
Is there a way to load my website using a word document? I have "wrtten" a company profile that outlines my company and the links to associate sites. I have tried to copy and paste, with no luck. Do I have to retype all of it in HTML?
Any guidence would be appreciated. 

chuck


Title: Re: HTML Questions? Ask Here!
Post by: Nicole Taylor on September 18, 2005, 11:28:03 AM
I think this might be an HTML issue, so I guess this is the thread to ask.  My website is still a work in progress, but I've found some of my pages do not display correctly in Firefox, and I can't figure out why.  I've looked and looked until my eyes are crossed.  I'm a newbie to sitebuilding.  Anyway, my website is and I've noticed the following pages do not display correctly for me in Firefox, but they seem fine in my IE window -  - could someone please tell me what's causing it to display incorrectly?  I'm thinking the coding got messed up somehow, but I can't see where, so if you could please be specific that would be great lol - THANKS!!!

Rhonda D

Hello Rhonda,

Please see http://talk.ws/index.php?topic=1745.0

Khristi made a very informative post about why different Web browsers effect your Website.

Nicole


Title: Re: HTML Questions? Ask Here!
Post by: Roxanne G on September 18, 2005, 07:35:42 PM

Is there a way to load my website using a word document? I have "wrtten" a company profile that outlines my company and the links to associate sites. I have tried to copy and paste, with no luck. Do I have to retype all of it in HTML?
Any guidence would be appreciated. 

chuck


Hi Chuck,

When saving your word document, choose file and save as then HTML document.  Then after it is saved, choose view HTML source and copy and paste into your site builder.  If it's too long, you will have to copy and paste in sections.  You will get an error if it's too long. 



Title: Re: HTML Questions? Ask Here!
Post by: Tatjana Prelog on September 18, 2005, 10:22:13 PM
I tried that html that was posted about by Rod and that is not the red ferrari movie- it's the one where the man and woman talk but it's just flashing on my page.. anyways, please can someone post the red ferrari html code ?? I really would like to put it on my site. Thanks.

Kaci!

Use this:

<center><a href="http://website.ws/kvmlm2/_show.dhtml?speed=high&amp;sponsor=YOURUSERNAME"><img alt="" src="http://images.gdi-invitation.ws/kvmlm2/images/cover_big.gif"></a></center>

Tatjana


Title: Re: HTML Questions? Ask Here!
Post by: WilliamBauwens on September 19, 2005, 04:49:03 AM
hi all isnt their a shorter more usefull link to the hosting page than     http://website.ws/index.dhtml?sponsor=belgianbill&action=full&id=328861399634891867972459447932814118481  this points to the green-white pagewich i use more then teh movie sp i would like another shorter link
 can someone help here
greetings from belgium
william
www.myeasybusiness.ws


Title: Re: HTML Questions? Ask Here!
Post by: Tatjana Prelog on September 19, 2005, 05:02:06 AM
hi all isnt their a shorter more usefull link to the hosting page than     http://website.ws/index.dhtml?sponsor=belgianbill&action=full&id=328861399634891867972459447932814118481  this points to the green-white pagewich i use more then teh movie sp i would like another shorter link
 can someone help here
greetings from belgium
william
www.myeasybusiness.ws

Go to www.tinyurl.com [/size][/color]and shorten it to real MINIMUM.

Best wishes!
Tatjana
(sonček)
 :)


Title: Re: HTML Questions? Ask Here!
Post by: WayneE on September 19, 2005, 09:55:32 AM
hi all isnt their a shorter more usefull link to the hosting page than     http://website.ws/index.dhtml?sponsor=belgianbill&action=full&id=328861399634891867972459447932814118481  this points to the green-white pagewich i use more then teh movie sp i would like another shorter link
 can someone help here
greetings from belgium
william
www.myeasybusiness.ws

Bill:

You could try this.  It might be the page you want.

http://website.ws/YOURUSERNAME/hosting

While loading it will re-direct to a much longer url but that should be okay.

Hope this helps.

Wayne


Title: Re: HTML Questions? Ask Here!
Post by: Sean_Braden on September 20, 2005, 04:36:17 PM
I was looking for the information on the 3 min movie that plays when you go to www.my.ws/userid it is actually changed now though.  I am looking for the one with the squeeling car then the people talking.  I want to put the movie on my website and not just have a link to it.  I also want to put the ticket on my site and not a link to it.  if you copy and paste you get some pretty funky results.

Sean


Title: Re: HTML Questions? Ask Here!
Post by: KLopez on September 20, 2005, 08:44:20 PM
I was looking for the information on the 3 min movie that plays when you go to www.my.ws/userid it is actually changed now though. I am looking for the one with the squeeling car then the people talking. I want to put the movie on my website and not just have a link to it. I also want to put the ticket on my site and not a link to it. if you copy and paste you get some pretty funky results.

Sean

I also wanted to put the ticket on my website (the actual movie) but no one seems to understand what I'm talking about or either no one knows. I have seen some .ws websites with these on there though. Currently I have the ferrari movie but I have to fill in a name (Guest)  for it since I dont know the rest of the html code for the ticket (where the prospects fill in their own name on the ticket) I hope someone can help you out here b/c I've been trying to figure this out and no one seems to know. 


Title: Re: HTML Questions? Ask Here!
Post by: GarySmathers on October 17, 2005, 06:25:49 AM
I had no problems with my first site, which was only one page, except that the pictures do not appear in the published version. Small problem, and if you have some assistance for that GREAT. My big problem is that my second site, 5 pages, initially comes up perfectly. However, within hours or at least within one day, when I visit the site you can only see the first page. When additional pages are clicked on to view it shows the Site Builder logon page and login. Do you know why this may be happening, or what I can do to correct?  Thanks,Gary


Title: Re: HTML Questions? Ask Here!
Post by: JulianSnare on October 21, 2005, 04:08:22 AM
Hi can anyone help, I am having trouble with viewing the movie presentation I get a blank screen ??? It worked a week ago.
I am at a total loss. Many thanks Julian


Title: Re: HTML Questions? Ask Here!
Post by: JeffG on October 30, 2005, 02:54:46 PM
I want to add the income calculater to my site, where can I get a copy of the script?


Title: Re: HTML Questions? Ask Here!
Post by: Michael D1 on November 07, 2005, 05:30:53 AM
Ok I am sorry for such a newbie question.   
I am creating my website on Macromedia Dreamweaver.   It practically writes all the code for you.   After I uploaded all the different things to the server (I selected hosting when I started)    it is showing the work I did on the website builder and not what I created in the Macromedia Dreamweaver program.

Not only that, I am completely lost when Globals email said there must be an index.html page?   How come I can't find exactly what this consist of?


Title: help with putting Page Links on my Webpage
Post by: CarrieWright on November 20, 2005, 06:21:25 PM
Hello this is my first time on the GDI forum

Can anyone tell me how to set up my Webpage so that there are Page Links running down the Left hand side of the Webpage

Currently the page Links are at the top of the page which is fine but I would prefer that they were on the left hand side

would really appreciate this tip

thanks
Carrie - Canberra Australia


Title: Re: help with putting Page Links on my Webpage
Post by: Dennis F on November 20, 2005, 09:56:43 PM
Carrie,  I do not know if publisher has a pre-configure to put page links at side.

But you could add you own,(This is an Example to write a new Page with HTML page links)     
Create New page, Preference(2 column),Edit Page,  Now on Design Page you can Type in Anything you want to point to page2,page3,page4 I will use these for example...Finish Designing "Page Numbers individualy"  Page 2  Use the buttons to change type, color, highlight, boldness then do the same for Page 3

After doing this Carrie, you can view the HTML that shows code written for your pages Now all you need to do is turn them into a link for each Page link you created.
Example of Code before changing to link: <p><font color="#3366ff"><strong>Page 2</strong></font></p> 
                Code after changing to link:  <a href="http://www.yoursite.ws/page2.html"><font color="#3366ff"><stron>Page 2</strong></font></a>

Notice The changes you have to make for each Page link you create in Bold
This may be the Long Hand way of doing it with Publisher.........Does anyone else have a quicker Idea...Rob???  lol    O.k. Carrie  I hope this helps....it can be done.


Title: Re: help with putting Page Links on my Webpage
Post by: CarrieWright on November 21, 2005, 04:32:51 AM
thanks Dennis

but this seems a bit confusing and complicated to me, me being a total novice as far as webdesign goes

 - does anyone have an easy answer?  I'm sure I have seen a .ws website with page links on the left hand side

cheers
Carrie


Title: Re: help with putting Page Links on my Webpage
Post by: MarkConley on November 22, 2005, 04:32:29 PM
I'm also new to GDI and although I have a 30 year technical background in the aerospace industry and thought building a web site was child's play...I can't seem to put the pieces together either. GDI member Gary Cooper has an excellent site (http://www.garycooper.ws) that I would like to use as a template but when I simply attempted to copy and paste a banner code onto my site the banner itself does not replace the "code" words.

Part of my marketing plans include advertising the simplicity of building your own web site...even for teenagers. If I can't build my own web site quickly, I can't promote GDI effectively.

In lieu of having to search the forum for tips and tricks every time I run into a "snag" I would like to propose GDI set up a weekly training call for "beginners" where we can build a web page by following along with a trainer on line while they provide step-by-step directions.

What does everyone else think?  This would be very helpful, especially for those like myself who more than likely are suffering from advance stages of A.D.D. or Altzheimers.


Title: Re: HTML Questions? Ask Here!
Post by: Allen L on November 22, 2005, 07:40:49 PM
Quote
I want to add the income calculater to my site, where can I get a copy of the script?

Here's the URL to the income calculator: http://website.ws//kvmlm2/st_calculator.dhtml

Hope this helps.

-allen


Title: Re: help with putting Page Links on my Webpage
Post by: CarrieWright on November 27, 2005, 05:08:25 AM
I think that this is a great suggestion

cheers
Carrie


Title: Re: help with putting Page Links on my Webpage
Post by: HelenR on December 01, 2005, 12:47:46 PM
CALLING ALL NOVICES TO BUILDING WEBSITES, Great suggestion from Mark Conley
That is the best suggestion i have heard ever. Im a total novice, & think a weekly (or fortnightly) training session for beginners is ideal. We should all get together & put forward this request to GDI's head department. I have noticed that there are alot of beginners like us involved with GDI & not everyone that joins has knowledge of building websites. Some of us have even no experience at all when it comes to PC's in general.  Also, instructions are sometimes not very clear or not explained in detail, & examples are rarely given, so that we may be able to follow easily. Having a training session would solve all these problems.
 We could be trained in:
1)   step by step easy instructions on how to build  pages from scratch, with examples of each. (& tell us all that can go wrong & how to fix it)
2)   HTML tags & codes (put in simpler terms, than how tutorials explain it)
3)   how to upload files properly & the coding  & jargon involved.(& give examples)
4)  Why & how some problems happen & how to avoid them/solve them.(trouble-shooting guides)
5)  How we can put links on our pages.
Plus more....
You have my 100% support for your suggestions. Im sure there are many others that agree. Calling all you novices out there, please come & lend your support behind this, im sure building a website can be easily acheived by all, with a training session designed especially for us!!
Warmest Regards,
Yours in health, wealth & happiness,
Helen. R.


Title: question
Post by: JackieStover on December 08, 2005, 07:33:07 AM
my question is how do you get the small tabs at the bottom of the web pages for terms of use and policies to install in to your pages?


Title: Re: question
Post by: RodB on December 09, 2005, 12:24:18 AM
I don't really understand the question. I assume you want to put links at the bottom of the page.
This is relatively simple to do with an <a href="http://www.yourwssite.ws/somepage.html">Some Page</a>tag. The simplest way is to put a table with a whole row of cells and one a href tag in each cell. You can make it more spiffy with a graphic in each cell.


Title: Re: question
Post by: JackieStover on December 09, 2005, 02:38:29 AM
im going to redirect my question (hyper link
ok let me resubmit my question it called a hyperlink can we install hyperlinks in to our web site and how


Title: Re: question
Post by: RodB on December 09, 2005, 08:24:39 AM
Yup a hyperlink is an a href tag as laid out above :D


Title: Opening a new page
Post by: S_Livingston on December 12, 2005, 05:29:17 PM
Hi all

Just a couple of questions, firstly how do I get my pages to open a new page rather than changing the page they are in (ie if I am on my page and click on a link my website dissapears). please help :)

also is there any way to get the links to my other page down the left or right instead of at the top, I know you can do this is you use the gamer backgrounds but would like to use the other backgrounds, is this possible?

Cheers, scott


Title: Re: Opening a new page
Post by: RodB on December 14, 2005, 07:39:05 AM
Hi Scott,

Use the target= attribute of the a href tag.

for example <a href="http://www.mysite.ws/somepage.ws" target="_blank">Some Page</a> will open a new page.

WRT your second question there are lots of ways to this. In its simplest form either a table or a div tag should sort this out

:)


Title: HELP!!!!! I NEED IMMEDIATE HELP!!!!!
Post by: Tatjana Prelog on December 24, 2005, 03:05:35 AM
Dear GDI-ers!

Now I need immediate help as the support department is off for the whole weekend!

I had created the tittle page of my websites long ago and I wanted to add a banner - not from GDI, but mine one. I've done something with the HTML code in HTML editor in sitebuilder and all my page is gone except the so called banner (which doesn't work) remained. The trouble is that the button EDIT doesn't work and I cant reverse the things I've done.

HOW WOULD I BE ABLE TO REVERSE THE THINGS AND BE ABLE TO EDIT THE PAGE AGAIN!!!


PLEASE HELP ME AS I WOULD LIKE TO FINISH THIS TODAY!

Thank you very much!!!!

Tatjana
(sonček)
 :)

P.S I see that this was merged with HTML QUESTIONS but this is basically not related with HTML codes but it CONCERNS SITEBUILDER ITSELF. WE HAVE NO OPTION TO UNDO OUR WORK IF WE'RE NOT SATISFIED WITH IT OR IF SOMETHING WENT WRONG LIKE THIS WAS IN MY CASE and I've put it in SEPARATE TOPIC because I NEEDED IMMEDIATE HELP! Now it has no use anyway ... THANK YOU!

Tatjana


Title: Re: HTML Questions? Ask Here!
Post by: C_Halagueńa on December 27, 2005, 04:26:31 AM
I wanted to put a message board on my site but dont know code for that.


Title: Website Developement
Post by: LynT on December 28, 2005, 05:09:52 PM
I just want to use my site to advertise the GDI opportunity.  How do I set this up?   I know nothing about html etc..    Please help! ??? ???


Title: Re: HTML Questions? Ask Here!
Post by: AMinnis on December 31, 2005, 02:38:37 AM
I tried that html that was posted about by Rod and that is not the red ferrari movie- it's the one where the man and woman talk but it's just flashing on my page.. anyways, please can someone post the red ferrari html code ?? I really would like to put it on my site. Thanks.

Kaci!

Use this:

<center><a href="http://website.ws/kvmlm2/_show.dhtml?speed=high&amp;sponsor=YOURUSERNAME"><img alt="" src="http://images.gdi-invitation.ws/kvmlm2/images/cover_big.gif"></a></center>

Tatjana

When I use the above it never works.
What is <center><a gref
How can I make it fit and still get the same effects.
Thanks


Title: Re: HTML Questions? Ask Here!
Post by: ColinM on January 02, 2006, 08:14:35 PM
Hi to all Wise Clever Ones,
Urgent help is needed here.
My business, that I have just started takes input from my website.
Because GDI was reasonably priced and offered so much extra I thought I was doing the right thing by signing up here a few months ago. Website built, finally resolved after a few prob's, no worries.... I thought.
However my site has a form that needs to be filled in by anybody that makes a purchase. It is not your usual form whereby the submitter then qualifies for all sorts of crap from any direction available to an autoresponder, it is a form that I need the answers from in order to send them the product they have just bought, it cannot be sent to an autoresponder.
This form consists of name/address/email/phone and other, input boxes, (and there are seven of them that need completing),
also, radio buttons to indicate choices and finally a text box.
I need all this info delivered to me in order to do the work. However when the Submit button is actioned it simply opens up Outlook email creation and does not send me the form nor the results of the form.
I am now desperate. I have enquired at support and they inform me that Frontpage Extensions are not installed, so thats one method down the tubes.
Any suggestions to resolve this problem would make me eternally grateful, in fact so grateful that the problem solver that gets the form working I will GIVE them Option 2 from the Options page on my site.
I guess now you have to go there to find out what it's all about. Unfortunately you will not be able to access the form but you can at least see what you could get if you solve the problem so go to
www.familytreesandbranches.ws

Grateful thanks in anticipation,
Colin.


Title: Re: HTML Questions? Ask Here!
Post by: ColinM on January 02, 2006, 08:14:35 PM
I tried that html that was posted about by Rod and that is not the red ferrari movie- it's the one where the man and woman talk but it's just flashing on my page.. anyways, please can someone post the red ferrari html code ?? I really would like to put it on my site. Thanks.

Kaci!

Use this:

<center><a href="http://website.ws/kvmlm2/_show.dhtml?speed=high&amp;sponsor=YOURUSERNAME"><img alt="" src="http://images.gdi-invitation.ws/kvmlm2/images/cover_big.gif"></a></center>

Tatjana

When I use the above it never works.
What is <center><a gref
How can I make it fit and still get the same effects.
Thanks

If you try <align=centre><A href="http..........whatever......></A>
it should be fettled.
Good Luck
Colin.


Title: Re: HTML Questions? Ask Here!
Post by: RodB on January 05, 2006, 01:20:41 AM
I suspect the problem is the &amp; in the above URL should be just plain &

So it should be <center><a href="http://website.ws/kvmlm2/_show.dhtml?speed=high&sponsor=USERID"><img alt="" src="http://images.gdi-invitation.ws/kvmlm2/images/cover_big.gif"></a></center>


Title: Re: HTML Questions? Ask Here!
Post by: RodB on January 05, 2006, 01:22:30 AM
Hi to all Wise Clever Ones,
Urgent help is needed here.
My business, that I have just started takes input from my website.
Because GDI was reasonably priced and offered so much extra I thought I was doing the right thing by signing up here a few months ago. Website built, finally resolved after a few prob's, no worries.... I thought.
However my site has a form that needs to be filled in by anybody that makes a purchase. It is not your usual form whereby the submitter then qualifies for all sorts of crap from any direction available to an autoresponder, it is a form that I need the answers from in order to send them the product they have just bought, it cannot be sent to an autoresponder.
This form consists of name/address/email/phone and other, input boxes, (and there are seven of them that need completing),
also, radio buttons to indicate choices and finally a text box.
I need all this info delivered to me in order to do the work. However when the Submit button is actioned it simply opens up Outlook email creation and does not send me the form nor the results of the form.
I am now desperate. I have enquired at support and they inform me that Frontpage Extensions are not installed, so thats one method down the tubes.
Any suggestions to resolve this problem would make me eternally grateful, in fact so grateful that the problem solver that gets the form working I will GIVE them Option 2 from the Options page on my site.
I guess now you have to go there to find out what it's all about. Unfortunately you will not be able to access the form but you can at least see what you could get if you solve the problem so go to
www.familytreesandbranches.ws

Grateful thanks in anticipation,
Colin.


You need a script and a cgi directory to do this.  Take a look at http://talk.ws/index.php?topic=3185.0


Title: Re: HTML Questions? Ask Here!
Post by: Jeremy Jones on January 15, 2006, 07:23:17 AM
I am having trouble transfering banner ads to my website.  The code shows up, but not the actual banner when I try to copy and past the content.  Any ideas as to what I may be doing wrong?


Title: Re: HTML Questions? Ask Here!
Post by: RodB on January 16, 2006, 12:24:46 AM
Did you paste the code using the HTML tab in the builder.


Title: HTML look it's easy
Post by: Matthew Green on January 18, 2006, 01:19:04 AM
I want you to copy the below HTML into your HTML Editor.

Paste the HTML between the <body> </body> tags in your HTML Editor, you should see a Box with a link to my GDI Home Page.
(http://mg247.ws/image/misc/box1.jpg)
(if you drag the mouse over the HTML BELOW until it is all selected, whilst selected press CTRL + C to copy, then Paste to a TEXT DOCUMENT using CTRL + V. This will remove TEXT FORMATTING. You now need to re-copy the HTML you just made in the TEXT FILE.).
 
Code:
<table width="840" border="3" cellspacing="0" cellpadding="20" class="none" height="1" bordercolorlight="#99CCFF" bordercolordark="#333399" bgcolor="#FFFFF7">
<tr valign="top"><td width="798" height="97" bordercolorlight="#99CCFF" bordercolordark="#333399">
<div align="center">
<p align="center"><font size="6"><font color="#cc0000">THIS SITE IS MEANT AS A</font>
&nbsp;</font></div>
<div align="center">
<p align="center"><font size="6">
<font color="#cc0000">DEMONSTRATION OF WHAT</font> &nbsp;</font></div>
<div align="center">
<p align="center"><font size="6"><u><b><blink><font color="#CC0000">YOU</font></blink></b></u> <font color="#cc0000" size="4"> CAN DO
WITH</font>&nbsp;</font></div>
<div align="center">
<p align="center"><font size="6"><a title="Get my own WEB DOMAIN + E-Biz NOW" href="http://www.website.ws/USERNAME/show" target="_self"><strong><u><b><font color="#0000FF" size="6">YOUR
OWN WEB DOMAIN</font></b></u></strong></a><strong>&nbsp;</strong></font><strong><font color="#ff0000" size="5">(username)
USERNAME</font></strong></div>
</table>

<a title="Get my own WEB DOMAIN + E-Biz NOW" href="http://www.website.ws/USERNAME/show" target="_self"><strong><u><b><font color="#0000FF" size="6">YOUR
OWN WEB DOMAIN</font></b></u></strong></a>

The HTML Hilighted in BLUE is for the BLUE HYPERLINK (YOUR OWN WEB DOMAIN )  in section a

<p align="center"><font size="6">  this is the default FONT SETTINGS FOR THE PARAGRAPH and is not essential, but
<p> + </p> = Paragraph START / FINISH
 
align="center" or "left" "right"  "etc etc"
 
<a> </a>  = Address START / FINISH
 
<a title="Get my own WEB DOMAIN + E-Biz NOW"  this section gives the URL a name and when hovering over the link with Mouse Pointer will be displayed for a short time (be aware that the title is only revealed when the Page is ONLINE, either PREVIEWED or UPLOADED).
href="http://www.website.ws/USERNAME/show"  this section is the actual URL (target location, page accessed when a person clicks on the link) and in the example is my GDI Cheque Link

target="_self" this section tells the browser how to open the link, be it a new Window, Frame, Same etc etc.  I believe a common Marketing mistake is to have clicks opening in a new window because the average browser prefers to be able to just go Back + Forward, not from Page to Page or Tab to Tab, but if the Page is meant for Traffic Exchanges or HTML Emails etc it is best to open in new window. YOU CHOOSE

_self  = same frame/window
_top  = Full Screen
_blank  = NEW WINDOW
 
the last section determines what the LINK LOOKS LIKE.
<strong><u><b><font color="#0000FF" size="6">YOUR OWN WEB DOMAIN</font></b></u></strong></a>
 
<strong> + </strong> = FONT STYLE
<u> + </u> = UNDERLINED TEXT
<b> + </b> = BOLD TEXT
There are others such as <i> + </i> for italics
 
color="#0000FF"   = FONT COLOUR (hyperlink blue)
 
size="6"  = FONT SIZE
 
YOUR OWN WEB DOMAIN  =  ACTUAL TEXT. Here you can put whatever you want, including objects such as images or buttons, not just text
for a picture for example you would put <img> = </img>
 
example
<a title="" target="_self" href="http://www.website.ws/USERNAME/show"><img  alt="USERNAME - SITE INCOME PLAN" src=http://www.USERNAME.ws/USERNAMElogo.jpg”
 
notice the alt="this is what will appear before the image loads or if the viewer has images blocked"
 
src="this is the address where the image has been uploaded"
 
I have jumped from Subject to Subject I know and my instructions may not be too clear, but my intent is helping you. There is much more to learn, but that is only if you don't know already.

I welcome your contributions here folks.. Oh if this doesn’t make sense please let me know how I can improve it.

Matthew green (mg247)   :)

guys, if you use something similar to the above to train your own Downline you can Introduce them to a few new programmes by changing the HTML to whatevere you want but i thought it would be a bit cheeky to do it here.


Title: HTML Codes for a novice
Post by: IAnthony on January 18, 2006, 08:28:08 AM
Hi everyone, I've been building my web site using the design feature. I know you can put codes into it by pressing the html tab at the bottom. I've already put two banners in. My question(s) is this, and I need it in a step by step instruction please, How do I put a link from one page of my web site to another page on my web site? For example I may have goal setting as a choice to click on and when you click it it will take you to another page called " Goal Setting "
Second question that is similiar is the same question BUT linking to another website. Thanks in advance.  Tony I.


Title: Re: HTML Questions? Ask Here!
Post by: RodB on January 18, 2006, 09:00:01 AM
The simplest way to add a link is to use the following code on your site to link to a page on your site:-

<a href="http://www.yoursite.ws/somepageonyoursite.html">Some Page On Your Site</a>

and to somebody else's site

<a href="http://www.somebodyelse.ws/somepageontheirsite.html">Some Page On Their Site</a>


Title: Re: HTML Questions? Ask Here!
Post by: Rhonda Twitty on February 07, 2006, 12:47:13 PM
Where do i find the link info for the pictures and docs that are in the gallery... I want to use html for better
button options?

Rhonda


Title: Re: HTML Questions? Ask Here!
Post by: C_Skinner on February 10, 2006, 04:19:10 AM
Hi There,
how do you download a GDI banner into a ws. that has it's own hosting? I have tried the code transfer but it does not show as a correct code.

 :)


Title: Re: HTML Questions? Ask Here!
Post by: Matthew Green on February 10, 2006, 06:45:43 AM
Hi There,
how do you download a GDI banner into a ws. that has it's own hosting? I have tried the code transfer but it does not show as a correct code.

 :)
Hello,

This code will work a GDI BANNER

Code:
<a href="http://website.ws/kvmlm2/my.dhtml?sponsor=????"><img src="http://images.website.ws/banners/kvmlm2/468x60_01.gif" border=0></a>

You will need to change the ???? to match your GDI Nick..

BTW the code needs adding to the HTML, not the actual page..

If you are using Front Page just put the cursor where you want the banner and press CTRL + I for Insert, A for Advanced then H for HTML.. paste the code into the window that opens and then click ok..

Your Banner will be there, might not see it until you preview the Page, but it will be there...

If you switch between Normal and HTML view you will be able to see what has happened here, that is if you do a before and after..

There are other POSTS of mine on the subject so please take a look..

Hope this is useful to you..

If you are still strugling after you have tried this just send me a Personal Message (PM) and I will help you..

Regards,
(http://mg247.ws/m3.gif)



Title: Re: HTML Questions? Ask Here!
Post by: RodB on February 18, 2006, 09:23:04 PM
Hi There,
how do you download a GDI banner into a ws. that has it's own hosting? I have tried the code transfer but it does not show as a correct code.

 :)

Go to your control panel, login and then on the left click "banners". Right click on the banners of your choice and save them to your computer using the "save picture as" option and then upload the banner to your hosted site.


Title: Re: HTML Questions? Ask Here!
Post by: E_Ferency on March 06, 2006, 06:57:55 PM
I am having a problem with the Site Builder.  Anything I put in (html wise) appears as html coding on the page.  That includes banners, image references, everything.  I have never had this problem before with other site builders, and am not new to html coding.  But I do know that if I insert a hypertext link or refernce, it's supposed to show whatever, example:

<a title="Get my own WEB DOMAIN + E-Biz NOW" href="http://www.website.ws/USERNAME/show" target="_self"><strong><u><b><font color="#0000FF" size="6">YOUR
OWN WEB DOMAIN</font></b></u></strong></a>

The above snippet of text is NOT supposed to display in the site, but, rather, 'YOUR OWN WEB DOMAIN' instead!  Only the html text shows up on my website, instead of the capitlized link that is supposed to be there.

Any ideas?


Title: Re: HTML Questions? Ask Here!
Post by: RodB on March 06, 2006, 08:21:58 PM
You have to be in HTML mode to add HTML. At the bottom of the clipboard there is an HTML tab which gets you into HTML mode.


Title: Re: HTML Questions? Ask Here!
Post by: Debra S on March 17, 2006, 07:06:28 AM
Hello,

Debra Sanford here and I have a question about adding HTML code to my website. I want to place a page into my site. I have the code but when I place it in the editor a warning sign comes up and it doesn't work

It is an affiliate page for Adland Pro Free Classifieds. Can you help me?

Debra Sanford


Title: Re: HTML Questions? Ask Here!
Post by: Matthew Green on March 17, 2006, 10:54:35 AM
Hello Debra
Hello,
Debra Sanford here and I have a question about adding HTML code to my website. I want to place a page into my site. I have the code but when I place it in the editor a warning sign comes up and it doesn't work
It is an affiliate page for Adland Pro Free Classifieds. Can you help me?
Debra Sanford
I too am a member of AdlandPro so I know which pages you are referring to.
Is the warning sign error122.
Please CLICK HERE (http://talk.ws/index.php?topic=4164.msg11884#msg11884) for further info and possible solutions...

Ok before you dissapear and get enlightened I want you to consider what your Next Move should be when it comes to GDI;
consider this...

    Host your own Website
    [/list]


    Title: Where do I get the Income for Life Picture to Put on My Website?
    Post by: DebraM on March 31, 2006, 12:31:38 PM
    I want to incorporate the picture with all the money and the globes on my website.  Don't know where to get it.  Once I do, do I just put the code into the HTML area?  I'm using Sitebuilder.


    Title: Re: HTML Questions? Ask Here!
    Post by: Gleb_L on March 31, 2006, 02:50:32 PM
    Do you meen this one: http://images.freedom.ws/freedom.ws/images/splash.jpg?
    Maybe you can build this link into your website - but be careful with the copyright. I do not know exactly if you can use it.

    Regards,
    Gleb


    Title: Re: HTML Questions? Ask Here!
    Post by: DebraM on March 31, 2006, 04:49:21 PM
    Thank you.  Actually I meant the one that looks a lot like that, but it's square.  It appears right above the member sign in area on website. ws.  I'll email support and ask if I can use either on my own website.  Do you have the code for the one I'm speaking about?


    Title: Re: HTML Questions? Ask Here!
    Post by: Matthew Green on April 01, 2006, 09:48:08 AM
    Hello Debra,
    Thank you.  Actually I meant the one that looks a lot like that, but it's square.  It appears right above the member sign in area on website. ws.  I'll email support and ask if I can use either on my own website.  Do you have the code for the one I'm speaking about?
    The images you want to use;
    As long as you are using them to Promote GDI I do not think GDI mind...
    To add the image using SiteBuilder you need the Url Address where the Image is being Hosted. Richt Click on the image and select copy image location.
    Go back to your Sitebuilder and click the Add Image icon in the Normal view and then press Ctrl+V to Paste the Image Url into the window.

    It is easy enough to add an image using HTML.
    Insert Image - Template
    Code:
    <img border="in pixelx" src="http://Url of your Image" width="in pixelx" height="in pixelx">
    Insert Image - Working
    Code:
    <img border="0" src="http://mg247.ws/m1.gif" width="80" height="80">
    The above Code will add my Avatar to an HTML Document.
    You will notice the words in pixels have been replaced with numbers but the "" remain in place.
    same applies with the Url of your image.  The Full Url needs to be placed between the ""

    Hope this helps;

    BTW you can add alt="" Tabs to the end of the code to add Text which will replace the Image if it is not loaded by the Browser

    Insert Image - With alt="there should be a picture of me but it has been blocked by your browser"   (you can add any text you want)
    Code:
    <img border="0" src="http://mg247.ws/m1.gif" width="80" height="80" alt="there should be a picture of me but it has been blocked by your browser">


    Title: Getting rid of space between content blocks/Centering
    Post by: DebraM on April 01, 2006, 06:23:16 PM
     >:( :-[ ??? ???
    Either I'm stupid (probably) or Sitebuilder isn't very advanced.  I have a picture at the top of my website.  Underneath it I want - in large print - a centered heading.  Then underneath that I want text that isn't centered in a smaller size.  I also don't want a ton of white space under the picture.  I've tried everything.  If I insert my title under the image from the gallery and then add that content, I can't adjust the size or color of the print and it's tiny.  If I insert the image from the gallery without text with it, then add the text underneath it separately in edit, there's a ton of space under the picture that I can't delete.  Frustrating!

    Also a problem with centering.  If I try to center the title and then uncenter the text underneath, it won't let me do it.  They both have to be the same.  If I try to do it in two separate "add content" blocks, centering the first one and not centering the second one underneath, then I get a ton of space under the first block that I can't delete.
    Help!  I'm disconnecting my computer as my speak and am going to throw it off my balcony! :o :o :o


    Title: Getting rid of space between content blocks/centering
    Post by: DebraM on April 02, 2006, 10:17:41 AM
    Okay.  I figured out the centering part (accidentally, but it works).  But I still can't get rid of all the space under the picture.


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on April 04, 2006, 01:43:46 AM
    Hi DebraM

    I suspect the problem is that the footer component needs to be deleted. I have no idea what the code looks like - can you give us a URL to look at and I am sure it can be fixed.


    Title: Help!!!!!
    Post by: JacobA on April 12, 2006, 09:12:08 PM
    Can someone tell me how I can put my own http codes on my web site builder because it seems to not work.


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on April 12, 2006, 10:17:49 PM
    You have to be in html mode to do this. There is a tab at the bottom of the editor to do this.


    Title: Re: HTML Questions? Ask Here!
    Post by: ArielCarpenter on April 18, 2006, 10:07:34 AM
    Hello,

    Please use this section to post all HTML questions. Before submitting, read through the posts to make sure your question hasn't already been answered.

    Thank you,

    Nicole

    I am not new to HTML, but I am new to WS and it's website builder.  I was going to insert an image from my gallery inbetween some text I had written, but it seems to only let me insert it Under the text and not anywhere on the page I choose.  I know the <img src> tag, but how would I direct that tag to open my image?  Do I have to host the image on a totally different site?  Or is there a link to the images I upload into my gallery!?
    Also, in the HTML tab, I hate that it doesn't WORD WRAP!  I have to keep scrolling down and then scrolling over to see all my words.  Is there a way to fix it, or do I just have to deal with it?

    Thanks, I love this forum!
    Ariel


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on April 18, 2006, 11:23:59 PM
    Hi, You must be able to insert an image anywhere you like in the HTML editor. The problem sounds to me like you are not using the align attribute  of imge src. This would casue the problem you are describing.

    the align attribute values are  ALIGN=top|middle|bottom|left|right

    Sorry I am unable to help on the scrolling issue


    Title: Re: HTML Questions? Ask Here!
    Post by: Lanny C on April 19, 2006, 09:54:51 AM
    For those who want to download your web sites and then rework then in HTML or WYSIWYG formats. Use NVU

    http://www.nvu.com/download.html

    Download to your desk top. Install program. You then copy your URL of your web page and in file "open web location" and paste the URL . Up pops your web page for editing. Save it to your desired created folder then upload it back using it or your own FTP.

    It is also free. Great price.

    I have been using it for about 4 years and it has a lot to offer in tables and clean up, tags, and more.

    HeyLanny


    Title: Re: HTML Questions? Ask Here!
    Post by: DianaMoura on April 28, 2006, 11:01:42 AM
    How do you put in the GDI calculator on a Web page?

    Answer submitted by RodB.

    This is a bit complex. You need to put GDI's PopupCalc script in the top of the HTML of your page or a link to an offpage javascript .js page containing the script. Technically an offpage script is better and far more elegant.

    Then code like this should do it:-
    <a title="Income Calculator" href="javascriptopupCalc('http://website.ws/kvmlm2/st_calculator.dhtml', '', '');"><img height="100" src="http://images.website.ws/kvmlm2/images/calc_small.gif" width="110" border="0">

    hi!
    thanks this is great help and the calculator already apears on my page but when i click it say's page not found  ???
    does it take time to work or did i do something wrong?

    thanks


    Title: Re: HTML Questions? Ask Here!
    Post by: JQuisumbing on May 07, 2006, 09:47:24 PM
    hi... ;D

    i'm not much into html... how can i get a visitor counter in my site?

    johann


    Title: RE: can anyone teach me how to do a pop in or a pop over in my website?
    Post by: DanielKer on May 14, 2006, 08:41:33 AM
    hi all,

    It had being 4 months since i join GDI haha i still have no downlines but i am beginning to get some traffice to my website.. my website is www.home-base-business-opportunity.ws and recently someone told me to build a list instead of building a downline and he suggested to me that using a pop over or a pop in might be pretty useful.

    Anyone know how to do that can teach me?

    From Daniel
    Living in Singapore


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on May 14, 2006, 11:43:42 PM
    hi... ;D

    i'm not much into html... how can i get a visitor counter in my site?

    johann

    Try http://www.extreme-dm.com/tracking/ or www.freestatscounter.com/free-counter.asp


    Title: Re: RE: can anyone teach me how to do a pop in or a pop over in my website?
    Post by: RodB on May 14, 2006, 11:50:13 PM
    hi all,

    It had being 4 months since i join GDI haha i still have no downlines but i am beginning to get some traffice to my website.. my website is www.home-base-business-opportunity.ws and recently someone told me to build a list instead of building a downline and he suggested to me that using a pop over or a pop in might be pretty useful.

    Anyone know how to do that can teach me?

    From Daniel
    Living in Singapore

    Put this just before the </head> tag on your page.
    Of course you must change http://yahoo.com to whatever page you want to display in the popunder.

    <script>

    //specify page to pop-under
    var popunder="http://yahoo.com"

    //specify popunder window features
    //set 1 to enable a particular feature, 0 to disable
    var winfeatures="width=800,height=510,scrollbars=1,resizable=1,toolbar=1,location=1,menubar=1,status=1,directories=0"

    //Pop-under only once per browser session? (0=no, 1=yes)
    //Specifying 0 will cause popunder to load every time page is loaded
    var once_per_session=0

    ///No editing beyond here required/////

    function get_cookie(Name) {
      var search = Name + "="
      var returnvalue = "";
      if (document.cookie.length > 0) {
        offset = document.cookie.indexOf(search)
        if (offset != -1) { // if cookie exists
          offset += search.length
          // set index of beginning of value
          end = document.cookie.indexOf(";", offset);
          // set index of end of cookie value
          if (end == -1)
             end = document.cookie.length;
          returnvalue=unescape(document.cookie.substring(offset, end))
          }
       }
      return returnvalue;
    }

    function loadornot(){
    if (get_cookie('popunder')==''){
    loadpopunder()
    document.cookie="popunder=yes"
    }
    }

    function loadpopunder(){
    win2=window.open(popunder,"",winfeatures)
    win2.blur()
    window.focus()
    }

    if (once_per_session==0)
    loadpopunder()
    else
    loadornot()

    </script>


    Title: Trying to insert a code but....
    Post by: BrendaSue on May 18, 2006, 09:07:50 AM
    I am trying to insert a code and it tells me to place it between the 2 head tags. When I try to look for the head tags, I can't find them (I click on each section on my page and look at the html code, but I can't find it). Im also trying to put Instant Buzz on there, the little box doesn't x off-I suspect it's because I didn't place it where I was supposed to. So, when someone tells us to place something between the head tags, where EXACTLY do we find the tag on the page (remember I have a lot of different sections to my page).

    Thanks so much.
    Brenda Sue


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on May 19, 2006, 01:34:35 AM
    An html page is made of a header section enclosed between <head></head> tags
    and a body section enclosed between <body></body> tags

    Generally extraneous stuff goes just before the </head>tag
    You should be able to see the head tags from the html tag


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on May 19, 2006, 09:42:47 AM
    I looked at this some more.

    One way to add stuff to the header tags is to go to the Additional Page properties for the page in the editor

    in the description box at the bottom type the following after your description

    ><script language=javascript>myscript.js</script

    This would add a javascript

    or

    ><META HTTP-EQUIV=Refresh CONTENT="5; URL=http://www.yahoo.com/"

    would add a redirect

    pay attention to the >< tags in the above code it must start with >< and have no closing > tag


    Title: HOW DO YOU LINK TO A SPECIFIC PARAGRAPH IN THE MIDDLE OF A PAGE?
    Post by: JQuisumbing on May 23, 2006, 07:01:30 AM
    HOW DO YOU LINK TO A SPECIFIC PARAGRAPH IN THE MIDDLE OF A PAGE?

    i've set up each of my pages with a TABLE OF CONTENTS. instead of scrolling to the different topics, i would like people to click on a topic on the TABLE OF CONTENTS and wala! it will go straight to that topic.

    is this possible using the WS WEB BUILDER?  ???

    johann


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on May 23, 2006, 07:47:14 AM
    At the start of the paragraph put:- <A NAME="myparagraph"></A>
    wherever you want to link from put <a href="#myparagraph>My Paragraph</a>


    Title: Re: HTML Questions? Ask Here!
    Post by: Manfred Kowalewski on June 06, 2006, 07:51:36 AM
    Hi,

    I uploaded pic "igam.gif" successfully per ftp into my mkowa.ws directory. But on http://mkowa.ws/igam.gif it does not show in my browser.

    I am not a newbie in HTML so I am a bit confused.

    Is there help?

    Manfred


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on June 06, 2006, 09:33:53 PM
    The servers are UNIX based and file names are CaSe SenSITive. Are you sure your ulpoaded the file and tyrped in the file exactly as it was uploaded. For example if you uploaded igam.GIF and you typed in igam.gif you would get this error


    Title: Re: HTML Questions? Ask Here!
    Post by: LisaS on July 11, 2006, 03:44:50 PM
    Okay, I've been going thru pages in the forums to build my website.

    I've copied HTML codes into my pages.  All that shows up is a blue box.

    I want to be able to help my customers build their sites (if I ever get any).
    How can I help them when I am so lost?

    So now I not only cannot seem to get any downline, I also cannot build a site.

    Guess I'm getting a little frustrated here.







     :-\


    Title: place a banner ad that take you to another site.
    Post by: DAlper on July 25, 2006, 09:20:57 PM
     :-[  I am new to GDI and have had some experience with web design buttttttt, i can't figure this site builder out.  I have a banner that I want to use to guide my customers to another site but it is not hyperlinked.  I have tried everything to get this to work but can't figure it out. I desperately need help!!!!!!!!!!
    Jeffrey Alper


    Title: Re: HTML Questions? Ask Here!
    Post by: Cherylynn McGovern on July 28, 2006, 09:52:31 AM
    Hi to all Wise Clever Ones,
    Urgent help is needed here.
    My business, that I have just started takes input from my website.
    Because GDI was reasonably priced and offered so much extra I thought I was doing the right thing by signing up here a few months ago. Website built, finally resolved after a few prob's, no worries.... I thought.
    However my site has a form that needs to be filled in by anybody that makes a purchase. It is not your usual form whereby the submitter then qualifies for all sorts of crap from any direction available to an autoresponder, it is a form that I need the answers from in order to send them the product they have just bought, it cannot be sent to an autoresponder.
    This form consists of name/address/email/phone and other, input boxes, (and there are seven of them that need completing),
    also, radio buttons to indicate choices and finally a text box.
    I need all this info delivered to me in order to do the work. However when the Submit button is actioned it simply opens up Outlook email creation and does not send me the form nor the results of the form.
    I am now desperate. I have enquired at support and they inform me that Frontpage Extensions are not installed, so thats one method down the tubes.
    Any suggestions to resolve this problem would make me eternally grateful, in fact so grateful that the problem solver that gets the form working I will GIVE them Option 2 from the Options page on my site.
    I guess now you have to go there to find out what it's all about. Unfortunately you will not be able to access the form but you can at least see what you could get if you solve the problem so go to
    www.familytreesandbranches.ws

    Grateful thanks in anticipation,
    Colin.


    You need a script and a cgi directory to do this.  Take a look at http://talk.ws/index.php?topic=3185.0

    Hi RodB

    I also have a need for a form however when I tried the link you offered to Colin back in Janurary I couldn't get access. I got messsage that topic doesn't exist or my access is denied. Is there somehwere else I can go to get info on the script and cgi?


    Title: Re: place a banner ad that take you to another site.
    Post by: RodB on July 28, 2006, 11:23:47 AM
    :-[  I am new to GDI and have had some experience with web design buttttttt, i can't figure this site builder out.  I have a banner that I want to use to guide my customers to another site but it is not hyperlinked.  I have tried everything to get this to work but can't figure it out. I desperately need help!!!!!!!!!!
    Jeffrey Alper


    Add the banner from the gallery and then add the destination URL from the editor in HTML mode.


    Title: Dreamweaver preview fine.....upload and problems.....
    Post by: Richard_P on August 11, 2006, 04:02:38 AM
    Hi,

      I have created a website that has two flash items on it that load in sequence. When i preview it in dreamweaver it looks perfect. I upload it to .ws and the first flash item plays fine and then the screen goes blank. Both items are small flash files but when the 2nd item is due to play it says "1 item remaining" and doesn't seem to load anything a all, even when left for about 15 minutes!!

    Any help would be greatly appreciated as it is driving me absolutely mad!!

    Best wishes

    Rich.


    Title: Re: Dreamweaver preview fine.....upload and problems.....
    Post by: RodB on August 11, 2006, 06:22:14 AM
    As a guess this sounds like a path problem.


    Title: Re: HTML Questions? Ask Here!
    Post by: WatersA on August 13, 2006, 03:25:36 AM
    I can get my avartar to to my forum page, I can also paste it where it needs
    to be. I have selected the space where it says avatars. My question is do I
    need more codes at the begining and the end? because when I try to submit
    this I got a red X instead of a picture. :'( 
    Do I have to go inside the code and change somethings? I am trying to export from .net on yahoo.

                                                                          Ms.Waters


    Title: Re: Dreamweaver preview fine.....upload and problems.....
    Post by: W Cox on August 15, 2006, 08:18:22 PM
    As a guess this sounds like a path problem.

    Rod,

    Not sure how to do a general post to this forum, so I just clicked on this message...I'd like to create a lead capture page, but don't have a clue...any hints? I am NOT a programmer, and know next to nothing about HTML - but learning slowly.

    I have learned how to embed links into text, but when I do that from my main .ws page to another page, most of the graphics on the destination page disappear - the text is still there. Is there some trick to this?

    Thanks!

    Bill Cox

    p.s. tried to figure out how to uplaod one of my gallery photos to my profile...no luck. If you haven't guessed by now, I'm still pretty green!


    Title: This is a question for GDI staff
    Post by: G.R on August 17, 2006, 07:10:04 PM
    Hi

    Can you tell me how to put a banner on the top of ones website. On the "head" if you know what I mean, and to the "right side" of the website. As I can see now, I only can put a banner "inside" the text area.

    I think it would catch the curiosity more to the website visitors.

    Another question is (or my opinion) is, the where it says "page 1" and "page 2" etc, and guestbook and feedback, it would look better if "the hand" was replaced by a box so you can scroll down, and if there could be inserted "undertopics".

    Hope to get feedback  :)
    thanks

    a woman


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on August 18, 2006, 02:23:06 AM
    You should be able to add a banner anywhere you like from the gallery. You first have to upload the banner to the gallery.

    WRT your second question - I am not sure I understand what you want. I think you want a drop down menu. This is not possible unless you add it using a script. There are many javascript menu systems available on the net which will do what you want just fine.


    Title: Background colour
    Post by: KimFowler on August 26, 2006, 09:37:27 AM
    Is it possible to change the background colour with HTML in  a wizard design? And if I want to insert a graphic in the edit page, is there any way or language, to place it exactly where I would like too?....regards Kim, this is great I am learning something new! :)


    Title: Re: Background colour
    Post by: RodB on August 26, 2006, 11:22:20 PM
    In the html mode this is entirely possible. To set the background use the "bgcolor" attribute you can also use a background color or image in the <body> tag which works for the whole page. eg <body bgcolor="#E5FOB8" text="#000000" alink="#FF0000" vlink="#FF00FF" link="#0000FF">. bgcolor also works in individual components of a table or the whole table so you can get color blocks.

    Images can be placed anywhere you like in the page and can be aligned anywhere. Research the tag : <img src="">


    Title: Re: HTML Questions? Ask Here!
    Post by: EPineda on August 27, 2006, 11:39:41 PM
    Hello,

    Please use this section to post all HTML questions. Before submitting, read through the posts to make sure your question hasn't already been answered.

    Thank you,

    Nicole

    How can I put the "ticket movie" in my own website?... I try to copy and paste the "html code from the view code" but it is not working... !!

    Thanks in advance


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on August 27, 2006, 11:41:28 PM
    You must be in the HTML mode of the editor which you can select at the bottom of the page in the editor.


    Title: Why am I NOT seeing my Banner after copying and Pasting?
    Post by: TerriNorvell on September 30, 2006, 06:47:41 AM
    Hi all,
    Wow, I'm having Fun with GDI But SiteBuilder has me stumped as to Why I Can't see my Banner after I've pasted the code.
    It's in HTML mode at the bottom to the page, and when I Preview, I still see only code.
    This has got to be something simple, I Hope!!  :-\


    Title: Re: Why am I NOT seeing my Banner after copying and Pasting?
    Post by: RodB on October 02, 2006, 03:38:55 AM
    Hi all,
    Wow, I'm having Fun with GDI But SiteBuilder has me stumped as to Why I Can't see my Banner after I've pasted the code.
    It's in HTML mode at the bottom to the page, and when I Preview, I still see only code.
    This has got to be something simple, I Hope!!  :-\

    Which preview are you looking at the one in the site builder or the one in the HTML editor?


    Title: Re: HTML Questions? Ask Here!
    Post by: NeilB on October 21, 2006, 05:07:45 AM
    To verify your status on google you have to add meta tag in sites first <head> section before first <body> section.
    Can we do this with the templates we choose from , if not could we upload our own templates?
    thanks Neil.


    Title: Re: HTML Questions? Ask Here!
    Post by: Karin ShirleyR on November 09, 2006, 04:40:14 AM
    hi my name is karin if someone has the html code of the banner of the video  in spanish version please send me i totally loss


    Title: Re: HTML Questions? Need Help
    Post by: Frederick Jaeger on November 09, 2006, 02:35:29 PM
    Hi, this is my first visit here and I apologize if I'm not following the proper thread to ask a new question.
    I couldn't find a place that says ask your question.

    Here is my problem and question.

    I have copied and pasted the below code for a banner from one of my affiliate sites.But after its submitted all that shows on the web page is the code. I'm sure it mus need some doctoring up to make it work, but I am lost as I dont know HTML. Can anybody please help?

    Here is the code:

    <EMBED src= "http://offerserve.com/clients/us15/flash/plaf_e_1.swf" width="250" height="250" FlashVars="clickTAG=http://us.offerforge.com/ez/aoakrpwtto/" >
    <img src='http://us.offerforge.com/42/3801/6223' border='0' />

    I have pasted it into the edit area that says it is for HTML and banners and images.

    I have also uploaded the image into the gallery...but just dont know how to connect the image into the code and what if anything needs to be done to make it all work so that I just dont see the plain printed code on my page.

    Any help would be appreciated.

    Sincerely,
    Frederick Jaeger
    AKA: RavenMoon


    Title: Re: HTML Questions? Ask Here!
    Post by: Dave H on November 11, 2006, 02:44:45 AM
    Quote
    Here is my problem and question.

    I have copied and pasted the below code for a banner from one of my affiliate sites.But after its submitted all that shows on the web page is the code. I'm sure it mus need some doctoring up to make it work, but I am lost as I dont know HTML. Can anybody please help?

    Here is the code:

    <EMBED src= "http://offerserve.com/clients/us15/flash/plaf_e_1.swf" width="250" height="250" FlashVars="clickTAG=http://us.offerforge.com/ez/aoakrpwtto/" >
    <img src='http://us.offerforge.com/42/3801/6223' border='0' />

    Hi Frederick, IMHO I have only used straight forward banners, but you should just need the link for the site URL that the banner is directing to, and the image source.
    ie:
    <a href="http://www.nameofsitegoeshere.com" target="_blank"><img src="http://www.nameofsitegoeshere.com.banner/gif" width="468" height="60" border="0"></a>

    Or what  I have done on this part of my site, http://www.travelezi.ws/page2.html is whilst in design mode, upload the image of the ferrari from the gallery, hold left mouse down over the image to highlight it, go to Edit/Insert Hyperlink, a box appears where you can put the link to the website that you want the image to link to.
    Once you have done that you can go back into HTML mode and include the target="_blank" as above, (when banner is clicked will open a new window) and also include the border="0", in the image source.
    Hope this helps
    All the best Dave


    Title: Re: HTML Questions? Ask Here!
    Post by: Frederick Jaeger on November 14, 2006, 09:06:28 AM
    Hello Dave,

    Thanks for your help and suggestions. My problem was resolved.

    Always best wishes to you,
    Frederick


    Title: Re: HTML Questions? Ask Here!
    Post by: StevenHalstead on November 15, 2006, 04:17:52 AM
    i just need some help on trying to get started on making a web page, just like most of these people today the only things they know how to do is with a helping hand, so i am asking for some help. i need to get some things started to of course get the attention of the wounderful people that need to learn about this gdi network. so if some one can, write me back and let me know how to get started cause i have no clue even where to start. thanks steven Hals... :D


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on November 16, 2006, 01:10:53 AM
    i just need some help on trying to get started on making a web page, just like most of these people today the only things they know how to do is with a helping hand, so i am asking for some help. i need to get some things started to of course get the attention of the wounderful people that need to learn about this gdi network. so if some one can, write me back and let me know how to get started cause i have no clue even where to start. thanks steven Hals... :D

    Hi Steven,

    There are comprehensive instructions at http://www.gdi-made-easy.ws/SiteBuilder.html


    Title: Do GDI sites support Micosoft Front Page?
    Post by: Robert U on November 20, 2006, 08:34:18 PM
    If so how do I access my website with FrontPage?


    Title: Re: Do GDI sites support Micosoft Front Page?
    Post by: RodB on November 20, 2006, 08:36:58 PM
    If so how do I access my website with FrontPage?

    GDI sites can be built with any HTML editor including FrontPage. If you use an editor you must choose the hosting option not the site builder option. You would access your site with Frontpages built in FTP facility.


    Title: Re: My .ws Website
    Post by: WJason on December 11, 2006, 08:59:29 PM
    ON a trail period now.  How do I have people link DIRECTLY to the movie through my site like others do?  Also, I've noticed other buttons that aren't included in the banners section.  Any help?  Thanks!
    Jay ;D


    Title: Re: My .ws Website
    Post by: RodB on December 11, 2006, 09:10:53 PM
    ON a trail period now.  How do I have people link DIRECTLY to the movie through my site like others do?  Also, I've noticed other buttons that aren't included in the banners section.  Any help?  Thanks!
    Jay ;D

    Try http://www.gdi-made-easy.ws/GDI_URLs.html there are plenty of URLS you can use and pretty much every button you need :)


    Title: building pages to be used by another page on the website
    Post by: JKraft on December 24, 2006, 03:35:01 AM
    To anyone that can explain this:

    I am building my website and I am trying to make a link to other pages that I have created within the website itself.  They work fine, but the pages that I am linking to, I do not want them visible on the top of my page.  These pages are just information pages and not part of my main category pages.  When I go into the page editor and click off the visible box, the links to those pages do not show up, which is good.  The bad part of this is when I click on the hyperlink directing me to those information pages, I get thrown into the www.website.ws/username web page.  I have the publish box checked and I have tried every situation possible within the page editor possible and nothing is working.

    Please help me anyone, it is getting me frustration.  I am sure there is an easy way to solve this problem

    Thanks,
    Jay


    Title: Re: building pages to be used by another page on the website
    Post by: RodB on December 24, 2006, 03:38:23 AM
    To anyone that can explain this:

    I am building my website and I am trying to make a link to other pages that I have created within the website itself.  They work fine, but the pages that I am linking to, I do not want them visible on the top of my page.  These pages are just information pages and not part of my main category pages.  When I go into the page editor and click off the visible box, the links to those pages do not show up, which is good.  The bad part of this is when I click on the hyperlink directing me to those information pages, I get thrown into the www.website.ws/username web page.  I have the publish box checked and I have tried every situation possible within the page editor possible and nothing is working.

    Please help me anyone, it is getting me frustration.  I am sure there is an easy way to solve this problem

    Thanks,
    Jay

    I don't really understand the problem.
    Adding
     
    Code:
    <a href="http://www.somesite.ws/somepage.html">Some Page Some where</a>

    will make a link to a new page


    Title: Re: HTML Questions? Ask Here!
    Post by: JKraft on December 24, 2006, 04:35:11 PM
    Where do I put the code?

    Do I replace anything in the HTML code you gave me?

    Thanks.


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on December 26, 2006, 09:22:00 PM
    Where do I put the code?

    Do I replace anything in the HTML code you gave me?

    Thanks.

    Yes you need to put your site details or the details of the site you want to link to.


    Title: Re: HTML Questions? Ask Here!
    Post by: Michael Wheeler on January 08, 2007, 08:23:23 PM
    When I select a section of text or a banner I have been unable to align them in the centre. Can you give me a reason why this would happen?

    Michael
    www.clubfreedomcash.ws  (http://www.clubfreedomcash.ws)


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on January 08, 2007, 08:26:35 PM
    When I select a section of text or a banner I have been unable to align them in the centre. Can you give me a reason why this would happen?

    Michael
    www.clubfreedomcash.ws  (http://www.clubfreedomcash.ws)

    The following should center anything:-

    Code:
    <center>My Uncle has a very large yacht called Matilda in the middle</center>


    Title: Re: HTML Questions? Ask Here!
    Post by: Michael Wheeler on January 13, 2007, 04:43:22 AM
    Thanks Rod for that info..... simple when you know how!
    You must be psychic.  I have a brother in law with a very large yacht called Waltzing Matilda that
     sails up around the Whitsunday Islands near the Great Barrier Reef (Oz) ;D
    Cheers
    Michael


    Title: hyperlink
    Post by: MarthaT on January 17, 2007, 08:27:21 PM
    I have a picture and a word on main page of my website .  I want to create a link so when clicked on it will take me right section..  Ex.  word "scents"  want to be able to click on this and have it take me to my second page where I have the scents listed.  Can any one help  I have tried different things but when tested I get an error.


    Title: Re: hyperlink
    Post by: RodB on January 18, 2007, 12:09:40 AM
    I have a picture and a word on main page of my website .  I want to create a link so when clicked on it will take me right section..  Ex.  word "scents"  want to be able to click on this and have it take me to my second page where I have the scents listed.  Can any one help  I have tried different things but when tested I get an error.

    Adding
     
    Code:
    <a href="http://www.somesite.ws/somepage.html">Some Page Some where</a>

    will make a link to a new page


    Title: Re: HTML Questions? Ask Here!
    Post by: DPro on January 18, 2007, 03:10:11 PM
    Hi MarthaT,

    I have a video tutorial on how to use the GDI sitebuilder to :
    1)insert/edit pages
    2)create hyperlinks
    3)insert images
    4)create tables
    5)format text

    If you are interested, please send me a private message and I will email you the link.


    Title: Re: HTML Questions? Ask Here!
    Post by: Tidarut Hansub-Udom on January 24, 2007, 11:20:23 AM
    I'm going to try and use an FTP to edit my site 'cause I'm eventually going to have more of my work added on, but my CSS knowledge is a little rusty. Does someone have or know a reliable site I can use? I will give you credit for the help.


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on January 24, 2007, 10:10:00 PM
    Try
    http://www.webmasterbase.com/article.php?aid=309

    and

    http://www.htmlhelp.com/reference/css/properties.html


    Title: Re: HTML Questions? Ask Here!
    Post by: Tidarut Hansub-Udom on January 25, 2007, 02:32:40 PM
    Try
    http://www.webmasterbase.com/article.php?aid=309

    and

    http://www.htmlhelp.com/reference/css/properties.html

    Thanks for the help. ^^


    Title: Re: HTML Questions? Ask Here!
    Post by: AlexW on January 28, 2007, 03:11:12 PM
    Site builder appears on web site after it is published.  ??? Can't figure this one out. I'm trying to put a link to page 2 at the bottom of page 1 or any other page for that mater so the reader doesn't have to scroll back to the top to get to the next page. When I do this the site builder is on the new page too. It should be the same as clicking on the page 2 at the top of the screen. But isn't. I need someone to get back to me with a solution to this problem.
    Thanks


    Title: Re: HTML Questions? Ask Here!
    Post by: Tidarut Hansub-Udom on January 30, 2007, 03:53:19 PM
    Can I see your website? I'd like to see for myself...it's even got me scratching my head and I'm kinda confused about what you're trying to explain.


    Title: Re: HTML Questions? Ask Here!
    Post by: CumaEkinci on February 09, 2007, 11:56:52 AM
    why my pages code limit

    4000 caracters


    Title: Re: HTML Questions? Ask Here!
    Post by: AlanG on February 11, 2007, 05:42:55 AM
    hey guys, is it possible to incorporate a forum in my site?


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on February 11, 2007, 05:50:32 AM
    Site builder appears on web site after it is published.  ??? Can't figure this one out. I'm trying to put a link to page 2 at the bottom of page 1 or any other page for that mater so the reader doesn't have to scroll back to the top to get to the next page. When I do this the site builder is on the new page too. It should be the same as clicking on the page 2 at the top of the screen. But isn't. I need someone to get back to me with a solution to this problem.
    Thanks

    I don't really understand the  problem you are describing
    You should be able to put a link to anything you want using a a href= tag


    Title: Re: HTML Questions? Ask Here!
    Post by: DPro on February 11, 2007, 08:05:18 AM
    Quote
    hey guys, is it possible to incorporate a forum in my site?

    A forum needs a database to run, GDI doesn't support features that require mysql database a the moment, so I am afraid you can't install a forum.
    However you can host your GDI domain else where that provides database functions.
    Just google for "hosting with database", you should have many results for you to select one that suits your budget.

    Melissa


    Title: Re: HTML Questions? Ask Here!
    Post by: Alan Dewett on February 13, 2007, 03:22:00 AM
    hi all isnt their a shorter more usefull link to the hosting page than     http://website.ws/index.dhtml?sponsor=belgianbill&action=full&id=328861399634891867972459447932814118481  this points to the green-white pagewich i use more then teh movie sp i would like another shorter link
     can someone help here
    greetings from belgium
    william
    www.myeasybusiness.ws

    Creating a link is as simple as using a hyper reference. For example: <a href="http://website.ws/index.dhtml?sponsor=belgianbill&action=full&id=328861399634891867972459447932814118481">Click Here</a> Your reader would then only see the red words which can be anything you choose.

    Have a great day Bill


    Title: Re: HTML Questions? Ask Here!
    Post by: KOsborn on February 15, 2007, 06:25:55 PM
                        I cannot get the background color to work.
     It works in the preveiw in the edit window but after I submit it the bg color is not there. 

    The colors for the fonts works fine but not backgrounds. 

      What am I missing here?  <body bgcolor="#E0FFFF"> 
    Am I using a color that does not work? I have tried others. 


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on February 15, 2007, 10:20:25 PM
                        I cannot get the background color to work.
     It works in the preveiw in the edit window but after I submit it the bg color is not there. 

    The colors for the fonts works fine but not backgrounds. 

      What am I missing here?  <body bgcolor="#E0FFFF"> 
    Am I using a color that does not work? I have tried others. 


    The tag is fine and the color #E0FFFF is a pale blue color. Did you perhaps insert it above the </head> tag? Alternatively did you leave out a " in a previous tag? Both of these would cause the problem you are describing.


    Title: Re: HTML Questions? Ask Here!
    Post by: KOsborn on February 18, 2007, 05:50:25 AM
    Thank you for your help RonB

    This is the code I have and I still cannot get my bg color to work.  I don't think I am missing anything, I am new to this so I am not sure.
    I use Alley Code to write with and it works in the browser with that so I am really stumped.

    Kenton

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>kentonstore home page</title>
    </head>
    <body bgcolor="#00ffff">
    <h1 align="center"><font color="#cc9900">Welcome to Kenton Store!</font> </h1>
    <h1 align="center"><font color="#663366">Don't Hide...Come on in</font> </h1>
    <h1 align="center"><img style="width: 406px; height: 300px;" title="" height="300" alt="Welcome!" src="http://site-images.ws/images/cust/91649/max(2).jpg" width="406">
    <center>&nbsp;</center>
    <center>&nbsp;</center>
    <h2 align="center"><font color="#cc9900">We have many things going on at Kenton Store.<br>
    <br>
    Do you like to make money?<br>
    <br>
    What a question of course you do.<br>
    We have money making opportunities! <br>
    </font></h2><br>
    <br>
    <a href="http://www.nitpickit.com/cgi-bin/local9/in.cgi?id=243" target="_blank"><img height="10" alt="Get FREE Acvertising" src="http://www.nitpickit.com/images/fa.gif" width="81"></a> </h1>
    </body>
    </html>


    Title: website link
    Post by: John Garvey on February 20, 2007, 03:03:38 PM
     Hello everyone, I am new with first post. My question is, How can I put a link on my .ws website
     to my other website which currently has high rankings? I am already linked from it to my .ws website.


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on February 22, 2007, 03:03:50 AM
    Thank you for your help RonB

    This is the code I have and I still cannot get my bg color to work.  I don't think I am missing anything, I am new to this so I am not sure.
    I use Alley Code to write with and it works in the browser with that so I am really stumped.

    Kenton

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>kentonstore home page</title>
    </head>
    <body bgcolor="#00ffff">
    <h1 align="center"><font color="#cc9900">Welcome to Kenton Store!</font> </h1>
    <h1 align="center"><font color="#663366">Don't Hide...Come on in</font> </h1>
    <h1 align="center"><img style="width: 406px; height: 300px;" title="" height="300" alt="Welcome!" src="http://site-images.ws/images/cust/91649/max(2).jpg" width="406">
    <center>&nbsp;</center>
    <center>&nbsp;</center>
    <h2 align="center"><font color="#cc9900">We have many things going on at Kenton Store.<br>
    <br>
    Do you like to make money?<br>
    <br>
    What a question of course you do.<br>
    We have money making opportunities! <br>
    </font></h2><br>
    <br>
    <a href="http://www.nitpickit.com/cgi-bin/local9/in.cgi?id=243" target="_blank"><img height="10" alt="Get FREE Acvertising" src="http://www.nitpickit.com/images/fa.gif" width="81"></a> </h1>
    </body>
    </html>

    This should work fine. You have an h2 tag nested inside an h1 tag which maybe causing the problem.


    Title: Re: website link
    Post by: RodB on February 22, 2007, 03:05:16 AM
    Hello everyone, I am new with first post. My question is, How can I put a link on my .ws website
     to my other website which currently has high rankings? I am already linked from it to my .ws website.


    Adding
     
    Code:
    <a href="http://www.somesite.ws/somepage.html">Some Page Some where</a>


    Title: Re: HTML Questions? Ask Here!
    Post by: P_Gringel on February 26, 2007, 10:35:29 PM
     Hello Rodb( I am hoping you can help me with this) :'(
    I have attempted to get my Ws website hosted ,and to create it using Dreamweaver because I am more familiar with DW but I have had so much trouble FTP'ing it.I give up.

     footnote:
    The question I asked    is no longer valid  Rodb. I have discovered that one of the official pages advertising  GDI has been substituted there while waiting for me to make up my mind .That's quite acceptable to me.It is both top notch professionally  and has my affiliate id imbedded.in it. ;)


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on March 01, 2007, 06:15:10 AM
    Hello Rodb( I am hopingyou can help me with this) :'(
    I have attempted to get my Ws website hosted ,and to create it using Dreamweaver because I am more familiar with DW but I have had so much trouble FTP'ing it.I give up.

      I decided I would  persevere with website builder.I did that and found I filled in my email address onto my home page which I decided I do  not want
     In anycase , I could not delete my email address ,  so I deleted page one. Now I am asking is page two able to serve as  the index html page ?If not how do I start all over again from scratch?
     Thanks  in anticiaption
    Rod.

    Hi Pat,
    From where I am right now I am unable to check that. You should be able to add a page and name it index.html


    Title: How do it use html to create a webpage?
    Post by: SLee on March 10, 2007, 08:37:23 PM
    Dear all,
    i am having this problem now,
    as i only know how to use the site builder to build my site(without using html),i have prospective leads telling me that its not so impressive.
    so now i wish to change my web into a more "professionally" done webpage,how do i go about it?
    i tried a few template sites and all i got was a lot of codes but i dont know how to insert the contents of my page into the codes
    please help

    thanks


    Title: Re: How do it use html to create a webpage?
    Post by: RodB on March 12, 2007, 03:32:18 AM
    Dear all,
    i am having this problem now,
    as i only know how to use the site builder to build my site(without using html),i have prospective leads telling me that its not so impressive.
    so now i wish to change my web into a more "professionally" done webpage,how do i go about it?
    i tried a few template sites and all i got was a lot of codes but i dont know how to insert the contents of my page into the codes
    please help

    thanks

    The simplest way to write HTML is to use the WYSIWIG editors like FrontPage or Dreamweaver.  Hotdog is a much better product but takes longer to learn.


    Title: Backgrounds on site builder?
    Post by: Paul Rane on March 25, 2007, 06:21:21 PM
    Hi all,

    I have built a web-site but wish to colour the background. I can do it on the edit work page using html. but when I submit it stays white!

    Also where do I get these facy backgrounds, you know the ones with dollarsigns, arrows, stars and the like?

    Hope someone can help.

    Thanks

    Paul


    Title: Putting in a forum
    Post by: N Norman on March 25, 2007, 06:21:21 PM
    Does GDI provide forum and gallery hosting?  I've been looking at using invision board and simply creating a page with the links to both, however if GDI offers this I'd probably stick with GDI.

    Thanks for the help!


    Title: Re: Putting in a forum
    Post by: RodB on March 25, 2007, 09:40:55 PM
    Hi,

    No GDI does not. You would have to host it off site.

    see http://talk.ws/index.php?topic=7317.msg18576#msg18576


    Title: Re: Backgrounds on site builder?
    Post by: RodB on March 25, 2007, 09:44:35 PM
    Hi all,

    I have built a web-site but wish to colour the background. I can do it on the edit work page using html. but when I submit it stays white!

    Also where do I get these facy backgrounds, you know the ones with dollarsigns, arrows, stars and the like?

    Hope someone can help.

    Thanks

    Paul

    See http://talk.ws/index.php?topic=7317.msg15662#msg15662


    Title: How I can upload HTML verification file from my GDI website builder?
    Post by: LuisNieva on March 26, 2007, 08:27:02 AM
    I tried using the Add Content but to no avail.

    I need to create the file and  upload it to my webserver to the location they specify. I need to upload this verification file for them to know that I am really the owner of my site. It is said this is generally the root folder of my your site.

    Please help, I'm really confuse. I'm just a newbie. thanks.


    Title: Re: How I can upload HTML verification file from my GDI website builder?
    Post by: RodB on March 27, 2007, 09:04:11 AM
    I tried using the Add Content but to no avail.

    I need to create the file and  upload it to my webserver to the location they specify. I need to upload this verification file for them to know that I am really the owner of my site. It is said this is generally the root folder of my your site.

    Please help, I'm really confuse. I'm just a newbie. thanks.


    There are FTP instructions in http://talk.ws/index.php?topic=7095.0


    Title: I Need Help
    Post by: FDavid on April 07, 2007, 02:07:41 PM
    I need some help please.

    How do I add more content blocks to each of my web pages to make them longer?

    I am sure this simple, but for the life of me I cant seem to see which link to click to add more content blocks. I am in desperate need to making a few of my pages longer for people to scoll down.

    I rarely visit this forum as I am busy promoting and advertising and working other jobs.



    Thanks
    David Fox


    Title: Re: I Need Help
    Post by: Dave H on April 08, 2007, 04:52:07 AM
    Quote
    How do I add more content blocks to each of my web pages to make them longer?
    Hi David, To add another block, when you are in Page Editor, click on to edit the page, there will be  a blue banner at top of  page, click on add content, there are several options, but I usually choose
    Insert HTML code to greater display your text, insert a banner, or other html effects.
    as you probably know you can only use a certain amount of characters in each block, and there is a good gap between each block, so I try to insert information so that it looks fairly tidy(I hope)
    Hope this helps..All the best Dave


    Title: Contents slips
    Post by: DaveHayes on April 14, 2007, 05:38:09 AM
    Can anyone tell me that when I try to edit my content as I have just tried to do, the contents slips down the page, making it look unproffesional

    Dave Hayes



    Title: Re: Contents slips
    Post by: Dave H on April 15, 2007, 05:17:56 AM
    Quote
    Can anyone tell me that when I try to edit my content as I have just tried to do, the contents slips down the page, making it look unproffesional
    Hi Dave, Difficult to say without knowing exactly what you are doing, but most likely a error to be found in the html section, something left in that shouldn't be, or something left out that should be there..If you are still having the problem perhaps you'd like to post your site in 'Showcase Your Site' section, and someone may be able to help you further.
    Good Luck..All the best Dave


    Title: Can anyone help?
    Post by: DeanH on April 17, 2007, 03:39:21 PM
    Hello,
    Can anyone help me please. I want to put one of the blue boxes on my site. The one that has the text with the red button that reads 'Let me in'

    Looks like this:         Try it absolutely free for 7 days
                                        Is your name available ?
                                           Are you too late ?
                                              LET ME IN !!

    Thinks this has a professional look to it so if anyone knows the HTML code I would appreciate it. Thanks

    Dean


    Title: Re: HTML Questions? Ask Here!
    Post by: Nunzio Giancola on April 18, 2007, 03:57:15 PM
    please can you help my.
    I have the ftp programm bat it don't
    connects.
    this is the error:530 Login incorrect.

    i put these:ftp.hosting.ws
                thepowerchange
                 my password

    thanks a lot Nunzio Giancola

    P.S. sorry for my english I am italian


    Title: Re: Can anyone help?
    Post by: RodB on April 19, 2007, 02:09:43 AM
    Hello,
    Can anyone help me please. I want to put one of the blue boxes on my site. The one that has the text with the red button that reads 'Let me in'

    Looks like this:         Try it absolutely free for 7 days
                                        Is your name available ?
                                           Are you too late ?
                                              LET ME IN !!

    Thinks this has a professional look to it so if anyone knows the HTML code I would appreciate it. Thanks

    Dean

    I am not sure which this is  - if its a graphic right click on it and choose "save picture as" and save it to your computer then upload to the site builder. If its HTML all you need is a table.


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on April 19, 2007, 02:10:51 AM
    please can you help my.
    I have the ftp programm bat it don't
    connects.
    this is the error:530 Login incorrect.

    i put these:ftp.hosting.ws
                thepowerchange
                 my password

    thanks a lot Nunzio Giancola

    P.S. sorry for my english I am italian

    The password and username are CaSe SEnsitIVe


    Title: Re: Can anyone help?
    Post by: DeanH on April 20, 2007, 02:09:52 PM
    Hello,
    Can anyone help me please. I want to put one of the blue boxes on my site. The one that has the text with the red button that reads 'Let me in'

    Looks like this:         Try it absolutely free for 7 days
                                        Is your name available ?
                                           Are you too late ?
                                              LET ME IN !!

    Thinks this has a professional look to it so if anyone knows the HTML code I would appreciate it. Thanks

    Dean

    I am not sure which this is  - if its a graphic right click on it and choose "save picture as" and save it to your computer then upload to the site builder. If its HTML all you need is a table.

    Hi Rod,

    The one I actually mean I have just noticed is actually on your GDI-MADE-EASY site. It is the box that when you click on the red 'Let me in' box takes the person to the page to sign up to GDI. I hope this helps you to advise me as I think it looks professional to have that on the site.

    Thanks
    Dean


    Title: Re: HTML Questions? Ask Here!
    Post by: Dave H on April 20, 2007, 09:57:44 PM
    Hi Dean, I think this would be the html code for the 'blue box' You may want to adjust the text/box size(s) a bit if you are putting it on your ws site
    Hope this helps.
    All the best Dave

    <table width="250" border="1" cellspacing="0" cellpadding="2" align="center" class="testimonial"><tr><td bgcolor="#A3CBF2"><center><h3><font face="Arial, Helvetica, Sans Serif" color="#0000FF"><br>Try it absolutely free for 7 Days!<br>Is your name available?<br>Are you too late?</font></h3>
    <form method="post"action="http://website.ws/kvmlm2/dispatch.dhtml" name="ticket2">
    <input type="hidden" name="sponsor" value="userid">
    <input type="hidden" name="fname" value="">
    <input type="hidden" name="lname" value="">
    <center><input type="image" src="http://images.website.ws/kvmlm2/my_images_new/letmein.gif"></center></form></center></td>
     </tr></table>


    Title: Re: HTML Questions? Ask Here!
    Post by: Tony T on April 25, 2007, 06:35:31 PM
    Hi, hope you are well.

    Could anyone please tell me how to cloak hoplink my page links?

    Many thanks,

    Tony


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on April 26, 2007, 06:54:11 AM
    Hi, hope you are well.

    Could anyone please tell me how to cloak hoplink my page links?

    Many thanks,

    Tony

    Two questions please?
    Why do you want to do that?
    What do you envision a hoplink is?


    Title: Re: HTML Questions? Ask Here!
    Post by: Tony T on April 26, 2007, 02:35:20 PM
    Hi, I saw it on another members site where they were able to link to the GDI hosting sales page.

    I assumed it was a way to use the normal page links instead of using a written link on a webpage.

    Regards,

    Tony


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on April 26, 2007, 10:12:05 PM
    You will find the hosting links you need at
    http://www.gdi-made-easy.ws/HostingCode.html

    You would not normally cloak a link unless you were trying to get it
    through some sort of filter or diguise the link for some reason.

    For example http://rod.repurl.com/GDIA.cgi goes to http://website.ws/userid

    The commonest way is to use a service like tinyurl.com


    Title: Re: HTML Questions? Ask Here!
    Post by: Tony T on April 27, 2007, 04:03:27 AM
    Hi Rod, that'll do nicely.

    Many thanks,

    Tony T


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on May 06, 2007, 10:09:49 PM
    err i duno if this is considered an hmtl question or not but here goes...
    i have a website willworkathome.ws (http://willworkathome.ws) its basically going to a website i have but is it possible to add like the join GDI added to it?

    You can only redirect once so you need to choose which site you want your site to go to. You could redirect an internal page.


    Title: Re: HTML Questions? Ask Here!
    Post by: Jamal Belaski on May 15, 2007, 03:13:35 AM
    how do I turn a song into a mp3 file?


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on May 15, 2007, 09:40:22 PM
    how do I turn a song into a mp3 file?

    Try winamp.com


    Title: HTML to Content Blocks
    Post by: AnthonyS1 on May 28, 2007, 05:34:34 AM
    I have a big code that I want to put into my page. The problem is that there are breakups in the right column and left column, then the middle column.

    I want to know how to figure out what part of the HTML to break up into separate 4000 characters so that I don't have to take four hours to figure it out by trial and error?

    I think GDI should lay this information out to its clients before they register and find out that there is so much nitpicking going on inside sitebuilder.

    If nobody can help me, I think I'll take my web domain to another hosing company that will let me transfer my HTML all at once instead of having to break it up into tiny little 4000 character blocks.

    Somebody please help me figure this out.


    Title: Re: HTML to Content Blocks
    Post by: DPro on May 28, 2007, 07:04:09 AM
    I have a big code that I want to put into my page. The problem is that there are breakups in the right column and left column, then the middle column.

    I want to know how to figure out what part of the HTML to break up into separate 4000 characters so that I don't have to take four hours to figure it out by trial and error?

    I think GDI should lay this information out to its clients before they register and find out that there is so much nitpicking going on inside sitebuilder.

    If nobody can help me, I think I'll take my web domain to another hosing company that will let me transfer my HTML all at once instead of having to break it up into tiny little 4000 character blocks.

    Somebody please help me figure this out.

    Hi Anthony,

    The GDI site builder works best if you are using the GDI standard templates.
    From what you described above, it seems that you want to create a web page with 3 columns without using the template layout.
    If that's what you want to do, then you can choose the quality hosting option.
    You don't have to transfer your domain to another hosting company, GDI will host for you for free and you can use your own application like dreamweaver to make your website.
    This way you don't have to use the standard templates and no more worries bout the 4000 limit content block


    Title: Re: HTML Questions? Ask Here!
    Post by: B_Heeren on June 28, 2007, 02:43:47 AM
    hello


    Where must i edit my html to get my banner from gdi open in a new window?

    <object  classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
        codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
        width="468" height="60">
        <param name=movie
        value="http://images.website.ws/banners/kvmlm2/468x60_01.swf?link1=http://website.ws/kvmlm2/my.dhtml?sponsor=kbeertje">
        <param name=quality value=high>
        <embed src="http://images.website.ws/banners/kvmlm2/468x60_01.swf?link1=http://website.ws/kvmlm2/my.dhtml?sponsor=kbeertje"
        type="application/x-shockwave-flash" quality="high"
        width="468" height="60"
        pluginspage="http://www.macromedia.com/go/getflashplayer" >
        </embed>
        </object>

    were go's the " target="_blank"

    can somebody help me please have the same problem with the script from google


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on June 28, 2007, 02:48:45 AM
    Hi,

    I dont quite understand what you want to do? Surely you want this banner on the page the people are looking at? Do you mean the destination page from this banner open in a new page?



    Title: Re: HTML Questions? Ask Here!
    Post by: B_Heeren on June 28, 2007, 03:29:07 AM
    Hello

    Yes, i want the destination page from this banner open in a new page


    Title: Re: HTML Questions? Ask Here!
    Post by: P De Thierrry on June 29, 2007, 03:43:41 PM
    Any one got the HTML code for a media player on your website and a drop down menu to choose songs from? would like to place music on my website. Any help most appreciated.


    Title: Re: HTML Questions? Ask Here!
    Post by: Brad_H on July 02, 2007, 01:01:50 AM
    Hi,

    Can anyone provide the HTML for the   http://www.freedom.ws   site, and if this can be used with 'site builder" , I am considering putting this in my site as opposed to linking to it. Any advice concerning this.

    Also would appreciate code for this link     http://website.ws/kvmlm2/ws.dhtml?sponsor=your_username&template=4
     
    Thanks and Good Luck to All 


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on July 02, 2007, 01:07:17 AM
    Hi,

    Can anyone provide the HTML for the   http://www.freedom.ws   site, and if this can be used with 'site builder" , I am considering putting this in my site as opposed to linking to it. Any advice concerning this.

    Also would appreciate code for this link     http://website.ws/kvmlm2/ws.dhtml?sponsor=your_username&template=4
     
    Thanks and Good Luck to All 

    You will find all this at http://www.gdi-made-easy.ws/GDI_URLs.html


    Title: Re: HTML Questions? Ask Here!
    Post by: Brad_H on July 03, 2007, 03:22:31 AM
    Hello Rod,
    I am new with GDI. I'm looking forward to the future with this company, and this group of people (I've been reading through the forum quite a bit).
    Rod, I really appreciate your great site- nice service.
    I had looked through every page and every link (code, image,etc.) a couple times before I posted, then again just now.
    I may be missing something, but I dont find the specific HTML (or url, etc) I'm refering to.
    Similar to the second one I was looking for is this other I would like to see HTML availible for  http://website.ws/kvmlm2/ws.dhtml?sponsor=your_username&template=5
    Any help would be appreciated, (sorry to be so picky by wanting these pages, with the great variety  thats on your site Rod)

    Thanks, Brad


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on July 03, 2007, 06:42:40 AM
    Hi

    This should do it

    Code:
    <a href="http://website.ws/kvmlm2/ws.dhtml?sponsor=your_username&template=5
    " target="blank>Template 5</a>


    Title: Slideshow anybody?
    Post by: Sergio L on July 04, 2007, 10:56:18 AM
    Hi... I'm trying to create a slideshow in my website using html text, and i'm having some problems. Can anybody help?
    This is my text:

    <html>
    <head>
    <script type="text/javascript">
    <!--
    var image1=new Image()
    image1.src="Travel1.JPG"
    var image2=new Image()
    image2.src="Nature5.JPG"
    var image3=new Image()
    image3.src="Nature3.JPG"
    //-->
    </script>
    </head>
    <body>
    <img src="Travel1.JPG" name="slide" width="512" height="384" />
    <script>
    <!--
    //variable that will increment through the images
    var step=1
    function slideit(){
    //if browser does not support the image object, exit.
    if (!document.images)
    return
    document.images.slide.src=eval("image"+step+".src")
    if (step<3)
    step++
    else
    step=1
    //call function "slideit()" every 2.5 seconds
    setTimeout("slideit()",2500)
    }
    slideit()
    //-->
    </script>
    </body>
    </html>


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on July 05, 2007, 02:41:36 AM
    I had a quick look. Looks like you are missing two right curly brackets { at the bottom two if statements. Also looks like a missing left curly bracket } after document.images.slide.src=eval("image"+step+".src")


    Title: Anchor Text Question
    Post by: Tom A on July 08, 2007, 04:08:46 PM
    Hi:

    I know how to create an anchor text in Websites and bulletin boards but I am wondering.....
    How do you create it in the body of an e-mail? ::)

    Sincerely

    Tom


    Title: Re: Anchor Text Question
    Post by: RodB on July 10, 2007, 06:22:34 AM
    Hi:

    I know how to create an anchor text in Websites and bulletin boards but I am wondering.....
    How do you create it in the body of an e-mail? ::)

    Sincerely

    Tom

    Read about it here http://www.w3.org/TR/html4/struct/links.html


    Title: Re: HTML Questions? Ask Here!
    Post by: Rick Allison on July 12, 2007, 11:39:34 PM
    Nicole, I've built a lot of websites and written a lot of HTML in my time, and I couldn't copy and paste any HTML into GetASite.ws, at all, regardless of where the HTML came from.  I couldn't write it, either.  What am I doing wrong?  I wonder if the images (like banners from Linkshare or Commission Junction) don't show until after I publish.

    Also, how do I position the building blocks?  I want a two column site but to be able to put single blocks on top or bottom.


    Title: Re: HTML Questions? Ask Here!
    Post by: SanjinkaO on July 18, 2007, 05:33:17 AM
    Hi guys,

    One of my team members would like to incorporate
    DVD presentation into his website.
    I remember I've seen a post about it
    somewhere but cannot find it.
    Is there any HTML code for including
    video presentation (same one as on DVD)
    into the website?

    Thanks in advance,
    Sanjinka


    Title: Re: HTML Questions? Ask Here!
    Post by: Joel_P on July 30, 2007, 03:00:20 AM
    Hi Sanjinka,
    Your question was "Is there any HTML code for including
    video presentation (same one as on DVD)"

    This is a banner HTML code, when you click on the banner it will open your affiliate page to show the dvd movie, copy the following into a web page (insert html):

    <object  classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
        codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"
        width="468" height="60">
        <param name=movie
        value="http://images.website.ws/banners/kvmlm2/468x60_02.swf?

    link1=http://www.freedom.ws/username/show_dvd">

        <param name=quality value=high>
        <embed src="http://images.website.ws/banners/kvmlm2/468x60_02.swf?

    link1=http://www.freedom.ws/username/show_dvd"

        type="application/x-shockwave-flash" quality="high"
        width="468" height="60"
        pluginspage="http://www.macromedia.com/go/getflashplayer" >
        </embed>
        </object>

    username is the username you chose during sign up, remember to change username to your own.
    You can choose a variation of Banners, check in your Banners for the list.

    Have a great day,

    Joel  :)


    Title: My site with Firefox
    Post by: BouchardJ on October 10, 2007, 08:37:13 PM
    Hi everybody

    For some reasons I wanted to do my website with my own tool so I used Microsoft Frontpage to do it.

    I showed my site to many of my friends and I realised that those who are  using Mozilla Firefox are unable to see my website properly ( they dont see the graphics I think)

    Sorry if my english is not good but for those who understood me, could you help me please to fix this problem...

    Thanks in advance


    Title: Re: My site with Firefox
    Post by: RodB on October 11, 2007, 01:00:41 AM
    Hi everybody

    For some reasons I wanted to do my website with my own tool so I used Microsoft Frontpage to do it.

    I showed my site to many of my friends and I realised that those who are  using Mozilla Firefox are unable to see my website properly ( they dont see the graphics I think)

    Sorry if my english is not good but for those who understood me, could you help me please to fix this problem...

    Thanks in advance

    The reason for this is that Firefox is stricter than the IE when it interprets HTML. Most likely the problem is an error in the html code. Also check the graphic names and make sure they are case sensitive. So MYPicture.gif is not the same a mypictuRE.gif. Frontpage tends to use lowercase image names and if you upload them to a Unix server such as is used by GDI they will not work,


    Title: Linking pages
    Post by: PenaE on October 12, 2007, 05:33:37 PM
    Hello everybody. I don't see any tools available in the website builder. How can I link page 1 and page 2 through an image. THX. ???


    Title: Re: Linking pages
    Post by: RodB on October 12, 2007, 09:50:25 PM
    Hello everybody. I don't see any tools available in the website builder. How can I link page 1 and page 2 through an image. THX. ???


    When you are in the sitebuilder edit mode  choose HTML and use the linking tool at the top of the page. (It is a small globe with a chain link under it) or in html mode type <a href="page1.html">Go to my page 1</a>


    Title: Re: HTML Questions? Ask Here!
    Post by: Fabio Spezzano on November 05, 2007, 08:30:57 AM
    hi guys
    i have a question
    How can i put html code banner or html code test link in the standard template of GDI?


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on November 05, 2007, 09:11:39 PM
    hi guys
    i have a question
    How can i put html code banner or html code test link in the standard template of GDI?

    In the site builder simply switch over to HTML mode and type in the code!


    Title: How to do "Click here"??
    Post by: JayudomInc. on November 06, 2007, 07:04:47 PM
    Hello, I'm working on my web site now and it's harder than I expected... 
    Can anyone show me how to place "click here" or when you place a cursor on a certain word or pictures you can able to click on it and go into that particular pages.
    Does this make sense??
    Am I able to do this with sitebuilder 3.0??

    Thank you so much.


    Title: Re: HTML Questions? Ask Here!
    Post by: Fabio Spezzano on November 07, 2007, 05:35:30 AM
    ok this i know
    but when i put html code in the block, the banner is in blank space of the block
    I would have banner in the template


    Title: Re: How to do "Click here"??
    Post by: RobertCoaster on November 07, 2007, 05:40:21 AM
    Hi,

    To make your links live use this command <a href="Your URL Link Here">Click Here</a>
    To make images clickable use <a href="You URL Link Here"><img src="Your Image URL Here"></a>

    Take care,
    Robert


    Title: Re: HTML Questions? Ask Here!
    Post by: SharynB on November 10, 2007, 11:54:38 PM
    Hello,

    Hypertext Markup Language (HTML) is the language in which all pages on the Web are written.

    Below is a list of basic HTML tags and their descriptions. I hope you all will find this helpful in building your Websites.

    <HTML> </HTML> - Identifies the file as an HTML document to the program opening it.

    <HEAD> </HEAD> - Identifies the document’s head area, where you can code information about your document, including its title.

    <TITLE< </TITLE> - Formats the documents title, which appears in the browser’s title bar.

    <BODY> </BODY> - Identifies the document’s body area, which contains the Web page contents that appear in the browser’s window.

    <BR> - Adds a line break; does not require a closing tag.

    <P> - Adds a blank line before and after the current paragraph; does not require a closing tag.

    <CENTER> </CENTER> - Horizontally centers the enclosed text or image.

    <U> </U> - Adds underline format to text.

    <STRONG> </STRONG> - Adds bold format to text. NOTE: Do not use the <B> </B> tags for bold because not all browsers will interpret.

    <EM> </EM> - Adds italic format to text. NOTE: Do not use the <I> </I> tags for italic because not all browsers will interpret.

    For highlighting text, you would use the following tags:

    <span style="background-color: #FFFF00">Your Text Goes Here</span>

    The #FFFF00 you see above is the value for yellow. To view all HTML color names see http://webmonkey.wired.com/webmonkey/reference/color_codes

    <A> </A> - Marks the beginning and end of a hypertext link.

    <A HREF="URL

    Example: <A HREF="http://www.mywebsite.ws">Click Here</A>

    To open your Website in a different window use the following:

    <A HREF="http://www.yourwebsite.ws" TARGET="_blank">Click Here</A>

    <IMG> - Used to insert an inline image in the document.

    <IMG SRC="Document - The source of the inline image

    <IMG BORDER="Value – The size of the border around the image, in pixels.

    <IMG HEIGHT="Value – The height of the image in pixels.

    <IMG WIDTH="Value – The width of the image in pixels.

    <IMG HSPACE="Value – The amount of space to the left and right of the image, in pixels.

    <IMG VSPACE="Value – The amount of space above and below the image, in pixels.

    Example: <IMG SRC="image.jpg" Width=200 Height=60>

    <FONT> </FONT> - Used to control the appearance of the text it encloses.

    <FONT COLOR="Color – The color of the enclosed text.

    <FONT SIZE="Value – Size of the font on a seven point scale. (1 is smallest, 7 is largest). Specifying SIZE=5 sets the font size to size 5 on the scale.

    Example: <FONT COLOR="#FF0000" SIZE=3 FONT=Times New Roman>Global Domains International</FONT>

    Nicole

    HTML Second Edition, Reding/Vodnik 2001

    Hi Nicole,

    I am wanting a website something like yours, how do I do it.? 


    Title: >head< to >head<
    Post by: KeithWorboys on November 22, 2007, 08:04:37 AM
    Hi y all,

    Hopefully somebody can answer this and the answer can remain here for the aid of many.

    Google have given a code that needs to be added to my site between the two >head< section of the HTML ?

    Please.  How can i edit this section as the only time i can find it is when i right click on the title and then click view source ?

    Is it at all possible to insert the google code into the >head< section with site builder when using windows xp sp2.   ???

    ps. I have tried inserting it in meta tags, description, keyword and just about everywhere else with no joy.  You could say that i am loosing my head, but i have to find it first, he he   :D





    Title: Re: >head< to >head<
    Post by: RodB on November 23, 2007, 04:39:20 AM
    Hi y all,

    Hopefully somebody can answer this and the answer can remain here for the aid of many.

    Google have given a code that needs to be added to my site between the two >head< section of the HTML ?

    Please.  How can i edit this section as the only time i can find it is when i right click on the title and then click view source ?

    Is it at all possible to insert the google code into the >head< section with site builder when using windows xp sp2.   ???

    ps. I have tried inserting it in meta tags, description, keyword and just about everywhere else with no joy.  You could say that i am loosing my head, but i have to find it first, he he   :D


    Yes - the workaround is add the following at the very END of the site builder form that takes the meta description


    ><Whatever the Google Meta Tag is 

    You must start it with >< and there must be NO > at the end
    You can add as many header tags as you like in this way


    Title: Re: HTML Questions? Ask Here!
    Post by: K Dozsane Nagymajtenyi on November 25, 2007, 07:53:03 PM
    Hi!

    I have same problem, cannot place the Google meta tag in website builder, tried into meta description, no success, please help


    Title: Re: HTML Questions? Ask Here!
    Post by: RodB on November 25, 2007, 08:00:28 PM
    Hi!

    I have same problem, cannot place the Google meta tag in website builder, tried into meta description, no success, please help

    Hi

    In the description meta tag box
    type the following after your description.


    ><meta name="verify-v1" content="FbiPSd0VuRkMvrjTd2XZfs9F8+h6pEKRdcaalUHHvZg=" /

    So for example if the description was This is my new GDI site

    The following should go in the description box

    This is my new GDI site><meta name="verify-v1" content="FbiPSd0VuRkMvrjTd2XZfs9F8+h6pEKRdcaalUHHvZg=" /


    Title: Re: HTML Questions? Ask Here!
    Post by: William Bauwens on January 06, 2008, 06:31:23 AM
    Hi all, greetings from belgium ;)
    what am i doing wrong i put this code into sitebuilder but it won't work
    <HTML>
    <HEAD>
    <TITLE>http://williambauwens.ws/page3.html</TITLE>
    </HEAD>
    <BODY>
    <script language="JavaScript" src="http://www.mypowermall.com/Biz/Home/5236">
    </script>
    </BODY>
    </HTML>

    I want to put this page on my website but i can't do it something is wrong please help
    best wishes for a gr8 NewYear
     belgianbill  :-*
     www.williambauwens.ws
     Online shopping revolution



    Title: How do i insert my links
    Post by: Richard Glover on January 24, 2008, 03:58:16 AM
    say if i was promoting my power mall and i wanted page 2 to be my online mall page how would i do that


    Title: HTML Questions? Ask Here!
    Post by: GerardoCollazo on January 27, 2008, 10:04:10 AM
    Hi, I have tried to insert a html Event Attributes on my page. In edit content have design, html code and preview. In preview accepts all Event Attributes but when submit information in the my page appears in the Status Bar Error on Page. It is a system of voting. We have created for our site. This is the code that you want to insert.  www.campanas.ws http:// Thanks

    <script>
    function goupone(){
    var a=document.Vote.sky.value;
    bi=parseInt(a);
    bi=bi+1;
    document.Vote.sky.value=bi;
    }
    </script>
    </head>

    <table border="1"
    cellpadding="5" align="center">
    <tr>
          <td align="center"><form name="Vote"  action="Same;onclick "target="_self">
          <input type="text" value="0" name="sky" Size = "5" readonly="true" style="background-color: #ffff99; color: #ff0000; font size:30 align: left " ><br>
          <input type="button" value="         Vota Aquí / Vote Here         "  Size="200"  style="background-color: #009999; color: #0000cc;" onClick="goupone();this.style.display='none';">
          </form></td>
          </tr>
          </table>


    Title: Re: HTML Questions? Ask Here!
    Post by: TiongC on January 31, 2008, 07:50:41 PM
    dear all,

    i need some help here,

    i got a website with the html coding,

    but when i publish it, i find out there are 1 problem.

    i put some advertisement on the website to earn additional income, but i found out most of the time when i open the page, there are some error and the advertisement is not shown.

    can anyone tell me what is the error with my html?

    my web page is www.globmex.ws


    Title: Re: HTML Questions? Ask Here!
    Post by: TiongC on January 31, 2008, 07:51:05 PM
    i put some advertisement and some text on my website,

    but i found out there are some problem, most of my pages was not able to load properly.

    can someone help me to check my html and see what is the problem?

    my page: www.globmex.ws



    Title: Re: HTML Questions? Ask Here!
    Post by: SandraV on March 01, 2008, 02:19:55 PM
    Please could you help me.

    How do I insert the income calculator on my web page (using sitebuilder).  I saw an earlier post but that didn't seem to work. ???

    Thanks


    Title: Re: HTML Questions? Ask Here!
    Post by: J Hilburn on March 03, 2008, 03:58:13 PM
    HI, ;D I dont know if this is a html question or not but I need to connect my new blog site with my gdi site.  any help would be greatly appreciated. 

                                                                                                                                                               thanks 

                                                                                                                                                                    a newbie ::)


    Title: Re: HTML Questions? Ask Here!
    Post by: Dave H on March 21, 2008, 09:57:50 AM
    Hi a newbie, You would be able to put a link on your ws site to your blog URL, is that what you mean?
    <a href="www.thisisalinktomyblog.com" target="_blank">MyBlog</a>
    All the best Dave


    Title: Re: HTML Questions? Ask Here!
    Post by: Dave H on March 21, 2008, 09:57:50 AM
    Quote
    How do I insert the income calculator on my web page (using sitebuilder).  I saw an earlier post but that didn't seem to work.
    Try putting the following code into the html editor of your page, worked for me.
    All the best Dave

    <HTML>
    <HEAD>
    <meta http-equiv=Content-Type content="text/html;  charset=ISO-8859-1">
    <TITLE>INCOME CALCULATOR</TITLE>
    </HEAD>
    <BODY bgcolor="#ffffff" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 >
    <SCRIPT LANGUAGE=JavaScript1.1>
    <!--
       window.onresize=RefreshPage;
       
       function RefreshPage()
       {
          window.location.reload();
       }

    var MM_contentVersion = 6;
    var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;

    if ( plugin ) {
          var words = navigator.plugins["Shockwave Flash"].description.split(" ");
           for (var i = 0; i < words.length; ++i)
           {
          if (isNaN(parseInt(words)))
          continue;
          var MM_PluginVersion = words;
           }
       var MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
    }
    else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0
       && (navigator.appVersion.indexOf("Win") != -1)) {
       document.write('<SCR' + 'IPT LANGUAGE=VBScript> \n'); //FS hide this from IE4.5 Mac by splitting the tag
       document.write('on error resume next \n');
       document.write('MM_FlashCanPlay = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & MM_contentVersion))) \n');
       document.write('</SCR' + 'IPT> \n');
    }

    if ( MM_FlashCanPlay ) {
       document.write(' <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH=100% HEIGHT=100%> ');
       document.write(' <PARAM NAME="movie" VALUE="http://images.website.ws/kvmlm2/st_calculator.swf"> ');
       document.write(' <PARAM NAME="loop" VALUE="false"> ');
       document.write(' <PARAM NAME="quality" VALUE="high"> ');
       document.write(' <PARAM NAME="bgcolor" VALUE="#ffffff"> ');
       document.write(' <EMBED src="http://images.website.ws/kvmlm2/st_calculator.swf" loop="false" quality="high" bgcolor="#ffffff" WIDTH="100%" HEIGHT="100%" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED> ');
       document.write(' </OBJECT> ');
    } else{
       document.write('No flash is available. Please visit <a href="http://www.macromedia.com/go/getflashplayer">http://www.macromedia.com/go/getflashplayer</a>');
    }

    //-->
    </SCRIPT>
    </BODY>
    </HTML>


    Title: Re: HTML Questions? Ask Here!
    Post by: E_Kraus on April 11, 2008, 10:43:33 AM
    This script does not work on my web page.  It will show in the preview area, but it will not stay live when I hit submit.  Any suggestions?


    Title: Re: HTML Questions? Ask Here!
    Post by: Cheryl Marko on April 25, 2008, 09:48:18 AM
    hi im new to GDI i have already built my webage but i want to add html codes to it to promote affiliate programs...how do i do that....can anybody help me with this...thanks...cheryl


    Title: Re: HTML Questions? Ask Here!
    Post by: JQuisumbing on June 04, 2008, 11:26:17 AM
    HELP!

    i need the html code to open another website in separate window.

    how do i do this with a picture link?

    johann


    Title: Re: HTML Questions? Ask Here!
    Post by: HGacheche on October 21, 2008, 05:06:09 PM
    how do i host my own HTML
    Hello,

    Please use this section to post all HTML questions. Before submitting, read through the posts to make sure your question hasn't already been answered.

    Thank you,

    Nicole


    Title: Have a html ask
    Post by: Karl-Christian Dunkelgut on November 01, 2008, 09:58:48 AM
    Hi, my name is Karl and i´m new by the GDI. Sorry for my bad English but i hope you can understand me. I´m working on my website with the website builder. Now i´m working on the 4th Page who can visitors register on the GDI-Account Setup page. How i can jump with the page to the GDI page? Please step by step ;D


    Title: Re: Have a html ask
    Post by: DPro on November 01, 2008, 02:59:28 PM
    Hi, my name is Karl and i´m new by the GDI. Sorry for my bad English but i hope you can understand me. I´m working on my website with the website builder. Now i´m working on the 4th Page who can visitors register on the GDI-Account Setup page. How i can jump with the page to the GDI page? Please step by step ;D

    Hi Karl,

    You can put a link on the page, for example:
    Click here to register with GDI
    When your visitors click on the link, they will be taken to your GDI sign up page.
    1.Click on text on your new page
    2.Type the anchor text that you want people to see, such as "Click here to register with GDI"
    3. Click on the link icon on the menu
    Type in the form that pops up, at the URL field your GDI affiliate link (http://www.movie.ws/your username)

    see screenshot below
    (http://farm4.static.flickr.com/3008/2992575415_f56d7050cd_o.png)




    Title: Re: HTML Questions? Ask Here!
    Post by: Tidarut Hansub-Udom on December 15, 2008, 11:15:11 AM
    HELP!

    i need the html code to open another website in separate window.

    how do i do this with a picture link?

    johann

    <a href="link.html" target="new"><img src="image.gif"></a>

    Use that sample I used and all you need to do is put the link and image of your choosing to replace the sample. Just leave the target part alone; it will open in a separate window. Hope this helps.


    Title: Re: HTML Questions? Ask Here!
    Post by: GreenD on January 06, 2009, 03:03:28 AM
    Place your own video on your site FREE!
    http://www.affiliatepowervideos.com/?vip=8212

    Question submitted by KLopez.

    I have a question. How do I put my voice on my website? I would like to record my voice and put it on there - welcoming people to my page or something but I'm not sure how to do it. I've seen a few pages that have that up but I have no idea how I would do that.

    Also, how can I get my movie presentation to show up on my website? I have seen several peoples websites and they have this on there also.

    Thanks in advance for your help.

    Answer submitted by Jim Stanger.

    To add a clickable link to a WAV file on your website:

    First, remember where you placed your sound file. Organization is key when making a website. Feel free to place your sound files in a "audio" directory, your images/pictures in an "images" directory, etc. That makes it much easier to refer to them when building a page with HTML (or, I assume, using the SiteBuilder, although I haven't used that.) Next, insert this HTML in the area you want to include the link:

    <a href="directoryname/filename.wav">Click To Hear My Introduction</a>

    ...where "directoryname" is the directory your sound file is in, and "filename.wav" is the name of the sound file. If the file is in MP3 format than the extention would be ".mp3" instead of ".wav". If you uploaded your sound file to the root level of your website (that is, not in a directory created by you) then you'd leave the directory name out of the portion in quotes.

    Hope this helps!


    Title: Re: HTML Questions? Ask Here!
    Post by: CarlKeyes on January 12, 2009, 03:36:27 AM
    Hi,

    I've customized, best I could, this site: http://www.carlandlola.com/test/ from one of the templates but can't seem to get the form to work.
    Any help with this would be greatly appreciated!

    Thanks,

    Carl


    Title: using html in the site builder
    Post by: ManuelMontes on February 07, 2009, 04:17:29 PM
    I've been trying to use HTML on my page. Every time I insert an HTML code, then click on the preview button, all I see is the same code that I entered. I never see the actual image that I was going for. Am I missing something here? Where am I going wrong?


    Title: Re: HTML Questions? Ask Here!
    Post by: J Reedy on March 15, 2009, 01:26:00 PM
    Hi, I don't want to sound petty but where do you put html on the new 4.01 editor? I could find it on the old one. Is it the widgets, because I have had little luck getting mine to be approved, and have not been able to play streaming video for my music school. I understand most of the applications on this page but no one has actually explained to me where you paste the html codes in the new editor!


    Title: Re: HTML Questions? Ask Here!
    Post by: AnneL on April 02, 2009, 08:20:35 AM
    Please help the newbie. I'm fairly intelligent but I can't for the life of me get the software to accept copying/pasting the html code for the banners.

    I would be SO grateful for some help.


    Title: Re: HTML Questions? Ask Here!
    Post by: Hussain Khan on April 29, 2009, 09:23:03 AM
    Hi, Can anyone help me on how to make a capture page on sitebuilder? I tried to copy html code for capture page but was unable to paste it when editing my webpage. I had clicked the source button but the html just cannot be pasted. Thanks.


    Title: Just straight HTML mode?
    Post by: MirandaLloyd on May 12, 2009, 05:18:02 AM
    Hey, I was wondering if there's a way to edit my website in just straight HTML mode. The Site Builder is extremely taxing on my processor, and doesn't seem to work for me at all. I click an option and it just moves the toolbox around. :(


    Title: Re: HTML Questions? Ask Here!
    Post by: Dave H on May 12, 2009, 02:28:32 PM
    Quote
    Please help the newbie. I'm fairly intelligent but I can't for the life of me get the software to accept copying/pasting the html code for the banners.

    I would be SO grateful for some help.
    Hi Anne, Can't uderstand why it isn't working for you, I've just tried it and it worked fine for me.
    First make quite sure that you have actually copied the code..ie:highlight the text and then copy..(I normally do this by using the edit tool at top of my browser) I also use the edit tool again to select paste, don't know what else to say to help..use source option to paste the html code into the page you are editing.
    All the best Dave


    Title: Re: HTML Questions? Ask Here!
    Post by: Rick_C on June 14, 2009, 10:35:47 PM
    You have to be in html mode to do this. There is a tab at the bottom of the editor to do this.

    Hello, I am new to GDI and I am trying to figure out how to copy an html code using Sitebuilder.  I notice where you say that one must be in html mode and look for the tab at the bottom of the editor - however, I see no tab like this.  Am I missing something?  Is there a setting I might not have on?  Thank you for any help you can give.
    rc


    Title: Re: HTML Questions? Ask Here!
    Post by: Anthony Albanez on July 01, 2009, 03:16:06 PM
    I want to add my Twitter widget on my website and it gives me the HTML code and I tried to follow the directions on how to add it in the editor but it does not work.

    Please help me!   I try to use the HTML in the text tab of the web editor but nothing works

    Thanks,

    Anthony


    Title: Re: HTML Questions? Ask Here!
    Post by: Nazneen Jaleel on July 19, 2009, 06:46:00 AM
    hi everybody...i am fairly new here...n it wud be luvely if i cud get sum help...building my website!


    i've typed in ol da data required...now at de end...i wud want to put a REGISTER HERE button...and link it to a lead capture page...or da GDI presentation!!!

    pls give me step by step instructions...cuz i m not in2 web designing at ol...thanx


    Title: Re: HTML Questions? Ask Here!
    Post by: Bobby C on August 12, 2009, 03:00:37 AM
    I spent many months learning HTML then I found 90 second Website Builder. I've try many other site building programs, this one is simple to use cost about $70 I put a link to it from my site http://www.cru-ven.ws/ this is an affiliate link on my site but because it was so simple to use is why I started promoting it
    Bobby


    Title: Re: HTML Questions? Ask Here!
    Post by: Cynthia R on September 07, 2009, 07:35:01 PM
    Please help the newbie. I'm fairly intelligent but I can't for the life of me get the software to accept copying/pasting the html code for the banners.

    I would be SO grateful for some help.

    Open the Content Editor and select Source at the bottom of the box. Copy and paste the html code there.


    Title: Re: Modify banner code
    Post by: T_LeBlanc on October 05, 2009, 02:46:05 PM
    Where do I put my WS site url in the banner code to direct visitors to my site?


    Title: Updating 'index.html' file
    Post by: Lebo Serem on October 27, 2009, 01:31:03 PM
    Uploading updated index.html files

    How can I update my 'index.html' file? I have tried to do so unsuccessfully several times.

    Lebo Serem


    Title: Re: HTML Questions? Ask Here!
    Post by: Ionut Astalis on November 20, 2009, 05:32:24 AM
    Heeeelp !!!

    Hello everybody, I want to start building my website with website-builder and the first thing I want to do is to put on the home page an option from where people can choose the language in which the site will be displayed ::) .

    How can I do that?  ???

    Thank you so much,
          Johnnie


    Title: HTML
    Post by: R Wilding on November 20, 2009, 09:45:30 AM
    Hi all,

    Could anyone let me know how to put written HTML up on my domain. Is there an area of the sitebuilder for this or something? Any advice would be helpful thanks,

    R


    Title: Re: HTML Questions? Ask Here!
    Post by: DRooney on November 23, 2009, 02:59:35 AM
    I think I know what you are looking for... while you are on your page in the site builder program, click on text in the left - hand menu...a text box will pop up. Then click on "source" at the bottom of the box ( be sure and delete any stray html that is there before you copy your html ) Click preview to make sure it is working before you place  the box on your page. :)


    Title: how do I remove page links?
    Post by: BSouza on December 25, 2009, 06:16:46 AM
        I do not want my pages to automatically show up as links of other pages, I want to have each page a stand alone if I want to add the links I know how but subtract duh...can't figure it out
    happy Holiday and God Bless
       Thank you
    Bree


    Title: Re: HTML Questions? Ask Here!
    Post by: WuFanxin on January 11, 2010, 01:24:41 PM
    hi there,
    i just wanna know whether i can use my own css, coz i havenot tried yet


    Title: Problems pasting html into text editor.
    Post by: J Reedy on March 28, 2010, 01:35:01 PM
    Why can't I get html codes to work with the text editor? I am copying codes from templates I know work, and selecting source and then it will only give me the option to select all, not paste! When I manually put it in just the html shows up on the preview, not the actual thing that is supposed to be there!


    Title: Re: Problems pasting html into text editor.
    Post by: NikoletaSkoulika on September 06, 2011, 11:47:41 AM
    Why can't I get html codes to work with the text editor? I am copying codes from templates I know work, and selecting source and then it will only give me the option to select all, not paste! When I manually put it in just the html shows up on the preview, not the actual thing that is supposed to be there!

    same here, i wanna add some javascript code to my page, i paste code to source but on preview i see: JAVASCRIPT and nothing shown


    Title: Re: HTML Questions? Ask Here!
    Post by: Darryl_B on October 03, 2011, 09:28:48 AM
    HELP!.
    I have been on this site for about 4 days now. Reading watching videos etc. Also asking questions. I builts my website through here but one I set it to go live I received an e-mail from domain informing me I need a HTML upload for files and need to configure my FTP so I can upload files.
    This is confusing. Why can't things be made easier to explain step by step how to actually build the web site with site builder and how to exactly get it live. When I view my web site a error comes up 403? i think. Can some one please explain to me and help me get this up and running. I really want to stay with GDI but am getting really fustrated at this point.
    Thank You in advance
    Darryl


    Title: Re: HTML Questions? Ask Here!
    Post by: Nav M. on October 04, 2011, 10:29:48 AM
    HELP!.
    I have been on this site for about 4 days now. Reading watching videos etc. Also asking questions. I builts my website through here but one I set it to go live I received an e-mail from domain informing me I need a HTML upload for files and need to configure my FTP so I can upload files.
    This is confusing. Why can't things be made easier to explain step by step how to actually build the web site with site builder and how to exactly get it live. When I view my web site a error comes up 403? i think. Can some one please explain to me and help me get this up and running. I really want to stay with GDI but am getting really fustrated at this point.
    Thank You in advance
    Darryl

    Hello,

    If you have designed your site using a third party application such as Dreamweaver, Microsoft FrontPage etc etc then you WILL need to configure some FTP settings. BUT if you have designed your site with the website builder, then you can just hit the upload button, and your site will be live.

    Make sure you have the site builder option selected for the domain you wish to use it on. To see if it's selected, follow the steps below:

    1.) Login to your members area
    2.) Click domains (in the side menu bar)
    3.) Look for your domain
    4.) check the DNS setting
    5.) if it states SiteBuilder, then its fine, if not, follow on
    6.) click change DNS
    7.) select sitebuilder and then click continue

    once thats done, you can use the site builder and have your site up in seconds....

    Nav


    Title: How to add buy button from Paypal ?
    Post by: RBahl on October 11, 2011, 09:30:54 AM
    Hi,

    Can someone let me know step by step, how a buy button/cart can be copied and pasted on my webpage from Paypal ?
    Buttons, banners are fine from GDI sitebuilder but it does not happen while pasting from Paypal.

    Thanks for any ones time.

    Cheers.

    tony
    @tgvsolutions.ws


    Copyright © 2024 by Global Domains International, Inc. · All Rights Reserved
    701 Palomar Airport Road #300 · Carlsbad, CA 92011 · 760-602-3000