Multiple columns in the Welcome page

How can I create multiple columns in the Welcome page like Stanford's and Duke's?

Stanford and Duke are super special sites that have access to experimental iTunes U layouts. They take all the risks so we don't have to.
It's been covered before in this forum, but the good news is that we might, one day, have access to the same layout.

Similar Messages

  • How can I have use the same div ID multiple times on the same page?

    Okay so a problem I encounter a lot is that often times I want to use the same div ID several times on the same page. An example of this is when I'm creating table like designs.
    Let's say for instance I create a div ID called 'product-container'. I want to use 'product-container' multiple times on the same page but if I do this it is improper XHTML and will throw errors in any XHTML validator (you are only allowed to use a div ID once on any XHTML page in order for it to be standards compliant).
    Now the first option is that I could define 'product-container' in my CSS style sheet multiple times by doing something like this...
    #product-container {
         width: 300px;
    #product-container-2 {
         width: 300px;
    #product-container-3 {
         width: 300px;
    #product-container-4 {
         width: 300px;
    What you will see there however is that it seems pointless to define the same ID numerous times over (just adding a number on the end) when each ID is the exact same thing and has the exact same attributes.
    Now what I have noticed is that there are some sites out there who manage to have the same ID appear several times in the code but add a number to it just like above. The difference is that they only have one definition for 'product-cointainer' in their CSS document but in their actual XHTML code they have IDs for 'product-container' but with numbers on the end like 2,3,4,5, etc. It's almost as if JavaScript or some other code is automatically appending a number on the end of the ID so the validator won't consider the markup to be invalid, but yet it knows that it's using the same 'product-container' style that is contained in the CSS style sheet.
    I hope I explained this correctly. I'm just hoping to find a way that I can put the same div ID on a page multiple times without having to define it over and over again in my CSS.
    Any help is much appreciated!

    Because it seems like by using a class you can't make this position as 
    well as you can by using an ID. Am I wrong?
    An ID name can be used only one time per page.  A class name can be used multiple times per page.
    .product {
    width: 300px;
    text-align:left;
    color: #FF0000
    border: 2px solid #666;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • How do i make a photo slideshow / banner for the welcome page in iWeb

    How do i create a photo slideshow or fading slidshow for the welcome page in iweb

    There are trillions of slideshows to be found on the internets.
    Download the one you like, make it work the way you want and put it on the server.
    Display it in the browser to see if it looks the way you want.
    Then use the <iframe> html element to display it in a HTML Snippet.
    Like this :
    http://www.wyodor.net/iWebBlogTest/Wyodor_1/WebBanner.html
    http://www.wyodor.net/_Demo/MyHouse/
    You can also browse/search this forum to see if it has been discussed before. It has.

  • I can no longer (since upgrading to the latest firefox) open up multiple tabs of the same page (something I need to be able to do when emailing and referencing multiple emails while writing one email). The only option it gives me is to 'switch to tab'.

    Question
    I can no longer (since upgrading to the latest firefox) open up multiple tabs of the same page (something I need to be able to do when emailing and referencing multiple emails while writing one email). The only option it gives me is to 'switch to tab'.

    I'll try to make this clear. I USED to be able to left click on a hyper link and the hyper link would open in a NEW tab. Now for some unknown reason the hyper link by default opens in the same tab (window). I have to right click the hyper link in order for it to open in a NEW tab. (Yes, my 'tools'> 'options'> 'tabs' are set to "open new windows in a new tab." (Please no answers telling me to get rid of the Ask toolbar because I don't have one.) Thank you.

  • Hi my emails won't open it just says My account is already added then goes back to the welcome page

    Hi my phone won't open my email account it just keeps saying my account is already added then goes back to the welcome page. I have used emails on this phone for over a year and they normally come straight up, can anyone help?

    If you go into Settings > Mail, Contacts, Calendars and select that email account then is 'mail' currently set 'off' for the account ?

  • JoinRowSet : Multiple Columns as the MatchColumn

    Hi All,
    RE: JoinRowSet : Multiple Columns as the MatchColumn
    I spent one day and have been trying to join two tables with two columns as a JOIN match... cannot made anything work. I read all the doc and the JDBC RowSet Implementations Tutorial doesn't really help a lot.
    Any example will be appreciated.
    Connection con = DriverManager.getConnection(dbUrl,dbUserId,dbPasswd);
    Statement stmt8 = con.createStatement();
    ResultSet rs = stmt8.executeQuery("select project_id, bld_id, bld_name from table1");
    Statement stmt10 = con.createStatement();
    ResultSet rs3 = stmt10.executeQuery("select project_id, bld_id, project_name from table2");
    CachedRowSet crs3 = new CachedRowSetImpl();
    crs3.populate( rs);
    System.out.println("Size of the first cached rowset is:: "+crs3.size());
    CachedRowSet crs4 = new CachedRowSetImpl();
    rs.beforeFirst();
    crs4.populate( rs);
    System.out.println("Size of the first cached rowset is:: "+crs4.size());
    JoinRowSet jrs = new JoinRowSetImpl();
    System.out.println("Adding 1st crs :: "+crs3.size());
    int [] idArray = {1,2};
    crs3.setMatchColumn(idArray);
    jrs.addRowSet(crs3);
    crs4.setMatchColumn(idArray);
    jrs.addRowSet(crs4);
         FileWriter fWriter;
    fWriter = new FileWriter("myoutput.xml");
    jrs.writeXml(fWriter);
    fWriter.flush();
    fWriter.close();

    I have no idea this is what you are trying but look at this.
    String select Statement = "select table1.project_id, table1.bld_id, table1.bld_name, table2.project_name from table1 left join table2 on table1.project_id = table2.project_id and table1.bld_id = table2.bld_id where ... order ...";
    Statement stmt8 = con.createStatement();
    ResultSet rs = stmt8.executeQuery(select Statement );The joined data is in rs.
    rykk

  • Fill multiple columns of the report at once ???

    I have been told that when coding a Report, there is some way to fill multiple columns of the report at once.
    Instead of
    select
    field1,
    field2....
    You could do
    <????> filling field 1 and 2
    My source was vague as to what kind of thing it would be that could give a value to more than one column at one time.
    Can anyone help me here? Sorry to not have any more specifics.
    Thanks, Wayne

    You can have placeholder columns and assign the output of your select statement to the place holder columns.

  • TS1389 Hi Since the last Apple update, every timr i open itunes I get the Welcome page and have to agree to share my libaray. before the update I only had to do this once. Now its every time. Any solutions?

    HI Since the last Apple itune WIndows update every time i open itunes I get the Welcome page and have to agree to share my library. Before the update i had only done this once. Now its every timre i open itunes

    Copied from your previous post.
    You are right the Iphone is locked into the carrier softbank from Japan and its not the 3g model its the one before it, I am not sure what model.
    If your iPhone is not the 3G model - it is the one before that, this means your iPhone is the first generation iPhone or the original iPhone, which WAS NOT sold officially by Apple in Japan. The first generation iPhone was sold officially by Apple in the U.S. as carrier locked with AT&T, in the UK as carrier locked with O2, in Germany as carrier locked with T-Mobile, and in France as carrier locked with Orange and as officially unlocked by Orange. The ONLY country where the first generation was sold as officially unlocked was in France, which is required by French law.
    The original iPhone - the one before the 3G was not sold by Apple in Japan directly or through Softbank.
    Did you purchase your iPhone from Softbank or from an Apple store in Japan ? If so, this would also mean your iPhone is carrier locked with Softbank since the iPhone is sold in Japan officially as carrier locked with Softbank only, and this would be the 3G or 3GS, not the original iPhone. This would also mean you are roaming internationally with Softbank with your iPhone in China. If you are using a SIM card from a carrier in China with your iPhone, your iPhone has been hacked to be unlocked unless you purchased your iPhone from an unofficial source in Japan which was sold originally as new officially in France as officially unlocked by the carrier Orange in France.
    Is your iPhone is carrier locked with Softbank in Japan, are you paying Softbank international roaming fees while using your iPhone in China?

  • I can not access the welcome page

    After i installed oracle application server soa suite 10.1.3.1.0 ( soa_windows_x86_101310_disk1) successfully . I want to access the welcome page of oracle application server control
    by going all programs -->oracle(instance name)--> oracle application server control
    It said Page can not be displayed
    then i went to c:\productz10.1.3.1\OracleAS-1\install\readme.txt to check hostname and port number which is correct (http://localhost:8888/)
    i typed in the browser manually ,but it still showed the page cannot be displayed.
    after that, i was using command prompt to check status of the process
    c:\productz10.1.3.1\OracleAS_1\opmn\bin>opmnctl status
    it showed only OC4JGroup:default group -->process status: alive
    but i could not see the http server process
    and still was trying to start the oracle http server and it seemed useless i did not how can i access the welcome page and access to the application server control
    I need help
    thank you very much

    Which install type did you choose? If you chose Custom, you may not have installed OHS at all...

  • I cannot open my talktalk.co.uk mailbox although the welcome page opens and tells me I have "undefined emails". Any solutions?

    When I go to talk-talk.co.uk to open my tiscali mailbox all I get after entering email address and password is the welcome page with a box that tells me I have "undefined emails". Clicking to open the mailbox gets no response. There are no problems when I switch to Internet Express. Any solutions

    Sorry you weren't able to reach me. My primary email address is [email protected] but I use a Vodafone BIS service for BlackBerry, which automatically forwards to [email protected]
    Many thanks for trying to reply.
    Paul Morgan

  • How can I clear the recent document list on the welcome page?

    Have some confidential docs that I don't want to appear when the program is launched. How can I clear the recent document list on the welcome page and the "open recent" list?  thx

    It's not an option in the prefs. It's a hidden file that makes up part of the preference set (as far as I know, most, or all of the seetings you can adjust inside ID's prefences dialog are actually saved in the other half of the set, InDesign Defaults). For more information, see Replace Your Preferences

  • I desperately would like to update Firefox to version 10 from version 9 but each time I try, I am stuck with FF10 checking addons for comparability and the Welcome page opening every time I start the browser.

    Windows 7 64 bit
    I desperately would like to update Firefox to version 10 from version 9 but each time I try, I am stuck with FF10 checking addons for compatability and the Welcome page opening every time I start the browser. I continue to have to revert to version 9 to resolve this issue.

    Sorry to be a while getting back! Tried all of that with no sucess so this AM, bit the bullet and deleted the FF folder from programs and downloaded and installed FF 10.01. Still was plagued with the same problem. Went into the appdata folder and there were two sessionstore.js files. Deleted them both, restarted the browser and no compatibility check for add-ons was done at start up and the extra tab for Welcome to FF was no longer opening Everything seems to be working as it should and I did not loose any of my settings.. Thank you for trying to help and I hope my solution helps anyone else who might experience this in the future. Here's hoping the next update goes smoother!

  • Page with multiple columns in the RTF

    Hi,
    I am facing a issue while arrange the page with single and 3 columns in the RTF. I did format like Format tab->columns-> selected number of columns 3.
    The 3 columns data is showing the next page. I did not put any page break in the RTF.
    let me know what is the issue?
    I want show values like :
    Name :XXX Issued To:XXX
    dept grade dept grade dept grade
    -------------- --------------- ----------------

    Hi,
    Use @inlines in your for each clause, blog on this recently on Tim Dexter's blog.
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • I have tried to download Firefox multiple times and the welcome screen will not pop up. After download, it remains at the Firefox download page.

    I cannot get the welcome screen to pop up so that I can complete the download of Firefox.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB6.4; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)

    After you download '''Firefox Setup 3.6.3.exe''', you must double click on this file. Usually, you can find this either on your desktop or in your Downloads folder.
    Your Downloads folder is located inside Documents.

  • How to force multiple columns in the Details section

    Hello,
    My report has a lot of data in the Details section, but it could fit on one page if I could put it in three columns. Is there a way to do this?
    The Details section has setting: Force the new page after certain number of visible records. This would be perfect for me if instead of multiple pages I could use multiple columns.
    Thank you,
    Peter

    Thank you.
    I think I see now how to format the columns.
    Peter
    Edited by: Peter Afonin on Sep 10, 2010 2:34 PM

Maybe you are looking for

  • Font not displaying/loading correctly in Character Pallet

    I recently upgraded to Snow Leopard and Creative Suite CS5, Adobe Illustrator CS 15.1.0. I'm using Suitcase Fusion 4 ver. 15.0.5 (latest version). I'm having a problem with 2 of my fonts loading correctly in illustrator's Character pallet. They displ

  • Can't add web page to existing document

    I am new to Acrobat 9 Pro (running on Win7). I love the feature where you can convert a web page to pdf and then add a wab page to an existing document. My probelm is that I saved one page as a pdf then went to a different link on that website that a

  • Web Service Call From Consumer Proxy in ABAP: Security Settings

    Hello All, Have a couple of questions: We are working on a scenario where we have to connect to a web service from ABAP. We have extracted the WSDL, and generated the client proxy, and configured a Logical Port. However, at the time of actual call, w

  • Cannot find "Initial Configuration" in NWA

    Hello, I have installed NW 7.1 PI, I'm following the document called "Installation Guide - SAP NetWeaver Process Integration 7.1 on Windows: MS SQL Server". In the Post Installation section there is the item, saying that I need to logon to NWA with t

  • Option to send calendar invite missing

    Greetings... I have always used ical with gmail and google apps email accounts.  Since upgrading to Yosemite, I no longer have the option to email invitees when I create events using my google apps account.  HOWEVER, I can email invitees using the de