frequently asked questions


general
what is readerrouter?
how do I sign up?
how much does readerrouter cost?
do I need to use the signup form?
other
my question isn't here
styling
how do I change the appearance of the readerrouter links?
CSS properties
what is the default css code?
troubleshooting
readerrouter is giving me an error
I don't see any links


general


what is readerrouter?

readerrouter is a neural network based network which intelligently links content on the internet.


how do I sign up?

just visit the homepage and scroll down to the signup area. Once you have filled out the form click the 'Generate Code' button. This will take you to a new page with a large text area. Copy all the text from the text area and paste it into your page.


how much does readerrouter cost?

Nothing! readerrouter is currently a free service.


do I need to use the signup form?

No, you can simply use the code block and fill in all the information yourself.




other


my question isn't here

The faq is still in it's infancy. If there is a question you need answered that isn't here, please submit it on the comments page. We will answer it to the best of our ability then, if necessary, add it to the faq.




styling


how do I change the appearance of the readerrouter links?

The appearance of the readerrouter links can be modified via css. The data will appear on your page as an unordered list. For specific css property names, please see the 'CSS properties' entry in the faq.


CSS properties

the readerrouter engine returns data as an unordered list <ul> with the id 'readerrouter'.
The title and descriptions are held in <li> tags with the following ids:
title: #readerrouter_title
summary: #readerrouter_summary
console: #readerrouter_console


what is the default css code?

<style type="text/css">

ul#readerrouter {
    padding-left: 2px;
    margin-left: 2px;
    list-style-position: inside;
    list-style-type: none;
}

li#readerrouter_summary {
    font-size: smaller;
    font-family: sans-serif;
    padding-bottom: 5px;
    font-style: italic;
    color: #999999;
}

li#readerrouter_title {
    font-size: smaller;
    font-family: sans-serif;
}

li#readerrouter_console {
    font-size: smaller;
    font-family: sans-serif;
    color:red;
}

</style>




troubleshooting


readerrouter is giving me an error

please review the error message text and follow it's instructions


I don't see any links

Please ensure you have included the entire code block in the page.