I need to either add a line under the tag or in the tag itself.
Include the following directly under your tag:
The only place I can find a body tag is in the CSS file. How do I add a piece of javascript code directly under the tag or in the tag itself if required?
Joe Dunn
Watch
GitHub Core
Show your support for Zikula! Sign up at Github account and watch the Core project!
GitHub Modules
- nestormateo responded to »Fillters in Clip« 06:33 AM
- damon responded to »Can the Updated Version Check be Turned Off (Z 1.3)« 03:19 AM
- frw responded to »Bug in the SMTP mail transfer protocol - Port 25 - Zikula 1.2.9« 22. May
- mdee responded to »Short URL questions« 22. May
- mesteele101 responded to »Problem in Database Connection« 21. May
- Herr.Vorragend responded to »Clip Documentation and Doubt« 19. May
- mazdev responded to »zikula 1.3.3. and IE9« 19. May
Zikula Blog
- Anatomy of Open Source Projects on Mar 07
- Continuous Review on Mar 01
- Not Invented Here on Feb 24
- How to Contribute Your Code at Github on Jan 13
- 10 Steps to Coding-Nirvana: Tips for Successful Module Writing on Nov 12
- Submitting Bug Report Tickets That Get Results on Aug 17
- Cozi Tricks #1: Syntax Highlighting on Aug 07
Login
C-Ble Theme - <BODY> Tag
-
- Rank: Senior
- Registered: Sep 22, 2003
- Last visit: Oct 21, 2009
- Posts: 2774
Look in the themeheader portion of your theme.php or in whatever HTML file is included under that function...
--
Get PhotoGallery, PayPalCart, Dynamenu, Enhanced Blocks & other mods
Cape Cod Travel Info... -
**unknown user**
- Rank: Softmore
- Registered: Mar 16, 2002
- Last visit: Oct 21, 2009
- Posts: 354
I guess I am learning from you. I have been looking at that part of theme.php for two days. Also, this is an AutoTheme enabled theme.
//This is the theme header - the layout that is rendered before the modules
function themeheader()
{
global $all_vars, $simple_urls, $simple_uri;
if ($simple_urls && $simple_uri=="old") {
ob_start();
}
extract($all_vars);
atThemeRender($output['header']);
if ($simple_urls && $simple_uri == "new") {
$contents = ob_get_contents();
ob_end_clean();
ob_start();
echo simplify_urls($contents); //display modified buffer to screen
} // End Simple URL
}
//This is the theme footer - the layout that is rendered after the modules
function themefooter()
{
global $all_vars, $simple_urls, $simple_uri;
extract($all_vars);
atThemeRender($output['footer']);
if ($simple_urls) {
$contents = ob_get_contents(); // Get output buffer content and flush buffer
ob_end_clean();
if ($simple_uri == "new") // Extra ob_start for New module
ob_start();
echo simplify_urls($contents); //display modified buffer to screen
}
}
I don't see anything relevant. The only time the word BODY shows up is in the CSS.
Joe -
- Rank: Senior
- Registered: Sep 22, 2003
- Last visit: Oct 21, 2009
- Posts: 2774
Look in the HTML files that make up the theme under themes/C-Ble
AutoTheme has a fixed(?) set of HTML files it uses to make up the theme... There is probably one called layout or whatever and it is the biggest HTML file in the theme...
--
Get PhotoGallery, PayPalCart, Dynamenu, Enhanced Blocks & other mods
Cape Cod Travel Info...
- Moderated by:
- Support
Users on-line
- 0 users
This list is based on users active over the last 60 minutes.
