url paste into bio section of homepage is somehow being changed

2»

Comments

  • AllenAllen Registered Users Posts: 10,013 Major grins
    edited June 19, 2007
    iamback wrote:
    One of those days, Allen? Those "<span " bits don't belong in there. <img src="https://us.v-cdn.net/6029383/emoji/mwink.gif&quot; border="0" alt="" >
    Oops, must of been cross eyed at the time, have no idea how they got
    there.<img src="https://us.v-cdn.net/6029383/emoji/headscratch.gif&quot; border="0" alt="" > And it's so obvious. <img src="https://us.v-cdn.net/6029383/emoji/eek7.gif&quot; border="0" alt="" > Too much fast copy/pastin' I guess.
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • krh100krh100 Registered Users Posts: 89 Big grins
    edited June 24, 2007
    Hey Allen,

    How come I can't get this code to work in my bio? The "biotext" and "bioheaders" won't do there thing ...

    <div id="gameresults">
    <p align="center">
    <!
    Slide Show Footer Below this line
    >
    Sign-up NOW for the <a href="http://jahawk.smugmug.com/gallery/1832338?trumbaEmbed=view%3Devent%26eventid%3D67246774&quot;&gt;2007 Summer Basketball Camp</a>!
    <!
    Slide Show Footer Above this line
    >
    </p>
    <br>
    <p id=”bioheaders”>
    <!
    Header #1 Below this line
    >
    Lady Wolves slip past Lake Washington to WIN their first game at Oregon City Tourney! <a href="http://www.ocbasketball.com/brackets/2003highschoolwk2/b.htm"&gt;
    June 22nd--Oregon City Tournament</a>
    <!
    Header #1 Above this line
    >
    </p>
    <br>
    <p id=”biotext”>
    <!
    Text #1 Below this line
    >
    Lady Wolves leave it all on the court over the weekend finishing 5-3 for a fourth place finish. Scores are posted in the
    <a href="http://jahawk.smugmug.com/gallery/2727389">schedule</a>.
    <!
    Text #1 Above this line
    >
    </p>
    <br>
    <br>
    <p id=”bioheaders”>
    <!
    Header #2 Below this line
    >
    SAVE THE DATE: October 20, 2007!! 2nd Annual
    <a href=" http://jahawk.smugmug.com/gallery/2039298#104650445 ">
    Howl-O-Ween Fest Dinner and Auction </a> …
    <!
    Header #2 Above this line
    >
    </p>
    <br>
    <p id=”biotext”>
    <!
    Text #2 Below this line
    >
    Who will be the highest bidder this year? Details to come.
    <!
    Text #2 Above this line
    >
    </p>
    <br>
    <br>
    <p id=”bioheaders”>
    <!
    Header #3 Below this line
    >
    Tryouts for 2007-08 Select Basketball Teams …
    <!
    Header #3 Above this line
    >
    </p>
    <br>
    <p id=”biotext”>
    <!
    Text #3 Below this line
    >
    Tryouts for ALL Select Teams is planned for September--details can be found
    in the <a href="http://jahawk.smugmug.com/gallery/1742870"&gt;
    Select Team Blog</a>.
    <!
    Text #3 Above this line
    >
    </p>
    </div>
  • AllenAllen Registered Users Posts: 10,013 Major grins
    edited June 24, 2007
    krh100 wrote:
    Hey Allen,

    How come I can't get this code to work in my bio? The "biotext" and "bioheaders" won't do there thing ...

    <div id="gameresults">
    <p align="center">
    <!
    Slide Show Footer Below this line
    >...
    Start by removing all the
    <!
    ......
    >
    and it shows.

    and why all the id's?
    <p id=”bioheaders”>
    might change them to <p>
    or <p class=”bioheaders”>
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • krh100krh100 Registered Users Posts: 89 Big grins
    edited June 24, 2007
    Allen wrote:
    Start by removing all the
    <!
    ......
    >
    and it shows.

    and why all the id's?
    <p id=”bioheaders”>
    might change them to <p>
    or <p class=”bioheaders”>

    Hi Allen,

    I figured out the problem. I was editing in WORD and WORD would only give me right-side quote marks like this (”). When I change to these (") it all worked fine. Thanks for your time.
  • iambackiamback Registered Users Posts: 288 Major grins
    edited June 25, 2007
    krh100 wrote:
    Hi Allen,

    I figured out the problem. I was editing in WORD and WORD would only give me right-side quote marks like this (”). When I change to these (") it all worked fine. Thanks for your time.
    All the same, rows of dashes in a comment are not valid code; if you happen to have an odd number of dashes (or, in fact, not a multiple of four), whole sections of code may still "disappear" when a browser interprets it. Keep only the outer pairs of two dashes (so keep <!-- and -->) and change the rest into asterisks or underscores.

    For instance change this:
    [HTML]<!
    Slide Show Footer Below this line
    >[/HTML]
    into this:
    [HTML]<!--************************** Slide Show Footer Below this line ***************************-->[/HTML]

    Don't remove comments! Comments are good - they just need to be valid code.

    And Alan is right about the ids: you cannot have multiple ids of the same name on a page - if you want to "address" multiple things by the same name you need a class; if you want to address them individually you need an id - but then that needs to be unique.
    Marjolein Katsma
    Look through my eyes on Cultural Surfaces! - customizing... currently in a state between limbo and chaos
Sign In or Register to comment.