hi im using ibp to improve my seo i am getting this error Your web page uses 42,511 bytes of style sheet code which makes it harder for search engines to index your page. Consider putting the style sheet code in an external file with the <link rel="stylesheet" href="mystyles.css" type="text/css"> command. The file "mystyles.css" should be a simple text file that contains only the style sheet code without any HTML markup. The next time your page is spidered by the search engine robots, the important content on your page will be closer to the top of the page, and you might have a better keyword density can anyone help what do i do
Do exactly what it tells you to do. Remove the <style type="text/css"></style> tags and their contents from your pages, put everything BUT the HTML code (including HTML comments) into a separate text file, and save it as screen.css Then determine where you want the stylesheet to go (I have a separate directory for my style sheets called "styles" that goes right below the root) and then link your pages to it. For example, if your stylesheet gets placed in a folder called "styles" that is a direct descendent of the root directory (where your home page is), then you'd link to your stylesheet like this: [b]HTML 4.01[/b] <link rel="stylesheet" type="text/css" href="http://www.example.com/styles/screen.css" media="screen,projection"> [b]XHTML 1.0[/b] <link rel="stylesheet" type="text/css" href="http://www.example.com/styles/screen.css" media="screen,projection" /> Code (markup): Depending on which DOCTYPE you use (if you care about valid code that is), pick the version that meets your needs, then replace www.example.com with your domain name and put that code inside the HEAD section of your Web page. If you want to see an example, go to http://www.dan-schulz.com/for-others/feliciaf/tell-tails/template.html (note that this demo has the stylesheet in the same directory as the tmeplate file).