Ruchic1 wrote:
Something like this:
How to create fixed sized box on the page?By inserting table of 1 row and 1 column i created a box and want to insert a picture in it but i want the table should be of fixed size and doesnt take the size of the picture.The table should be fixed as we can resize the pic .Can you please suggest something on this regard.You can create a style class that does that and apply it to an element like div or p.
Something like this:
.fixed-box {
width: 300px;
height: 300px;
border: 1px solid black;
float: left;
}
To have it handy, you can add it to the Class Selector of your Visual Editor as described here: http://docs.composite.net/Console/CustomizingVisualEditor/ClassSelector