A region at the only border only no title or the title bar

Hello Expert,

I'm trying to create a border around the region, essentially a region with just the bar border and no title or title. There are no simple approach available for this option. Anyone can shed light on this question.

APEX Version: 4.1.0.00.32

Theme: Builder 2 blue (I guess that's the theme 2 in the APEX)

I tried various option using the model of the region without border, report region, region of report without title, without model, etc. as well as a style following CSS code, I've added in the header section of the Page.

This option creates the border on top of the elements of the region, but do not cover the elements of the region as the elements, who was also in the model without button nor titles

< style type = "text/css" >
#CRR {border-style: solid;-CRR is a static ID for the region}
border-width: 1px ;}
< / style >

I also tried to create a model with a new region and removed from the class title and the button class, which has created a region without borders, but there is no line on top than on the sides, which looked so weird. I don't know what is the right solution, but a solution with the new model of the region which does not create that border and no title and the title bar is good.

Kindly please let me know an approach if everyone is aware.

Thank you
CP

cpora007 wrote:

Is certainly useful, it does not create the border, but the border is created for both regions.

It is not the case. It applies only to the #CRR region.

I have four total regions. At the top is breadcrumb area, below which is region report showing details of base. The third region is a region list waith browser tab only and it is a region without borders. Regions of fourth has all the elements of the form for which I wan the border only. With your suggestion, I am able to get the border, but it covers now the two region 3 and 4. I just only on the 4th region. The model region of fourth, that I modified to 'Region without button or title' the way you suggested.

Region 3 is cut off from normal flow by excess of s floatthis theme inexplicably applies to virtually everything. This causes the region 4 up and region 3 is rendered in its box.

Try to make the region 3 model No., or using this to clear the floating region:

#CRR {
  clear: both;
  border: 1px solid;
}
#CRR .bl-body {
  float: none;
  padding: 10px;
}

The region 3 and region 4 same class .bl-body, hjowever I did not have any static id for region 3. I tried with the static id in region 3 of naming with different name, but that has not changed anything.

None of this has to do any (other than this class .bl-body is floating).

Ideally I would prefer a new model of the region, so I can use it for several pages.

You probably want to create your own model of region from scratch, something like:

#BODY#

with a stylesheet as:

.bordered-region {
  clear: both;
  border: 1px solid;
  padding: 10px;
}

Tags: Database

Similar Questions

Maybe you are looking for