Coding Duchess
Coding Duchess

Reputation: 6909

Oracle APEX region width

I have two regions on my page side by side. The width of each region is automatically 50% or 6 columns each. I wanted to make right region to be only about 20% or 2-3 columns, while making the left region 9-10 columns. What is the best way to accomplish that?

Upvotes: 2

Views: 11773

Answers (2)

Tony Andrews
Tony Andrews

Reputation: 132580

If using a grid-based theme like the Universal Theme, simply set the first regions' Column Span to 2 or 3 and the second's to 8 or 9!

Upvotes: 2

Littlefoot
Littlefoot

Reputation: 142733

Try to set region's "Custom attributes" property to (for example)

  • region 1: style="width:400px"
  • region 2: style="width:200px"

and see how it behaves. Adjust it if necessary.

Upvotes: 0

Related Questions