How to set bg image for sidebar in a wizard control?

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

Hi,

Is it possible to set a background image in a sidebar of wizard control? A
short example would be very appreciated.

Thanks,
Dan
 
Dan said:
Hi,

Is it possible to set a background image in a sidebar of wizard control?
A short example would be very appreciated.

Thanks,
Dan

Hi,

If You mean the built in asp.net wizard control then one way to do it is to
define the SideBarStyle and specify a css class to use. To do this simply
add a SideBarStyle element inside the wizard element, and specify a css
class of Your like :
<asp:Wizard ID="Wizard1" runat="server">
<SideBarStyle CssClass="wizardsidebar"/>
<WizardSteps>
...
</WizardSteps>
</asp:Wizard>
With the css class specified You can use standard css elements to specify
the look of the sidebar.

Hope You find this useful.
-Zsolt
 
[...]
Hi,

If You mean the built in asp.net wizard control then one way to do it is
to define the SideBarStyle and specify a css class to use. To do this
simply add a SideBarStyle element inside the wizard element, and specify a
css class of Your like :
<asp:Wizard ID="Wizard1" runat="server">
<SideBarStyle CssClass="wizardsidebar"/>
<WizardSteps>
...
</WizardSteps>
</asp:Wizard>
With the css class specified You can use standard css elements to specify
the look of the sidebar.

Hope You find this useful.
-Zsolt

Thanks. This is exactly what I was looking for.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Wizard control: making sidebar invisible? 2
wizard control 1
Wizard control with tabs? 1
How to switch content page? 12
XP Sidebar 2
Fading an image 1
Maintain div display between pages 2
Sidebar background controls 4

Back
Top