I've was thinking about centering your grid. If you created an outer div, with each grid area nested inside this div, you could use CSS to center the page. Using CSS give the outer div a width and center and make it's position relative. Now your grid will be absolute positioned within the...
Grids are absolute positioned. That means you can't make sure they are always centered. Web design does take some planning and if wanted your site centered you should have used a different method to lay it out.
Does every page have to be redone? That depends. Did you plan ahead and use a...
No FTP client beats the simplicity of using the FireFox plugin FireFTP. The convenience of simply switching tabs to it and switching back to browsing while it runs is sweet.
IE is not standards compliant and very buggy. For example, if you make an area that's 100 pixels wide then inside it you make two columns of 50 pixels each. IE figures the two columns add up to be 104 pixels wide and therefore doesn't fit properly inside the 100 pixel wide area and totally...
Unfortunately Microshits makes every version of IE work differently. It's hard to expect all GoLive features to work in IE8 since IE8 came out well after GoLive.
My recommendation is that you use the GoLive plugin MenuMachine. http://www.menumachine.com/
I don't have GoLive 9 (i use GoLive 8) but have heard from a lot of people that Adobe butchered GoLive for version 9. In an attempt to make DreamWeaver there pro web design package they took many of GoLive's features out to make it an entry level web design package.
The best version of GoLive...
You can do it whichever way you want but usually it's done on the index.html page since that page IS your home page.
Personally, i wouldn't use frames at all. I'd make a template with my menu, title and other common elements on it, then designate the area of the template where the body goes as...
Don't know what version of GoLive your using but what you want to do is create a new site from your html files.
Here are instruction for the CS2 version:
menu item File/New... Click "Site" in the left side pane then select "Create Site" and select the "Site from existing content" option. Click...
The power of CSS goes way beyond that. For example, instead of adding that CSS selector to every page you can put the selector in a seperate file then link each page to that css file. This way if you want to change the properties of the selector you only have to change one file in stead of every...
Looks like you got it figured out. I highly recommend you learn CSS. Right now your pages are full of font tags. The power and flexibility CSS gives you to easily change your site is empowering.
The easiest way is using CSS.
If your already using CSS simply add the following to your css definitions:
p { text-decoration: none; }
and none of your links will have underlines.
Are you trying to remove ALL link underlines, only those from a certain area of the website or only from one...
Why convert over? It's true GoLive is longer under continued development, but i bet your copy still works.
My approach is that new sites and complete redesigns i'm using DW, however all my older sites i'm continuing to develop and maintain in GoLive.
BTW, in my opinion, GoLive is a thousand...
If you select an image on one of your web pages in GoLive then look in the inspector you'll find a place to enter alt text. Whatever you enter here is the text that will pop-up.
You'll see this when using Internet Explorer, however that's not the standard way to do it, so browsers that follow...
I just noticed something else. You need to declare each input as a check box with type=checkbox.
<FORM ACTION="ProcessForm.php">
<INPUT TYPE=CHECKBOX NAME="strawberry">strawberry<BR>
<INPUT TYPE=CHECKBOX NAME="peach">peach<BR>
<INPUT TYPE=CHECKBOX NAME="apple">apple<BR>
<INPUT TYPE=CHECKBOX...
Your problem is that you have given each section of check boxes the same name. Each check box must have a unique name.
Pies
strawberry
peach
apple
cherry
Say i have a check box for each type of pie, but all the check boxes are named pie. If peach is checked then pie=peach, but if cherry is...
Considering you were using wsftp to upload the site and not GoLive i'd say that you originally forgot to upload some of the files.
I also used to use wsftp to upload my sites. I gave up the practice and started using GoLive after having many cases like yours.
When your editing a file in GoLive...
Firefox has some advanced option settings that give the user a lot of control over what javascript can and can't do. Your code may be fine but setting in "Tools/Option/Content/Enable Javascript" could be preventing it from working?
Do other peoples close window buttons work for you? If so check...
I was bored today so i wrote a little script for you.
<head>
<script>
function checkSpodTermsBox()
{
if (document.spodemail.terms.checked)
{
document.spodemail.submit.disabled = false;
}
else
document.spodemail.submit.disabled = true;
}
</script>
</head>
<body>
<form name="spodemail"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.