Page 1 of 3 123 LastLast
Results 1 to 10 of 27
  1. #1
    Join Date
    Jun 2010
    Location
    The great midwest... Well, okay, it's not so great, but I'm stuck here!
    Posts
    218
    Plugin Contributions
    0

    help question Trying to add text above footer

    I'm thinking that I need more food for Google on my main page, so I'm trying to add a block of text after my category images and before my footer on the main page only, but my text isn't showing up. I read several posts on how to add text after the main body and before the footer, and as a result I did this:

    I went to my root/includes/templates/template_default/templates file and I'm trying to edit the tpl_index_default.php

    I'm not a coder, but I tried to figure it out by myself without having to ask you guys, and I can't get it to work -

    This is what I put before the </div> at the end of the page but it doesn't work. Obviously i have to format what text goes inside the () but temporarily i put in the following sample text - (THIS IS WHERE I WILL PUT MY TEXT)

    this is what I added to the bottom of my tpl_index_template -

    <?php include(THIS IS WHERE I WILL PUT MY TEXT); ?>
    </div>

    that didn't work so i tried this -

    <?php include(THIS IS WHERE I WILL PUT MY TEXT)); ?><?php } ?>
    </div>

    and that's not working either. i don't even know if i'm putting it in the right area. can someone give me direction, please. and as always A HUGE THANK YOU for all your help.
    I DID IT, I actually built a working cart, with the help of so many of you, Stevesh, Schoolboy, RescoCCC, to name a few. I just take one bite out of the elephant at a time and try to keep my sense of humor...

  2. #2
    Join Date
    Apr 2006
    Location
    Ohio
    Posts
    6,162
    Plugin Contributions
    0

    Default Re: Trying to add text above footer

    look here please:

    includes/ templates/ default_template/ common/ tpl_main_page.php
    Remember to save into your_template (override folder name)
    Mark
    Hare Do

  3. #3
    Join Date
    Jun 2010
    Location
    The great midwest... Well, okay, it's not so great, but I'm stuck here!
    Posts
    218
    Plugin Contributions
    0

    Default Re: Trying to add text above footer

    Can you tell me if I'm inserting the code correctly? I show two different ways, are either of these correct? Thanks for helping me.

    I have no idea of how to code, so I don't know if I'm putting in the correct string.
    I DID IT, I actually built a working cart, with the help of so many of you, Stevesh, Schoolboy, RescoCCC, to name a few. I just take one bite out of the elephant at a time and try to keep my sense of humor...

  4. #4
    Join Date
    Apr 2006
    Location
    Ohio
    Posts
    6,162
    Plugin Contributions
    0

    Default Re: Trying to add text above footer

    Well i would edit this file and place the coding below on line 25 ..

    includes/ templates/ template_default/ common/ tpl_footer.php

    <div id="googleWording">Please work</div>

    Then save here:
    includes/ templates/ your_template/ common/ tpl_footer.php

    Now in your stylesheet.css you can add this new declaration to control color, spacing, font, etc...
    #googleWording {}
    Mark
    Hare Do

  5. #5
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Trying to add text above footer

    The PHP include() means to include content from the file given in parentheses. What you want to do is either echo your HTML text in PHP, or insert straight HTML before the </div>.
    Probably the easiest for you would be like

    <p>Your homepage text below main content and above the footer.</p>
    </div>

  6. #6
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Trying to add text above footer

    How do you want the Google content to appear? Full width at the top of the footer, or within the center column width?

    The footer location will give full width, while tpl_index_default.php will give the center column width. Also, the footer location will appear on every page unless you add PHP code to limit it to the homepage.

  7. #7
    Join Date
    Jun 2010
    Location
    The great midwest... Well, okay, it's not so great, but I'm stuck here!
    Posts
    218
    Plugin Contributions
    0

    Default Re: Trying to add text above footer

    i want it to appear within the center column width. you can see my page here - bigredworkweardotcom -

    i want it below the category box itself, above the word "home" at bottom of page before the footer, but i don't want it to go past the width of that center column. i have flash imbedded in the header and the text next to it is actually just a .jpg because i obviously didn't know how to just type in the text. and then i realized that i'm missing out on giving google a lot of information by not having text on this main page, that's why i'm trying to do the block of text on the bottom, and stuff it with keywords so that google will pick it up.

    thanks guys for trying to make it simple for me.
    I DID IT, I actually built a working cart, with the help of so many of you, Stevesh, Schoolboy, RescoCCC, to name a few. I just take one bite out of the elephant at a time and try to keep my sense of humor...

  8. #8
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Trying to add text above footer

    Then /includes/templates/your_template/common/tpl_index_default.php is the file to add it to.

    You can make the upper text visible to Google like this:
    Code:
    <center><object type="application/x-shockwave-flash" data="includes/templates/cherry_zen/images/flash/slideshow.swf" width="325" height="197">
    <param name="movie" value="includes/templates/cherry_zen/images/flash/slideshow.swf" />
    <param name="quality" value="high" />
    <param name="BGCOLOR" value="#484f3E" />
    <param name="menu" value="false" />
    <param name="wmode" value="transparent" />
    </object><IMG SRC="http://bigredworkwear.com/includes/templates/cherry_zen/images/green.jpg" ALT="green"></center>
    Remove the orange items and add the red items:
    Code:
    <object type="application/x-shockwave-flash" data="includes/templates/cherry_zen/images/flash/slideshow.swf" width="325" height="197" id="flashSlideshow">
    <param name="movie" value="includes/templates/cherry_zen/images/flash/slideshow.swf" />
    <param name="quality" value="high" />
    <param name="BGCOLOR" value="#484f3E" />
    <param name="menu" value="false" />
    <param name="wmode" value="transparent" />
    </object>
    <div id="homeTopText">Big Red Workwear proudly distributes etc...</div>
    Add to your stylesheet

    #flashSlideshow {float: left;}
    #homeTopText {width: 388px; padding: 0 20px 0 30px;}

  9. #9
    Join Date
    Apr 2012
    Location
    Florida
    Posts
    8
    Plugin Contributions
    0

    Default Re: Trying to add text above footer

    StrugglingNovice - I hope you do not mind that I took some liberties with your define_main_page code and modified it to the following (note that I commented out your image for the text and left it in there in the event you wanted to revert back to the image):
    Just copy the following lines from below this line:

    <center>
    <div style="float: left">
    <object width="325" height="197" data="http://bigredworkwear.com/includes/templates/cherry_zen/images/flash/slideshow.swf" type="application/x-shockwave-flash">
    <param value="includes/templates/cherry_zen/images/flash/slideshow.swf" name="movie">
    <param value="high" name="quality">
    <param value="#484f3E" name="BGCOLOR">
    <param value="false" name="menu">
    <param value="transparent" name="wmode">
    </object>
    </div>
    <div style="float: right">
    <div style="font-family: arial; color: #F8F2D8; width: 388px; height: 200px; text-align: left; font-weight: bold;">Big Red Workwear proudly distributes only Red Kap,Hi Visibility and Chef Apparel clothing.<br /><br />We offer competitive pricing, fast shipping, dependable service, and reliable customer service from the most trusted brand names of professional work wear available in the United States.</div>
    <!-- <img alt="green" src="http://bigredworkwear.com/includes/templates/cherry_zen/images/green.jpg"> -->
    </div>
    <div style="clear: both;">
    </center>

    To just above this line and paste it in the define pages editor.
    I hope this helps. And btw, this does not place a footer on the page; rather it takes out the image next to your flash at the top and allows you to place text in its place.

    Cheers.

    Added: gjh42 beat me to it, but this will still work in the event you do not know how to edit your css files. The style is inline for simplicity, although using the style sheet as used in the example above is really the best route.
    Last edited by vividknowledge; 19 Apr 2012 at 03:44 AM.

  10. #10
    Join Date
    Jun 2010
    Location
    The great midwest... Well, okay, it's not so great, but I'm stuck here!
    Posts
    218
    Plugin Contributions
    0

    Default Re: Trying to add text above footer

    thanks vividknowledge and gjh42 - i'm going to rebuilt that flash show tomorrow, as we now are using fed-ex instead of ups and i'm going to reword that text, so i'll file away your information and use it.

    i'm still going to put an additional key word stuffed paragraph at the bottom of the page, within the width of the main area -

    so far i've had no luck doing the following as gjh42 told me to do -

    The PHP include() means to include content from the file given in parentheses. What you want to do is either echo your HTML text in PHP, or insert straight HTML before the </div>.
    Probably the easiest for you would be like

    <p>Your homepage text below main content and above the footer.</p>


    I did this and it didn't work, I put it in the root/includes/templates/template_deault/templates - i put the <p>CONTENT</p> right before the /div and it didn't show up. i'm still working with it.

    thanks for all the help tonight, you guys are just great!
    I DID IT, I actually built a working cart, with the help of so many of you, Stevesh, Schoolboy, RescoCCC, to name a few. I just take one bite out of the elephant at a time and try to keep my sense of humor...

 

 
Page 1 of 3 123 LastLast

Similar Threads

  1. Home Page Text Below Images but Above Footer
    By limelites in forum General Questions
    Replies: 2
    Last Post: 29 Sep 2011, 03:17 AM
  2. add a banner above footer
    By Stoopid_Poster in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 5 Jul 2010, 02:29 PM
  3. Replies: 1
    Last Post: 31 Dec 2009, 01:36 AM
  4. Stuck trying to add info below footer banners
    By dave010880 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 10 Mar 2009, 11:53 PM
  5. Add Text Heading Above Additional Images
    By jacdesigner in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 5 Jan 2009, 10:20 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR