Question : z-index not working

Hi,

If you visit the following link and hover over the portfolio link.
http://www.wsp-sandbox4.co.uk

You will see the dropdown is hidden behind a flash file.

I had tried to use the z-index to resolve this but it doesn't seem to be doing the job.

Can anyone offer any advice on this?

Thanks in advance.

Answer : z-index not working

If you want to match the values reported by the Format...Cells...Column Width menu item, then the following macro will do so. It asks the user to select a range of cells that includes the desired columns. It will then add a worksheet at the end of the workbook to display the columns widths.

Brad
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
Sub ColumnWidths()
Dim targ As Range, cel As Range
On Error Resume Next
Set targ = Application.InputBox("Please select the range you want to report columns widths for", Type:=8)
On Error GoTo 0
If targ Is Nothing Then Exit Sub

Application.ScreenUpdating = False
Set targ = targ.Rows(1)
With Worksheets.Add(after:=Worksheets(Worksheets.Count))
    For Each cel In targ.Cells
        .Cells(1, cel.Column) = cel.EntireColumn.ColumnWidth
    Next
End With
Application.ScreenUpdating = True
End Sub
Random Solutions  
 
programming4us programming4us