New Watercraft Factory Web site is live!!

kawasakit2me

Hooked on the Jamz
Go into your phishing filter settings and select the "restore advanced defaults" button and everything is okay.

I triggered it when my mouse went over the Quick Browse window in the parts section.

Boykid, thanks so much for taking the time to do some troubleshooting.

It's the iframe (the quick browse and featured products on the front page are both using iframes). Apparently iframes can be used in malicious ways, so perhaps any usage of an iframe gets flagged??

Will just have to find another way to display those sections. We don't want to be setting off people's alarm bells.

Thanks for pinpointing the problem Boykid! :arms:
 
You can avoid using iframes by using dividers. It is much better for search engines and the user experience.

You can nest a divider inside of a table and it will work just fine. Sometimes things get hairy though if you're using AJAX, but I don't see any ajax that would cause problems.

<style type="text/css">
.featured {
width: 180px;
overflow: auto;
}
</style>

<div class="featured">
featured content here
</div>

And a new and improved CSS way of doing it:

<style type="text/css">
.featured {
width: 180px;
overflow-y: auto;
overflow-x: hidden;
}
</style>

Which will prevent sidescrolling in a DIV.

And a quick google search for a demo: http://www.domedia.org/oveklykken/css-div-scroll.php
 
Last edited:
Top Bottom