A close associate who runs his own construction business has asked me to create a website for him using Joomla. I have successfully implemented most of the features he wanted, but now I need some assistance. He wants to showcase references written about him on another website. Initially, I tried using an iframe assuming it would automatically scale, but unfortunately, it did not.
After researching solutions, I am having trouble locating the correct .css file to properly scale the iframe. The code I attempted to use for scaling is as follows:
/* iframe */
#wrap { width: 1130px; height: 100%; padding: 0;
overflow: hidden; position:relative;}
#frame { width: 100%; height: 100%;
border: 1px solid black; position:relative; }
#frame {
zoom: 0.75;
-moz-transform: scale(0.75);
-moransform: scale(0.75);
-o-transform-origin: 0 0;
-webkit-transform: scale(0.75);
-webkit-transform-origin: 0 0;z-transform-origin: 0 0;
-o-t
}