Page 7 of 100 FirstFirst ... 567891757 ... LastLast
Results 61 to 70 of 995
  1. #61
    Join Date
    Aug 2008
    Posts
    165
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Hi Anne,

    Thanks for your fast response. Can you please advise about how I can get my images to appear in the slider? I appear to be doing everything correct per your instructions.

    I did notice in stylesheet there's no mention of slide1.jpg only slide2.jpg? This may not mean anything but I only have an image in slide1.jpg.

    Lynn

    http://www.marketcafe-online.com
    Last edited by Pet Herbal Remedies; 25 Oct 2010 at 09:10 PM.

  2. #62
    Join Date
    Oct 2010
    Location
    United Kingdom
    Posts
    477
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    hi perhaps i can try and help as I have got them working great
    go to includes/templates/all business/images rename all you pics as slide1 slide2 and put them in there

    than go to your define main page and change define(URL1,'http://www.change this to the correct link.com');
    or in other words
    define(URL1,'http://www.------- ');
    define(URL2,'http://www.------- ');
    etc
    don't leave out the ');
    then it should all work fine ..well it has for me my site is working great now except for 2 aspects
    Last edited by Andy-C27; 25 Oct 2010 at 09:36 PM.

  3. #63
    Join Date
    Oct 2010
    Location
    United Kingdom
    Posts
    477
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    have had a quick peek at your site and see that it's gone pear shaped
    dunno if this will work but here is the code again

    <?php


    define(IMAGE1,'slide1.jpg');// default width 740px height 430px /
    define(IMAGE2,'slide2.jpg');
    define(IMAGE3,'slide3.jpg');
    define(IMAGE4,'slide4.jpg');
    define(IMAGE5,'slide5.jpg');

    define(URL1,'http://www.');
    define(URL2,'http://www.');
    define(URL3,'http://www.');
    define(URL4,'http://www.');
    define(URL5,'http://www.');



    ?>
    <script type="text/javascript" src="includes/templates/all_business/jscript/jscript_easySlider.js"></script>

    <script type="text/javascript">
    $(document).ready(function(){

    $("#slider").easySlider({
    auto: true,
    continuous: true,
    numeric: true
    });

    });
    </script>



    <div id="slider">
    <ul>
    <li><a href="<?php echo URL1 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE1 ?>" alt="first slide image" /></a></li>
    <li><a href="<?php echo URL2 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE2 ?>" alt="second slide image" /></a></li>
    <li><a href="<?php echo URL3 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE3 ?>" alt="third slide image" /></a></li>
    <li><a href="<?php echo URL4 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE4 ?>" alt="fourth slide image" /></a></li>
    <li><a href="<?php echo URL5 ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.IMAGE5 ?>" alt="fifth slide image" /></a></li>
    </ul>
    </div>


    here is my site and can see it's working well ...just need to make better pics that's all
    www.atsworld.co.uk

  4. #64
    Join Date
    Oct 2010
    Location
    United Kingdom
    Posts
    477
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    just thought you could always upload and overwrite the files again to get it working ..I've done that before when I messed up

  5. #65
    Join Date
    Aug 2008
    Posts
    165
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Thanks so much for the effort. I renamed my images and uploaded them (both at 740 by 430px). Still no luck. Just a huge error message where the pictures should sit! I changed the permissions on the images. Frustrating... I'm not sure what I'm doing wrong.

  6. #66
    Join Date
    Aug 2008
    Posts
    165
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    I have also figured out how to extend the now green navigation bar, per my request. I do this by changing 100% to 1200px for example. However I find that when I do this the navigation bar only extends to the right and doesn't extend to the left. Why is this and how can I make it work so that the navigation bar is the full width of the screen? I worked this out through firefox developers tool.

    Much appreciated, Lynn

  7. #67
    Join Date
    Aug 2008
    Posts
    165
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Aha! So I've figured it out thanks much to my helper

    Apparently when I make changes in the Tools-Define Pages Editor in Admin the changes I make create funky code in the actual file. Here's an excerpt:

    ?&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;includes/templates/all_business/jscript/jscript_easySlider.js&quot;&gt;&lt;/script&gt;

    &lt;script type=&quot;text/javascript&quot;&gt;
    $(document).ready(function(){

    $(&quot;#slider&quot;).easySlider({
    auto: true,
    continuous: true,
    numeric: true
    });

    });
    &lt;/script&gt;

    So when I restored the original code and made changes through the file in CPanel my images work!

    Hopefully if anyone else has issues this will help. Lynn

    http://www.marketcafe-online.com

  8. #68
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: All Business template Support Thread

    Apparently when I make changes in the Tools-Define Pages Editor in Admin the changes I make create funky code in the actual file. Here's an excerpt:

    ?&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;includes/templates/all_business/jscript/jscript_easySlider.js&quot;&gt;&lt;/script&gt;

    &lt;script type=&quot;text/javascript&quot;&gt;
    $(document).ready(function(){

    $(&quot;#slider&quot;).easySlider({
    auto: true,
    continuous: true,
    numeric: true
    });

    });
    &lt;/script&gt;

    So when I restored the original code and made changes through the file in CPanel my images work!
    This is why in the install.txt file I tell you to make sure that the plain text is selected in the text editor drop down menu.

  9. #69
    Join Date
    Aug 2008
    Posts
    165
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Anne,

    Thanks for the reminder but by default plain text is chosen. I just tried it again, making changes in through admin, ensuring that plain text is chosen, and the code did the same thing. I only mention this for others.

    Regarding the horizontal navigation bar:

    I changed this

    #header-lan-curr {margin:0em;background-image:url(../images/background.jpg);height:30px;width:1100px;}

    but I can't seem to get it to extend to the left. Could you please assist?

    Much appreciated, Lynn

  10. #70
    Join Date
    Aug 2008
    Posts
    165
    Plugin Contributions
    0

    Default Re: All Business template Support Thread

    Sorry...one more request

    How do i remove the navMainWrapper? The top bar that was blue but now changed to white? Much appreciated again, Lynn

 

 
Page 7 of 100 FirstFirst ... 567891757 ... LastLast

Similar Threads

  1. v150 facebook all [support thread]
    By sourceaddons in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 19 Mar 2019, 04:10 PM
  2. Scuro Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 11
    Last Post: 12 Mar 2015, 09:45 PM
  3. All Business template -v1.5
    By heloparis in forum Addon Templates
    Replies: 5
    Last Post: 9 Apr 2012, 03:00 PM
  4. Business Activity Report 1.5.0 Support Thread
    By gharls in forum All Other Contributions/Addons
    Replies: 23
    Last Post: 6 Apr 2012, 11:12 PM
  5. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 PM

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