Is there away to set a background image on a webpage when the webpage is based on a masterpage. Notice its not the background of the masterpage i want to change, but the background of the page which use the masterpage.
|
|
|
|
|
|
|
You can just add a style rule for body{} or whatever on the actual ASPX page. It will override any style set at the master page level. edit: example:
This will override any values set in a stylesheet. |
||||
|
|
|
You could put a content placeholder on the master page that is within the header. Then in your content page, put a content control where you could include the second modified CSS stylesheet or STYLE block directly. |
||
|
|
|
There's an additional trick to add to this...(Second line below) Also helps the background show while testing locally. <%@ Page Title="Contact" Language="VB" MasterPageFile="~/MyDefault.master" Theme="MyMain" %> <%@ MasterType VirtualPath="~/MyDefault.master" %> |
||
|
|
|
|
I suggest adding an
By adding an extra ContentPlaceHolder you won't get the scattered style tags, they will end up in the head tag of the rendered html. |
||||
|
