Your Ad Here

Tuesday, October 30, 2007

i can't see google adsense

hey, can anyone tell me why i cannot view google adsense? i tried FF, IE and safari but on all of them it doesnt show. i remember i once installed an extension for firefox to disables them, but i removed it already. any ideas?

oh and by the way, i was browsing this forum and i came across a thread that deals with getting banned from adsense. there it was written

Quote:

The reason why banned from google

1. Never hide text with the same colour as the background, Google is too smart for that

2. Duplicate content



Point number 2 shocked me as my page is still under construction and ive got a lot of pages where the content is just lorem ipsum
does it matter or should i just leave the page blank?

thanks in advance

Topic Replies: 1

Read More...

[Source: Ozzu - Posted by FreeAutoBlogger]
Your Ad Here

Showing empty cell.

I made an empty table cell and I need it visible so I can see its borders on my table. It works fine of course in FF. But in IE it doesnt display. I cannot use the non-breaking space "hack" because the cell needs to be smaller than the character and "empty-cells: show; " of course wont work in IE either. So is there anyway I can fix this besides using a 1px by 1px clear gif image?

Topic Replies: 0

Read More...

[Source: Ozzu - Posted by FreeAutoBlogger]
Your Ad Here

Windows Server 2003 Network Problem: need help

Hi,

Let me give you a brief story prior to the incident for clues:

We have a Windows Server 2003 and recently changed our Router from DHCP to Static IP and soon after got a VPN hardware and connected it to the server. Now, because we signed up for a Static IP, cablevision had to change our modem and give us a cisco router to connect to it.

I dont know if the recent changes had to do with anything but that could lead to cause of our lost of online connection.

Soon after the recent changes, Ive been noticing that the server lose online connection and when it does, so is the rest of the workstations. And ODDLY enough, that problem can be solved if you right click on the network icon located at the bottom right of the screen and hit REPAIR. Everyday for almost every hour or two this keeps hapenning.

I tried disconnecting and unplugging the VPN hardware to see if it is the cause but its not.

I dont know what to do and I desperately need help please...

Topic Replies: 17

Read More...

[Source: Ozzu - Posted by Kishore Vengala]
Your Ad Here

google vs yahoo

Hi there

I have noted that for the same keyword my website is positioned in yahoo and google with a huge difference....

example some key is n1 in yahoo and not even listed in the top 100 in google or viceversa.

How can that be?
Arrow

Topic Replies: 0

Read More...

[Source: Ozzu - Posted by Kishore Vengala]
Your Ad Here

Tips from "Google Guy" on how to increase traffic.

Im sure some of you will have heard of "Google Guy".
He is an ex-employee of Google and once, kindly posted on WebmasterWorld a list of things that he knows Google to think well off.
Or rather, did at the time. Google are always changing their opinions but I think some things will always remain the same.
Here are some of the recommendations which I found particularly useful.

1. Four of the 26 pointers by Google Guy speak of adding content.

Add, add, add.
Google loves it, and your visitors will love it.
Assure it is quality content though. You are looking for quality over quantity here.
Sure, you can turn out 5 mediocre articles in the time it takes to write one excellent article.
However, once that excellent article is on your site, people will bookmark your page and recommend you to friends and online contacts.

2. Keep your pages small.

Aim for between 5K and 10K.
Many of your visitors will still be using dial-up connections.
Dont alienate these visitors by building pages that load slowly.

3. Use your keyword in the following ways:

Once in the title, once in the description tag, once in the heading, once in the url, once in bold, once in italic and once high on the page.
Dont aim for misspelled keywords.
The search engines are getting smarter and now often correct spelling mistakes as people search for them.

4. Create links from one page to another within your website.

In this way, you even-out the entire PR of your website, as opposed to having one page which ranks very highly and other pages which dont.
So, for example, if when writing one article, you mention a point which is covered in more detail in another article, link to that article.
Use the keyword for the other article in the link.

5. If you are using your website to promote your off-line business, dont just put up an online flyer.

Provide your visitors with information that they can use, not just information about you and your company.
Unless they are specifically looking for information about you, they will click away from your site.


He actually made 26 points altogether but some are quite obvious, others repetitive.
I have the complete list of pointers which I found helpful on my website at the following link: http://www.website-copy-writer.com/google-guy-recommendations.html

Hope yall find it helpful!

Topic Replies: 2

Read More...

[Source: Ozzu - Posted by FreeAutoBlogger]
Your Ad Here

Fully functional mp3 player w/scrolling track info

Hey guys,

Im new to the site and I thought you guys could make a few suggestions and assist me. I have created an mp3 player with the play/pause toggle, next button, mute button, and track information text field. Now what I want to do is create a previous track button (back button) and I would like my track information to scroll horizontally. Does anyone know where I can find that tutorial or can someone share their knowledge on this? Thanks in advance. Your help is appreciated.

Here is my actionscript(this does not include the class actionscript or xml)

//Setup sound object
var s:Sound = new Sound ();
s.onSoundComplete = playSong;
s.setVolume(75);

//Array of Songs
var sa:Array = new Array();

//Currently playing song
var cps:Number = -1;

//Position of Music
var pos:Number;

//Load the songs XML
var xml:XML = new XML();
xml.ignoreWhite = true;
xml.onLoad = function()
{
var nodes:Array = this.firstChild.childNodes;
for(var i=0;i{
sa.push(new Song(nodesi.attributes.url,nodesi.attributes.artist,nodesi.attributes.track));
}
playSong();
}

xml.load("songs.xml");

//Play the MP3 File
function playSong():Void
{
s = new Sound();
s.onSoundComplete = playSong;
s.setVolume(75);
mute.gotoAndStop("on");
if(cps == sa.length -1)
{
cps = 0;
s.loadSound(sacps.earl, true);
}
else
{
s.loadSound(sa++cps.earl, true);
}
trackInfo.text = sacps.artist + " - " + sacps.track;
playPause.gotoAndStop("pause");
}

//Pauses the Music
function pauseIt():Void
{
pos = s.position;
s.stop();
}

//Pauses the Music
function unPauseIt():Void
{
s.start(pos/1000);
}

//Music Controls

//Play/Pause Toggle
playPause.onRollOver = function()
{
if(this._currentframe == 1)this.gotoAndStop("pauseOver");
else this.gotoAndStop("playOver");
}

playPause.onRollOut = playPause.onReleaseOutside = function()
{
if(this._currentframe == 10)this.gotoAndStop("pause");
else this.gotoAndStop("play");
}

playPause.onRelease = function()
{
if(this._currentframe == 10)
{
this.gotoAndStop("playOver");
this._parent.pauseIt();
}
else
{
this.gotoAndStop("pauseOver");
this._parent.unPauseIt();
}
}

//Next Button
next.onRollOver = function()
{
this.gotoAndStop("nextOver");
}

next.onRollOut = next.onReleaseOutside = function()
{
this.gotoAndStop("next");
}

next.onRelease = function()
{
this._parent.playSong();
}

//Mute Button
mute.onRollOver = function()
{
if(this._currentframe == 1)this.gotoAndStop("onOver");
else this.gotoAndStop("offOver");
}

mute.onRollOut = mute.onReleaseOutside = function()
{
if(this._currentframe == 10)this.gotoAndStop("on");
else this.gotoAndStop("off");
}

mute.onRelease = function()
{
if(this._currentframe == 10)
{
this.gotoAndStop("offOver");
s.setVolume(0);
}
else
{
this.gotoAndStop("onOver");
s.setVolume(75);
}
}

Topic Replies: 0

Read More...

[Source: Ozzu - Posted by FreeAutoBlogger]
Your Ad Here

HTML drop down menu

hey, i have a small problem with my html dropdown menu. the problem is the bg color changed suddenly from white to light-yellow. i used exactly the same code as for the other pages where the bg still is white. i even compared them and they are 100% identical. so how can the other one be light-yellow?

here is my code:

CODE:



and here my css:

CODE:

option.main {
font-family: Arial;
font-size: 12px;
background-color: #4d4d4d;
font-weight: bold;
color: ffffff;}

option.under {
font-family: Arial;
font-size: 12px;
background-color: #ffffff;
font-weight: normal;
color: 000000;}

option.main2 {
font-family: Arial;
font-size: 12px;
background-color: #D34A0E;
font-weight: bold;
color: ffffff;}

select.selection {
border: 1px solid #4d4d4d;
background-color: #ffffff;
}



does anyone know why?
thanks Smile

Topic Replies: 5

Read More...

[Source: Ozzu - Posted by FreeAutoBlogger]
Your Ad Here

this computer does not support the required audio compressio

i just got this laptop.

brand new Alienware laptop literaly out of the box.

playback works fine, i dont have a mic on it yet, but when i go into yahoo messenger and into conference with my girlfriend, i cant hear her talk, on my xp laptop (right next to this one) even without a mic, i could hear other people talk.

i keep having a popup that says "this computer does not support the required audio compression format" when i go into conference or chat rooms.

any idea on how i can fix this problem, vista is annoying the crap out of me.

thanks Smile

Topic Replies: 2

Read More...

[Source: Ozzu - Posted by FreeAutoBlogger]
Your Ad Here

SITE REVIEW: Celandine Web Design

Hi,

Ive just uploaded my first website ever and Id love some constructive criticism (I hope to grow up to be a proper web designer, so dont be too gentle. But it is my first site ever, so do be a little bit gentle Smile

The site is at www.celandinewebdesign.com .

Celandine

Topic Replies: 0

Read More...

[Source: Ozzu - Posted by FreeAutoBlogger]
Your Ad Here