Possibilities Are Endless
Customize Your Traffic Page
This is an example customization. All the menus are for illustration purposes only. They do nothing. You can customize to any degree you want.
The simplest customization
- If you have already created your Traffic Page, go to the bottom of your profile page (or by clicking My account from the menu) and click on your Traffic Page under the Traffic Pages heading.
- You will be taken to the View mode of your Traffic Page.
- Click on the Edit tab on the top of your Traffic Page.
- You can change the Traffic Page Title. The text in the Traffic Page Title is your page title (it is inserted in the <title> tag of the page.
- Work in the Traffic Page Content box of the edit form for customizing your Traffic Page.
- Enter an html header tag exactly like this:
<h1 class="color-brown">Your Title Here</h1>
- Start entering text or copy and paste.
- Twice press the keyboard "Enter" key to create a paragraph with a blank line inbetween paragraphs.
- If you want to place an active URL, start it with http to create an active hyperlink with the URL as your link text.
http://www.digmypage.com
- If you want your email on the page, enter it like this:
something@somewebserver.com
- If you want some other text for your hyperlink, other than URL as texts, start using HTML
<a href="http://www.url_to_my_page_with_anchor_text">Your Anchor Text</a>
- You must click the Submit button on the buttom of the page to save your work frequently. Do not click on the View tab on the page top before clicking the Submit button.
- You can use all HTML tags in the page except: html, head, title, meta, body
Embeding YouTube Video
- Go to youtube.com and search for your video using key words
- Click on the video to go to the single video page
- On your right hand side, on the top box "About This Video", there is a link "more info"
- Click on the "more info" link and it will expand. There is a text box called Embed. Click on the text box.
- Right click your mouse and copy the embedded link using the drop down menu when you get when you click the right mouse button.
- Paste the embedded object as it is in your edit form. The embedded object looks like this:
<object width="425" height="353"> <param name="movie" value="http://www.youtube.com/v/KjMRf4egAyA"></param> <param name="wmode" value="transparent"></param> <embed src="http://www.youtube.com/v/KjMRf4egAyA" type="application/x-shockwave-flash" wmode="transparent" width="425" height="353"> </embed> </object>
Uploading and Inserting Picture
- Pictures are uploaded using the Upload Image (located under the Title box) section.
- Using the Browse button, browse to uour harddrive and select the picture you want to upload
- Click the Upload button to upload the picture. The picture is not saved at this point. It is only uploaded to the server.
- If you want to upload multiple pictures, follow the above procedure to upload one picture at a time.
- Once you uploaded all pictures, go to the bottom of the page and click Submit button to save the pictures in the server.
- Change to Edit mode (clicking Edit tab) and you will be able to see your uploaded pictures and their file names given by the server.
- The relative location of the picture with respect to a Traffic Page is shown below. Change .ext to the actual file extension (gif, jpg, png).
sites/digmypage.com/files/wordpage/your_picture_name.ext
- There are two ways to embed uploaded pictures into your text
- Use the HTML image tag like this:
<img src="sites/digmypage.com/files/wordpage/your_picture_name.ext">
- Use the special image tag like shown below. Title and credit are optional.
[image:your_picture_name.ext|title=A Great Shot Of the White Sand Beach|credit=John Doe]
Advanced HTML Tips
- You can use all HTML tags in the page except: html, head, title, meta, body
- Create a div tag with a maximum width of 740px
- Place all your html tags inside the above div and style them accordingly
- The Body box of the Edit form is not exactly a text box. It will convert all line feeds (clicking Enter in your keyboard) to paragraph. You should be aware of this when you write your html in the Body box of the Edit form.