Thread: I can't find..

Page 1 of 3 123 LastLast
Results 1 to 10 of 22
  1. #1
    Join Date
    May 2006
    Location
    Anywhere USMC points
    Posts
    368
    Plugin Contributions
    0

    Default I can't find..

    in the CSS style sheets where to change the logo picture that's being used. Originally it was logo.jpg and I know where that is in the images folder. However I want to use logo.gif (transparency needed) and if I put logo.gif in the images folder right next to logo.jpg nothing happens. Where is the code I need to change so that whatever it is points to logo.gif not .jpg

    I tried to search for it with the dev. tool kit to no avail.

  2. #2
    Join Date
    May 2006
    Location
    Anywhere USMC points
    Posts
    368
    Plugin Contributions
    0

    Default Re: I can't find..

    for some reason the edit button isn't showing up for me on this post... ~sighs~ and of course I'm extremely tired and posting the wrong thing.

    I want to use a .png file not a .gif

  3. #3
    Join Date
    May 2006
    Location
    Anywhere USMC points
    Posts
    368
    Plugin Contributions
    0

    Default Re: I can't find..

    anyone with an idea? My logo looks horrid right now!! LOL I am also digging through the archives and wiki. Haven't found anything yet that seems to tell me or that I understand means the answer I am needing.

  4. #4
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: I can't find..

    Do you have a URL to your site.

  5. #5
    Join Date
    May 2006
    Location
    Anywhere USMC points
    Posts
    368
    Plugin Contributions
    0

    Default Re: I can't find..

    Yes It is now in my sig.

  6. #6
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: I can't find..

    This is from the view source of your main page:
    Code:
    <div id="headerwrap" class="clearfix">
    <div id="logo">
      <div id="logoName"><img src="includes/templates/zcSohoSailing/images/logo.gif" alt="" /></div>
    </div>
    <!-- End Header Wrapper --></div>
    I'm guessing the portion in red is what you want to change.

    The question is do you want to change includes -> templates -> YOUR_TEMPLATE -> common -> tpl_header.php (which as it appears is where you have it now) or do you want to include it in your stylesheet.css?

    If you want to change it in tpl_header.php find this line:

    <img src="includes/templates/zcSohoSailing/images/logo.gif" alt="" /> and just change gif to png.

    if you want to include the img reference in your stylesheet find this:
    Code:
    div#logoName {
    	float: left;
    	height: 50px;
    	width: 300px;
    }
    and change it to
    Code:
    div#logoName {
    	float: left;
    	height: 50px;
    	width: 300px;
            background: url(../images/logo.png) no-repeat;
    }
    remove the line above from tpl_header.php

  7. #7
    Join Date
    May 2006
    Location
    Anywhere USMC points
    Posts
    368
    Plugin Contributions
    0

    Default Re: I can't find..

    Okay, made a copy of the orig. tpl_header and will change that line. See how that works. Should be perfect. THANK YOU!

  8. #8
    Join Date
    May 2006
    Location
    Anywhere USMC points
    Posts
    368
    Plugin Contributions
    0

    Default Re: I can't find..

    Herm. The tpl_header.php file in my common folder does not contain that line. I am looking through other .php's to see if they do.

  9. #9
    Join Date
    May 2006
    Location
    Anywhere USMC points
    Posts
    368
    Plugin Contributions
    0

    Default Re: I can't find..

    URGH!!! 3rd stupid time I've run out of time to edit my mssg.

    Okay so I changed that one little part using find and replace. And the entire top of my cart went bye bye. Meaning the WHOLE header. OOPSIE. Herm.

  10. #10
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: I can't find..

    Sorry,

    It was really late when I gave you some of the information.

    try these changes and see if they work:

    stylesheet:

    div#logoName {
    float: left;
    height: 50px;
    width: 300px;
    background: url(../images/logo.png) no-repeat;
    }
    put your image in includes -> templates -> YOUR_TEMPLATE -> images

    tpl_header.php

    <div id="headerwrap" class="clearfix">
    <div id="logo">
    <div id="logoName"><img src="includes/templates/zcSohoSailing/images/logo.gif" alt="" /></div>
    </div>
    <!-- End Header Wrapper --></div>

    delete only the portion in red

    try it and see if it works

 

 
Page 1 of 3 123 LastLast

Similar Threads

  1. Where can I find Guest user can buy addon?
    By shabizon in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 14 Nov 2010, 12:49 AM
  2. Can't find...
    By Parley in forum General Questions
    Replies: 4
    Last Post: 2 Mar 2010, 08:07 PM
  3. I can't find it?
    By spazzo in forum Basic Configuration
    Replies: 5
    Last Post: 22 Oct 2008, 06:11 AM
  4. Replies: 3
    Last Post: 28 May 2006, 09:00 AM
  5. where can I find an patch or mod that I can put in my admin panel so I can actually e
    By cyber1store in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 13 May 2006, 06:12 AM

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