Log in

View Full Version : Resolved Help with BORDER removal on my Web Pages



yourdreamforever
04-14-2009, 02:27 AM
I am creating a web page with Expression. I have edited the MASTER page so that there is no border. When i save the master page it auto formats every other htm page as i want. when i preview my pages on the PC i have the desired effect ie no page border but when i upload i still can see the border.

So if you view

www.yourdreamforever.com - you can see no border

but if you view this next page

http://www.yourdreamforever.com/default1.htm


you can see a border surrounding the content and its this border i wish to remove.

I have uploaded the Master to here so you can see what i am doing wrong http://www.yourdreamforever.com/master.rar

Any help please would be appreciated


Monika :confused:

Nile
04-14-2009, 02:34 AM
In /style/style1.css, change:


#masthead {
text-align: center;
width: 680px;
padding: 0px;
border: 1px dotted #725972;
background-image: url('../images/masthead test.jpg');
background-repeat: repeat;
background-attachment: scroll;
}

To:


#masthead {
text-align: center;
width: 680px;
padding: 0px;
border: none;
background-image: url('../images/masthead test.jpg');
background-repeat: repeat;
background-attachment: scroll;
}

yourdreamforever
04-14-2009, 02:39 AM
i didnt realise you could edit from there i always thought it was all done from the master page, NOW i will study about style sheets. Thanks Nile you help was GREATLY appreciated :)

Nile
04-14-2009, 02:40 AM
You just have to change http://www.yourdreamforever.com/styles/style1.css.
Glad to help you! Your welcome!

It seems your topic is solved... Please set the status to resolved.. To do this:
Go to your first post ->
Edit your first post ->
Click "Go Advanced" ->
Then in the drop down next to the title, select "RESOLVED"

taghaboy
04-15-2009, 04:13 PM
try to play with firebug, the easiest way to edit your CSS directly from ur website.
Good luck