Any one found any good templates to use with BC?

Hey all,
just wondering if anyone has found some good templates I can use for ecommerce sites
Thanks,
Dan

BC is a relativly unique CMS and the type of template depends on your skil levels with the system and HTML, CSS, Javascript etc.
http://www.tribevita.com/ is a great source for ready to go made BC templates.
BC itself has some pre-made templates when you make an account you can choose from. The latest ones offfer more features but are a little more complex compared to the older ones using things like jQuery for fading banners etc.
You can obtain any sort of stand alone HTML only template from a number of sites such as Template Monster which you can then work to transition into BC converting them into templates, replacing elements with web apps, modules and content holders etc. This of course requires people to have  good to high knowledge of BC and HTML, CSS.... etc.

Similar Messages

  • Any good tutorials for using jQuery and ColdFusion to build mobile apps

    Does anyone know of any good tutorials for using jQuery and ColdFusion to build mobile apps?
    Thanks!
    Lee

    I was just this moment looking at this website http://jquerymobile.com/
    Then for you a Google search on Jquerymobile and coldfusion
    http://www.google.co.uk/search?q=jquerymobile+and+coldfusion&ie=utf-8&oe=utf-8&aq=t&rls=or g.mozilla:en-GB:official&client=firefox-a
    http://jquerymobile.com/resources/
    Brings me onto this tutorial
    http://www.raymondcamden.com/index.cfm/2011/8/26/Making-jQuery-Mobile-templates-even-easie r--with-ColdFusion

  • I tried to launch iCloud on iMac.  I Changed my e-mail address recently, and iMac  doesn't  seem to know it.  Even worse, it doesn't know any password I've used with Apple ID.  Can anyone help me?

    I tried to launch iCloud on iMac.  I Changed my e-mail address recently, and iMac  doesn't  seem to know it.  Even worse, it doesn't know any password I've used with Apple ID.  Can anyone help me?

    No, i don't. if i did i would have tried it. do you have to sign up an appled ID for iCloud? If the answer is yes then they should mention that in the set-up instructions.

  • Good webcam to use with Skype please

    I have a G5 iMac running the latest version of Tiger. I would like some advice on buying a good webcam to use with Skype. I'll be going Mac to PC. I've heard that the Logitech Fusion is good. Any suggestions?
    Thanks,
    Jim

    Hi Jim,
    Any Firewire (6 pin to 6 pin) DV capable CamCorder
    Any Firewire Web cam
    Any USB cam with Mac Drivers and this utility http://www.ecamm.com/mac/ichatusbcam/
    10:53 PM Monday; January 22, 2007

  • HT5624 Why in my email ( the one on my ipod5 that I use with my apple ID) when I get emails about my use of my apple ID to use a service in the from field it has my fathers name and when I click on it it shows his contact info ????

    Why in my email ( the one on my ipod5 that I use with my apple ID) when I get emails about my use of my apple ID to use a service in the from field it has my fathers name and when I click on it it shows his contact info ???? I also set up my apple ID with a new email account and also I signed up for iCloud but used the same apple I'd email and password but it gave me a I cloud email! I did activate the favorites in my email . Noticed the from field has my fathers name and contact and it is a notification about me using my apple ID to sign in to FaceTime! Something is messed up, not sure how or why???

    i didn't read a lot of your 2nd paragraph, but it seems like the password is the issue, right?
    do a true clean install
    reboot your machine and hold down command+option+r, you should see a spinning globe - if you don't see the globe or anything that reads internet recovery, shut down and try again
    at menu, chose disk utility and once there, find your HD on the left side, select the physical name and erase it as mac journaled
    exit disk utlity
    at menu, choose install OSX
    this time, when it asks for a password just hit continue, it will let you complete without a password
    you should be able to get into your laptop, now figure out what password you'll be able to use with your kb issue

  • I have a Macbook Pro {retina}. I have a Maxtor One touch (Firewire that I have used with a Thunderbolt adapter and it has always worked well, uintil I upgraded to Mavericks. Now it crashes when I try to use it. What gives?

    i have a Macbook Pro {retina}. I have a Maxtor One touch (Firewire that I have used with a Thunderbolt adapter and it has always worked well, uintil I upgraded to Mavericks. Now it crashes when I try to use it. What gives?

    I suggets you contact the manufacturer. They may have a software update or a workaround.
    Barry

  • HT4356 Up photos mart c7100 series wireless printer does not show up as a printer. Anyone found a fix for for use with ipad3?

    Up photos mart c7100 series wireless printer does not show up as a printer. Anyone found a fix for for use with ipad3?

    It sounds like the features are working through the USB connection rather than the wireless connection since it is still not seeing the networks.
    Everything points to a hardware failure since the steps provided through the private message did not work and the wireless test showed it had failed.  Sorry.
    You do have some options at this point.
    If it is under warranty, either standard or extended, you can contact HP support at 1-800-474-6836 to have it serviced under warranty.
    If it is out of warranty, you can still contact HP support to find out all the options and the cost of each option.  However, it is my opinion that this money would be better spend being applied towards a new printer. 
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Any good examples of using hashCode?

    I am creating a simple test class of a date object using getYear, getMonth, GetDay, compareTo, equals and hashCode. Ive got everything else working fine, but im wondering if I am getting the correct output from the hashCode method. What exactly does the hashCode method do? anyone got a good example of using it and what it outputs?

    the name of my date class - here's the rest of my code if you want to verify it:
    package Final;
    import java.util.GregorianCalendar;
    import java.util.Calendar;
    public class SimpleDate
    /** Creates a new instance of SimpleDate
    public SimpleDate()
         GregorianCalendar greg = new GregorianCalendar();
              year = greg.get(Calendar.YEAR);
              month = 1 + greg.get(Calendar.MONTH);
              day = greg.get(Calendar.DATE);
    /** Creates the setDate method which allows the day, month, and year of the
    * date to be specified
    public SimpleDate( int year, int month, int day )
    setDate( year, month, day );
    /** Sets the day, month, and year variables for the date
    public void setDate( int year, int month, int day )
    GregorianCalendar greg = new GregorianCalendar();
    greg.set(Calendar.YEAR, year);
    greg.set(Calendar.MONTH, month-1);
    greg.set(Calendar.DATE, day);
    this.year = greg.get(Calendar.YEAR);
    this.month = 1 + greg.get(Calendar.MONTH);
    this.day = greg.get(Calendar.DATE);
    /** Defines the method getYear which gets the integer value which represents
    * the year in the date
    * @returns int year
    public int getYear()
    return year;
    /** Defines the method getMonth which gets the integer value which represents
    * the month in the date
    * @returns int month
    public int getMonth()
    return month;
    /** Defines the method getDay which gets the integer value which represents
    * the day in the date
    * @returns int day
    public int getDay()
    return day;
    /** Defines the boolean method equals which compares two dates to see if they
    * are equal
    * @returns boolean equals
    public boolean equals()
    return equals;
    public int compareTo()
    return comparable;
    public int hashCode()
    return hashcode;
    public String toString()
    String string1 = new String();
    return string1;
    /*************Built-in Self Test************/
    public static void main(String[] args)
    SimpleDate date = new SimpleDate();
    SimpleDate date2 = new SimpleDate();
    date.setDate(2005, 11, 4);
    System.out.println("Day, Month and Year: " + day + " " + month + " " + year);
    date.getYear();
    System.out.println("The year selected is: " + year);
    date.getMonth();
    System.out.println("The month selected is: " + month);
    date.getDay();
    System.out.println("The day selected is: " + day);
    date2.setDate(2004, 11, 4);
    System.out.println("The first date selected equals the second date selected: " + date.equals(date2));
    //System.out.println("The first date selected is comparable to the second date selected: " + date.compareTo(date2));
    //How do I implement compareTo?
    System.out.println("The hashcode for the first date selected is: " + date.hashCode());
    System.out.println("The hashcode for the second date selected is: " + date2.hashCode());
    // ***** Instance Variables *****
    static int year;
    static int month;
    static int day;
    boolean equals;
    int comparable;
    int hashcode;
    }

  • Any version available to use with Windows ME?

    Running Windows ME with IE 6. Many programs no longer support
    IE 6. Cannot afford new computer. Is there any previous version
    of Firefox available to use with Windows ME, and if so, how
    can I obtain it?

    Firefox 2.0.0.20 is the last ever version of Firefox for Win98 / SE / ME.
    Get it from here: <br />
    ftp://ftp.mozilla.org/pub/firefox/releases/2.0.0.20/win32/en-US/ <br />
    ''You may find that the same websites the won't let you use IE6 are going to give you problems with Firefox 2.''
    You can try KernelEx to get Firefox 3+ to work, but it would be very slow with an old PC of less than 750Mhz.
    http://sourceforge.net/projects/kernelex/

  • Ideas on good printers to use with a mac pro

    hello,
    I recently purchased a mac pro but
    my printer just died. never ends...
    before getting a new one, does anyone has an idea on a good photo printer to use with my new beast:
    Machine Name: Mac Pro
    Machine Model: MacPro1,1
    Processor Name: Dual-Core Intel Xeon
    Processor Speed: 2.66 GHz
    Number Of Processors: 2
    Total Number Of Cores: 4
    L2 Cache (per processor): 4 MB
    Memory: 2 GB
    Bus Speed: 1.33 GHz
    I used photoshop a lot; print documents as well; so format must be 81/2 x 11 at least. quality is a must but budget restrictions , well a must too: 300 us$ is the max i can use on this toy. any ideas?
    in advance i thank you very much for any help.
    sandrine
    MAC PRO   Mac OS X (10.4.8)  

    Hi Sandrine,
    After tens of thousands of image prints I use Epson
    printers exclusively, printing primarily from
    Photoshop. Even all my 3D renders end up printed out
    of PS. I get away with a C86 for a small printer and
    use a 4800 Pro for serious larger format prints. Were
    I to go for a smaller Epson today, I'd go for an
    Epson Stylus Photo R260. It is new six ink technology
    brought to an 8.5 x 11" printer and the reviews are
    remarkable. If you want more bells and whistles, this
    same technology is brought out with the ability to
    print on CD/DVDs as well and has an LCD screen for
    cropping and printing directly from digital cameras.
    Those reside in the Epson Stylus Photo R380.
    I tend to go with printers which have only those
    features I need. Don't forget that the price of any
    good printer doesn't reflect the cost of usage. Good
    paper and ink combinations are the real cost. The
    printer is just a loss leader. For a full page high
    quality print, figure that you are spending $2 -
    $2.50 per and you won't be unpleasantly surprised.
    I'd also suggest not using 3rd party inks in these
    new Epsons, even if they are offered.
    Dear Welles,
    thank you for your help.
    i have been using epson for a long time and never been disappointed until recently.
    the last printer i had was an epson stylus photo R340. always used their ink cartridges... it died on me 2 days ago (it was seven months old). so i am a bit cautious with epson. I will definitely look into the models you mention though.
    have a great day
    sandrine
    PS. Please, let me know if you've had experience with canon inkjet printers. i heard their graphic/photo printing is very nice. which models, i have no idea. Plus, I don't know how well they get along with macpro.
    MAC PRO   Mac OS X (10.4.8)  

  • Good monitor to use with iPad Air

    Any body have their favorite  monitor to use with iPad Air?

    I wasn't aware that the iPad Air supported external monitors. Based on that, I'd have to say that the iPad Air's monitor is my favorite, by default.

  • TS3090 Is there any good way for using a network account locally on the server?

    We have a bunch of macs at home. I want to be able to login to a laptop and have my account (home dir) in sync with de desktop account in a noninvasive way. 
    For achieving this I thought  promoting one imac to be a network profile server would be a good solution.
    This way we can work on any machine and sync portable home directories (phd) with our laptops.
    The server should also be usable as a workstation.
    One problem is: is possible to login on the server (locally) and work in a network account?
    I know it is possible, but this article describes issues.
    Also i am concerned about perfomance because files wil be mounted over afp rather than being on the harddisk. (one workaround would be to have a phd on the desktop, this would however not be possible on the server itsself (unless you have two copies of the home directory there))
    Does anyone have any experience with a simular situation or perhaps some other helpfull insights.

    Sorry, you must have edited your message. When I saw it, only the title showed .
    Embedded is what you want. You can change the windows apperance (e.g. hide the scroll bars) by changing the VI properties.
    Uncheck "request control" in the web publishing wizard, and it will be read only.
    Works fine here in LabVIEW 7.1. I don't remember if 6.1 had any limitations.
    LabVIEW Champion . Do more with less code and in less time .

  • Any good books on using Oracle Workflow?

    I'm trying to get my hands around the topic of workflow, specifically using Oracle Workflow Builder and was wondering if anyone knew of any decent books out there....

    Oracle documentation may be of help.
    Try these.
    http://download-west.oracle.com/docs/cd/B13789_01/workflow.101/b10284/toc.htm
    http://download-west.oracle.com/docs/cd/B13789_01/workflow.101/b10285/toc.htm

  • Any good manual for using preview on mac?

    Where can I find a good tutorial for preview. 

    Why not use its help menu?  Or...
    Mac 101: Preview

  • Any video application I use with my iSight is out of sync with the audio.

    It doesn't matter which application; Skype, Facetime, Google Talk, or trying to record a live video is all out of sync. The video appears to be lagging behind as I can still see my mouth moving after I'm talking. What's the problem? Sometimes I think I'm stuck in some type of bad kung fu movie timewarp... Someone help me get back to normal!
    Thank you!

    Hi,
    I would start with older threads on the issue
    https://discussions.apple.com/message/4096816#4096816
    I started from the More Like This box.  I choose what I thought would be a likely one then repeated the choice again at that thread as it had some that were marked with the green Solved tick.
    7:54 PM      Friday; July 8, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for

  • Playing a CD in my car

    I bought a 97 Lexus recently with a CD player; burned a CD in iTunes, stuck it in the car CD player and voila! Nothing. It can't read the songs. Will iTunes plus solve that, or will I be unable to play anything burned from inside Itunes?

  • Asset and PS INTEGRATION

    Hi Expurts where is the integration betwwen Asset and Project Systems please explain with examples. Regards Ragini

  • Zoom Level Setting Does not Stay Constant

    HP Pavilion dv7-6163us Entertainment Notebook PC The zoom level is set at 125 but keeps changing as I go to different screens.  It bounces to 150  and I have to cycle it thru 100 and then 125.  It will not stay at 125 and  I cannot find a solution to

  • IPhone 5 dead after July 2014 update

    MY iPhone 5 is dead after update. Apple has no answers but to sell me a new phone.  Any good advice ?

  • More than ones MAIL Boxes in Mail

    Hi ALL, After using Migration Assistant a couple of days ago I notice that in Mail application, in the right column my mail folders tripled. Al the Mail folders I had in Tiger ONES I have NOW 3 times. There is ONE folder called 'IMPORTED' with everyt