Thursday, February 19, 2009

Anti-Trojan Elite v4.3.4

Anti Trojan Elite(ATE) is a malware remover, it can detect and clean malware in disk or memory.Anti Trojan Elite provide a real-time malware firewall for user, once a trojan or keylogger would been loaded, the ATE can detect, block and then clean it in time before it starts. The ATE can detect more than 22000 trojans, worms and keyloggers currently, and the number of malware ATE could clean is growing up very quickly, we collect world-wide malwares, user can using our auto live update feature to get the power to clean these new malwares in time.


Anti Trojan Elite has some useful utilities especially. The network utility can been used to disconnect suspicious TCP connections; The process utility can been used to kill suspicious processes even the process has the system priviage, even it has the ability to unload suspicious modules in all processes; The registry repair utility can been used to repair registry altered by malware; The registry monitor utility can been used to repair any change of important registry keys and values with real time.

THE REASONS CHOOSE ANTI TROJAN ELITE
• Real-time malware firewall, protecting user's computer in real-time.
• Detecting and cleaning binded malware, doesn't hurt normal file and clean the malware.
• Detecting and cleaning no process malware, some malware don't have a EXE file, they are only some DLL files and running as some threads in other process, ATE can detect and clean this type of malware even it's running.
• Free tools. View the information of Tcp/Ip states and processes informations.

FEATURES

• Disk and memory scan supported.
• Real-time malware firewall.
• Compressed files (RAR ZIP CAB) scan supported.
• Backup module: Backup trojan files before killing.
• Network Manager. View the tcp/udp states and the processes they belonged to. User can disconnect any tcp connection and stop the opposite process.
• Process manager. View the processes and its DLL modules' information. User can terminate any process and unload any DLL module.
• Internet Explorer and registry repair utility.
• Updating online supported, and auto check updates when ATE starts.
• Real-time registry monitor utility.

Thursday, February 12, 2009

Set the Display Bloglist

Bloglist is a short description of the article, both in our blogs and other sites. I hope this tip can help

a. Maximizing the width bloglist content.

If you try to check the widget bloglist, the content or the content width is only about 85% of the width of the sidebar area. Bloglist be to maximize the full sidebar css code for adding it like this.

# BlogList1. Blog-content {
width: 95%;
}

Description:

# Bloglist1 is an Id that should be singular or unique. if you have multiple widgets bloglist then its id would like this #BlogList1 , #BlogList2, #BlogList3 onwards.

. Blog-content is a class that manage the contents, especially the distance (line height), size width etc..

width: 95% = size width bloglist content.


b. Displaying Images on the information in the widget bloglist.

Usually we see in the image bloglist are in the right side of the writing. to move the image in the top of any posts, move the html code this image.

<b:if cond='data:showItemThumbnail == &quot;true&quot;'>
<b:if cond='data:item.itemThumbnail'>
<div class='item-thumbnail'>
<a expr:href='data:item.blogUrl' target='_blank'>
<img alt='' border='0' expr:height='data:item.itemThumbnail.height' expr:src='data:item.itemThumbnail.url' expr:width='data:item.itemThumbnail.width'/>
</a></div></b:if> </b:if>

html code above this.

<div class='blog-icon'>
<b:if cond='data:showIcon == &quot;true&quot;'>
<input expr:value='data:item.blogIconUrl' type='hidden'/>
</b:if></div>

Description:

'data:item.itemThumbnail.height'

'data:item.itemThumbnail.width'

syntax can be replaced with a number, eg: 100, 150 or up to you.

Hopefully useful.