
Originally Posted by
Wettergott
1.
<script type="text/javascript" src="algorithmus.js"></script> and <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> is the same. i copied the code of the homepage into a file called "algorithmus.js". so my homepage doesnt allways have to link on this other homepage.
i replaced all the $ as you said. after it didnt work i replaced the whole file with yours. and....as i said, the javascript works when im logged in. this is confusing for me! it doesnt work when im logged out.
Replace;
Code:
<script type="text/javascript" src="algorithmus.js"></script>
with;
Code:
<script type="text/javascript" src="fast_edit/js/jquery-1.4.2.min.js"></script>
Also, you dont need to replace $ in this file (this is the jQuery Library). You need to replace $ in "fast_edit/js/fast_edit_functions.js". Just download the attachment and save it over the top of the file with the same name.

Originally Posted by
Wettergott
2. can you show me how to make universal buttons? the nearly the same font style exists also on html code: font face="Monotype Corsiva", color: #a90338 (the only difference is, that i used a special color-flow on photoshop, which is hardly remarkable, so never mind!).
You would need to use the original "includes/menu.html" file and then style it with this CSS - change the values to suit - I've included comments so you can see what each line is for;
Code:
ul.menu {
list-style: none; /* remove default bullet points from menu list */
margin: 0;
padding: 0;
height: 100%;
}
li.menu { /* add "float:left;" below to make the menu buttons sit horizontally */
margin: 0 1px; /* gap above and below buttons - "margin: 1px 0;" is the gap between buttons if horizontal */
padding: 0;
text-align: center; /* alignment of text on button */
width: 150px; /* overall width of menu button */
}
li.menu a, li.menu a:visited {
display: block; /* makes the whole button a link instead of just the text on it */
text-decoration: none; /* remove the underline from text hyperlinks */
font-family: 'Monotype Corsiva', 'Apple Chancery', 'ITC Zapf Chancery', 'URW Chancery L', cursive;
color: #a90338; /* color of text on button */
font-size: 12px; /* size of text on button */
line-height: 25px; /* height of each button */
width: 150px; /* overall width of menu button (must be set here and in "li.menu" above) */
}
li.menu a {
background: url("path/to/image/button.gif") repeat 0 0; /* optional image for button at rest */
padding: 5px 0px;
}
li.menu a:hover, li.menu a:active {
background: url("path/to/image/button-hover.gif") repeat 0 0; /* optional image for button on hover */
}
However, I have to tell you that unfortunately, I do not have the time to keep writing step-by-step instructions and explaining things in detail. I really am very sorry, but I have other projects and work to concentrate on.
I understand (almost) everything you type so no worries there and I also appreciate that we must have been frustrating each other these past few days - I think I might be expecting a bit too much from you (this is your first website, right?), and I really don't want to put you off web design by overwhelming you with all these news concepts.
Anyway, I've been thinking about how I can make things much easier for you (and other people who are new to web design) and I've come up with something that;
- Runs completely in a back-end admin panel
- Doesn't need you to divide your page into a seperate header and footer file so your web pages stay complete
- Doesn't need you to copy and paste any extra scripts into your <head> section
- Let's you setup multiple editable regions per web page (if you want)
I'm calling it Fast Edit BE (Snippet Manager) - because it runs in the Back-End and manages/edits multiple content snippets.
The demo is here: http://fast-edit.co.uk/demo_besm/
The installation instructions are here: http://fast-edit.co.uk/installation_besm.php
You can download it via the black "Download Fast Edit BE (Snippet Manager)" button on the left
I wasn't going to officially release it for another few days but I think this will help us both as it will be easier for you to understand and it will free up my time to work on other things. I haven't left you in the lurch but I DO need to move away from this now. Fast Edit BE (Snippet Manager) is more like the kind of editor that you were looking for at the start of this thread (like Pulse) and I've tried to be much more in keeping with your original requirements.
Bookmarks