cancel
Showing results for 
Search instead for 
Did you mean: 

Web Interface Builder - chancing the size of a GROUP-Component

Former Member
0 Kudos

Hi!

i have created a GROUP-Component (Group1) via the Web Interface Builder and would like to change the standard width from 350 to 200. I understand that this must be done via css. The relevant code in my BSP-page looks like this:

<table border="0" cellpadding="0" cellspacing="0" cols="1" id="Group1" ct="Tray" class="urTrcWhlBox" style="width:350;">

I checked the stylesheet (ur_ie6.css) via SE80, but i cannot find the postion where i need to change the width-attribute. The class definition inside this stylesheet looks like this:

.urTrcWhlBox

Any hints where to implement the change are welcome.

Thanks,

Holger

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

the style attribute is overwritten in the table tag (style="width:350"). So you have to change it there. Your code in BSP-page should then look like this:

Rgds.

Jürgen

Former Member
0 Kudos

Hi Jürgen,

thanks for the hint. I already checked both stylesheets that have a reference in my BSP-page. These are:

- Streamline_BWReports_ie6.css

- ur_ie6.css

The last stylesheet does´nt have a table tag definition. The Streamline-stylesheet has the following tag definition:

table

{

font-size:small

}

Is there another place to look for the style-attribute?

Thanks,

Holger

Former Member
0 Kudos

Hi Holger,

either you must change the code in the BSP page as I wrote or you must extend your css for the class .urTrcWhlBox by "width : 200" (without quotes).

Rgds.

Jürgen

Former Member
0 Kudos

Hi Jürgen,

i changed the BSP-page like this:

%>

<%

and it works...but this solution is not very suitable, because i have about 30 BSP-pages and every time i re-generate them i have to add the code again.

When i overwrite the table tag in my stylesheet..like this:

table

the tray is smaller...but when i expand the tray in internet explorer the dropdown list is still 350px. Also the HTML-code remains with style="width:350;"

Using .urTrcWhlBox instead of the table tag in my stylesheet has no effect.

Regards,

Holger