Setting background-image as editable in Fluid Grid Layout (Template file)
hi, im basic on dreamweaver bare me,
i creating first website , setting template file.
i struggling making background image editable in template file,
alot of awnsers point me creating new background style sheet have done.
i have included :
<link rel="stylesheet" href="../background style sheet.css" type="text/css">
into <head> in source code , im pretty lost next... want link mobile, tablet , desktop #main divs , able edit background image different web pages;
for example home page 1 background-image , other web pages have other background images.
sorry if not asking right questions, new coding
regards,
confused graphic design student.
it's easy target <body> of each page in external stylesheet change background individually, not dw templates.
normally, give each page's <body> tag id, example, on about.html page...
<body id="about">
then in css, give #about id background-image setting...
#about {
background-image:url(about_bg.jpg);
}
each page have named id in <body> , corresponding #id in css.
side note: stick lower case, alpha numeric file names of pages , images. use underscores or hyphens instead of spaces them too. servers case sensitive , link index.html (capital i) not go page named index.html (lowercase i). work on local system, not on server because server sees case structure difference 2 separate files.
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment