Increasing the Size of the webpage
-
Hello Friends, I've to increase the size of the webpage as one click on + link as shown in the url given http://www.postbank.de/[^]
You will need to assign a different Css class on the click of it. This Css will have a bigger font size. This is the simpest solution you can have.
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
Hello Friends, I've to increase the size of the webpage as one click on + link as shown in the url given http://www.postbank.de/[^]
Create CSS classes like
.fs12
{
font-size : 12px;
...
}
.fs14
{
font-size : 14px;
...
}Now when you load apply one default settings. And use javascript to change the class of each.:rose:
Abhishek Sur
My Latest Articles **Create CLR objects in SQL Server 2005 C# Uncommon Keywords Read/Write Excel using OleDB
**Don't forget to click "Good Answer" if you like to.