Archive for January, 2010

to submit your web site for SEO to all search engine

Tuesday, January 19th, 2010

to submit your web site for SEO to all search engine

http://www.submitexpress.com/submit.html

The main engines we submit to:

Google
Whatuseek
Wisenut
ExactSeek
Scrubtheweb
Jayde





In addition your site will be listed in the below Search Engines
:

AOL Search
HotBot
Search.com
Metacrawler
Dogpile
Mamma
C4
Canada.com
ixquick
Infogrid
WebInfoSearch
Fast Search (AllTheWeb.com)
Query Server
800go
Debriefing
Highway 61
37.com
OneSeek
MetaSpider
Vivisimo
PlanetSearch
surfwax
qbSearch
ProFusion
Proteus
Go 2 Net
MegaGo.com
WebFile
myGO
Megacrawler
Search Climbers

Post to Twitter Tweet This Post

  • Share/Bookmark

Wrapper/outer div to keep inner div top right regardless of resolution:

Wednesday, January 13th, 2010

Wrapper/outer div to keep inner div top right regardless of resolution:

<html><head>
<style type=”text/css”>
#divnamewrap{
height:140px;
width:100%;
position:absolute;
left:0px;
top:0px;
}
#divname{
height:140px;
width:185px;
position:relative;
z-index:0;
float:right;
}
</style>
</head>

<body>
<div id=”divnamewrap”>
<div id=”divname”>div content here </div> <!– top right this div will appear that’s why we used wrapper so that change of resolution should keep it on right –>
</div>
</body>
</html>

Post to Twitter Tweet This Post

  • Share/Bookmark

Vanishing a div using JavaScript timer and CSS display none

Monday, January 11th, 2010

Vanishing a div using JavaScript timer and CSS display none

<html>
<head>
<script type=”text/javascript”>
function timedMsg() {
var t=setTimeout(“document.getElementById(‘vanish’).style.display=’none’”, 5000);
}
window.onload=timedMsg;
</script>
</head>
<body>
<div id=”vanish” style=”position:absolute;left:420px;top:750px;”>Game loads after trailer</div>
</body>
</html>

<html> <head> <script type=”text/javascript”> function timedMsg() { var t=setTimeout(“document.getElementById(‘vanish’).style.display=’none’”, 5000); } window.onload=timedMsg; </script> </head> <body> <div id=”vanish” style=”position:absolute;left:420px;top:750px;”>Game loads after trailer</div> </body></html>

Post to Twitter Tweet This Post

  • Share/Bookmark

Converting youtube video into mp3 – how to do it

Friday, January 1st, 2010

1. Download and install youtube to mp3 software free:

http://avs4you.com/AVS-Video-Converter.aspx?type=GoogleAdWordsSearch&gclid=CPXn6s-BhJ8CFQoiagodSh8mmQ

2. Go to your favorite youtube video and copy URL from address bar

3. Run AVS software and paste in the area where it says paste here and remember the path where it’ll output mp3

OPTIONAL THINGS TO DO:

4. Now you can either copy from that folder to your mp3 player or open those files into itune to transfer to your iphone or ipod

5. if you want to rename right click (in pc, mac user ctrl+click) in itune onto a file and select get info to edit file related info i.e. album, artist, url, etc

6. to add another file to this album (group of mp3s) simply open any file in itune by right clicking and open in itune from folder (and rename to same album and artist) or in itune go to file menu and add file to library option.

Post to Twitter Tweet This Post

  • Share/Bookmark