Hi buddies, am trying to paste a portion of content (which includes text and tables) from one of my webpages to another.. now, the content is sized accordingly to the original one and doesnt fits in at the new page.. Any simple method of resizing it without shrinking every individual table ? i'll be really grateful..
What do you mean you want to change all the sizes so they are smaller? If you used CSS you can do this by changing the width obviously.. Or if you are using dreamweaver you could use the find and replace and replace all the current heights with new ones in one click. That's if i understood you right, and if a width is already set on the table.
You could surround the pasted text with a DIV and give everything within the DIV a smaller font size using CSS. <div class="tiny"> ... </div> .tiny { font-size: 8pt }