is there an easy way to edit the shop design? i happy with the templates Actinic gives but i just want to slip a few images and links in to the homepage and a few images at the top of the site that appear on every page, i found this impossible to do from the Actinic designer and don't get me started on Dreamweaver (CS3) there must be a simple way to do this, any advice would be great thanks
Announcement
Collapse
No announcement yet.
Easy way to edit design?
Collapse
X
-
Originally posted by RuralWeb View PostUse fargments with an image only layout and html between !!<html here>!!
add your images to the image you are using as your site logo in site options.
Took a look at your site, now I'm leaning towards a design made for me, I'm quite comfortable using Actinic for everything apart from the design. Would it be best to contact you via your site or are comfortable giving a rough price on here if i provide some more details?
Comment
-
Hiya!
I'm happy to quote for any modifications if you are interested please feel free to contact me clare@cam-web.co.uk
Regards,
Cammy.
Comment
-
Css
You could try editing whichever templates you want the image to appear on by adding a css div and setting the background image for the div. I have pasted a bit of code below - I would be reluctant to pay for advice as this board is for us to support each other but thats your perogative.
The following creates a div - it is 942px wide so adjust as you wish. It is centred but is you wish to change that then remove the margin setting. The image location can refer to wherever you have your image.
div#banner{ width: 942px; height: 110px; background-color: #231f20; padding:4px; float:left; marging:0 auto; background: url('images/myimage.gif');}
Then insert into your template:
<div id="banner"></div>
Your images/layer will now appear in any template which you have updated.
To include seperate content in the home page only then RuralWebs original suggestions is the simplest.
Hope that helps.
Comment
-
Originally posted by greyhound View Postdiv#banner{ width: 942px; height: 110px; background-color: #231f20; padding:4px; float:left; marging:0 auto; background: url('images/myimage.gif');}- Marging needs to be 'margin'
- No need for the 'div' as part of the css style name
- Background color and image can be compressed to - background: #231f20 url('images/myimage.gif');
- Don't float: left if you want to centre
- You may also be better off to have BG images in the site root (site1 folder) to ease upload woes at times
Leaving you with the below instead:
#banner {
width: 942px;
height: 110px;
background: #231f20 url('myimage.gif') no-repeat;
padding: 4px;
margin: 0 auto;
}
Comment
-
Originally posted by greyhound View Post1. Correct
2. no need for div but it does help when looking through a complex style sheet
3. Corrent
4. do you know what the parent of the div is doing? if not then how do you know it will centre
5. n/a
3 - It's spelt 'correct'.
4 - I'm more concerned that the sibling is being told to hang left and also go central. I'm not sure what your point is regarding the parent.
5 - I know a good few actinic designers who would say this is extremely 'applicable'.
Comment
Comment