UPDATE: A new image browse/upload/insert capability has been installed. The older methods below this update still work, but here's the new and improved way:
UPLOADING IMAGES:
When you create a new article, etc., or a new comment, you will see the editor buttons across the top of the text box.
Click the "image" button.
1. On the pop-up image link form, click the "browse" button.
2. This will open up an image/file browse dialog showing all the files/images you have uploaded. If the image you want to include is not shown:
- Click the "upload" button.
- Click the "choose file" button to open a file browser window on your computer.
- Locate the file on your computer that you want to upload, highlight it, and click "open".
- Click the "upload" button to upload the file. Once the upload is complete you can choose more files to upload, or close the upload form when you are finished.
3. The uploaded file will now appear in your user file browser window. Highlight it and click the "send to editor" button.
4. The file/image info will be populated in the image form. Make any desired changes or accept the defaults, and click OK to insert the file/image link.
Note that this works with comments as well as blog posts, events, etc. wherever the editor buttons appear.
(NOTE: The editor "link" button has similar capabilities for uploading and embedding links to other types of files such as PDFs.)
MAKING A SHADOWBOX IMAGE:
A "shadowbox" image is a larger image (up to 1024 x 768) linked to a "preview" image that will fit on the front page up to (520 x 520). The larger image is displayed in a popup window when the preview image is clicked.
To create a shadowbox image:
1. Upload your large image as described above, except click the "create preview image" checkbox before clicking upload. This will upload your image and create a smaller sized preview image with the file prefix of "preview_".
2. Insert the "preview_" front page version of the image link as above.
3. The image link will be highlighted. If it isn't, highlight it.
4. Click the "Shadowbox" editor button. This will open a form for adding the shadowbox link. The preview image link will automatically show in the link text.
5. Click "browse", locate the large version of the image, select it, and click "send to editor" as above. A link to the large version will be placed in the shadowbox link URL.
6. Click OK to insert the shadowbox link wrapped around the preview image link.
NOTE: If you prefer to have a word or phrase open your large shadowbox link, skip the steps for creating, inserting and highlighting a preview version link and just type in the text, highlight it, and click the Shadowbox button, or just click Shadowbox and type in the text you want for the text link.
MAKING A SHADOWBOX GALLERY:
1. Create a shadowbox image link as above, except put a gallery name between the brackets in the "shadowbox[]" variable, for example "shadowbox[paris]".
2. Un-select the just created shadowbox link, move your cursor to the end, and create additional shadowbox image links with no text making sure to include the gallery name in the "shadowbox[]" variable. Insert the additional image links immediately following the preview shadowbox link, and continue inserting with no blank lines between links.
When front page preview image is clicked, it will pop up the first image and display a slideshow of all the images tagged with the gallery name you specify. Users can navigate through the slideshow using the left and right arrows and the spacebar to pause, or using the buttons on the screen.
OLDER METHODS:
To include photos or other images such as charts or graphs as part of your blog posts, use the 'file attachments' link on the blog post creation page.
Uploading images to include in blog posts
To upload an image such as a photo, illustration, chart/graph, etc. that you want to include in a blog post, use the "file attachments" feature on the blog post entry form. Note that these images do not appear in the image/photo gallery or anywhere else except where you explicitly place them.
On the create blog post form, expand the 'file attachments' section that appears under the blog post text box. Click the 'browse' button to locate the photo/image you want to upload on your local hard drive. Then click "attach" to attach the file to the post. (You can attach multiple files/photos.)
Then, you can uncheck the "list" check box so the attachment is not included in the list of attachments. Instead, you want to copy the url of the image file that is displayed in the list of attachments and include that in an HTML 'img' tag in your post. For example:
<img src="http://www.knoxviews.com/files/photo.jpg">
Or:
<img src="/files/photo.jpg">
Notes:
Your images are uploaded to folder 'files'. Images in this folder can be referenced on the KnoxViews.com site as simply '/files/photo.jpg', or with the full http path.
You may upload multiple images from the image upload browser window. After the first image is uploaded, simply click the 'browse' button to locate the next image to upload and repeat as necessary.
Images that appear on the front page must not be wider than 425 pixels to avoid disrupting the layout of the main/front page. Images appearing in the "read more" full page for a single post after the break tag must not be wider than 640 pixels.
You can use the "width=520" property for images on the front page. You can also wrap the image tag with an anchor tag that has a link to the full image so users can click on the front page "thumnail" to see the full image.
For variations on placement of your image in your blog post, modify the example <img> tag as follows:
To align the image on the right side of your post, with text flowing on the left, use:
<img src="/files/photo.jpg" align="right">
To align the image on the left side of your post, with text flowing on the right, use:
<img src="/files/photo.jpg" align="left">
When using "right" or "left" alignment, your images should be no wider than 150-200 pixels for proper appearance.
Uploading images to include in comments
To upload images to include in comments, use the 'upload file/image' function in the navigation pane. This works similarly to making a blog post, but does not show the image or images on the front page. Instead, you can copy the URL and include it in an 'img' link as described above.
Using the "shadowbox" enlargement/gallery feature
The "shadowbox" feature that lets you include a larger size pop-up image with your photos and create a gallery/slideshow. To use it:
1. Save the "front page" version of your photo with a width not exceeding 520px.
2. Save a second "large" version of your photo, recommended max width of 1024px.
3. Create a new post, attach the two image files.
4. In the body of the post, embed an image tag for the "front page" 520px max size photo like this:
<img src="http://kvcdn.kvc.netdna-cdn.com/files/myphoto_sm.jpg">
5. Wrap the image tag with a link to the larger size photo using the special keyword 'rel="shadowbox"' like this:
<a href="http://kvcdn.kvc.netdna-cdn.com/files/myphoto_lg.jpg" rel="shadowbox"><img src="http://kvcdn.kvc.netdna-cdn.com/files/myphoto_sm.jpg"></a>
That's it. Clicking on front page photo will open a pop up with the larger version.
P.S. Note that you can just upload the large version if you want, and use it as the front page small photo with the 'width' attribute, like this:
<a href="http://kvcdn.kvc.netdna-cdn.com/files/myphoto_lg.jpg" rel="shadowbox"><img src="http://kvcdn.kvc.netdna-cdn.com/files/myphoto_lg.jpg" width="520"></a>
The disadvantage is that the browser does the resizing, and the image quality will probably not be as good as your photo software.
You can also create a gallery:
1. Follow the steps above to create the first photo in the gallery, i.e. the one that will show on the "front page."
2. Modify the 'rel="shadowbox"' tag to include a gallery name in brackets, for example 'rel="shadowbox[vacation]", like this:
<a href="http://kvcdn.kvc.netdna-cdn.com/files/myphoto_lg.jpg" rel="shadowbox[vacation]"><img src="http://kvcdn.kvc.netdna-cdn.com/files/myphoto_sm.jpg"></a>
3. Attach additional large size photos for your gallery.
4. Create empty link references for each photo referencing the same gallery name in the "shadowbox" tag, like this:
<a href="http://kvcdn.kvc.netdna-cdn.com/files/myphoto2_lg.jpg" rel="shadowbox[vacation]"></a>
<a href="http://kvcdn.kvc.netdna-cdn.com/files/myphoto3_lg.jpg" rel="shadowbox[vacation]"></a>
<a href="http://kvcdn.kvc.netdna-cdn.com/files/myphoto4_lg.jpg" rel="shadowbox[vacation]"></a>
etc.
(Note: You may need to remove line breaks at the end of each link reference so they all run together in one big paragraph.)
An example (click image to start slideshow):
|
|
Discussing:
- Nashville's O'Charley's chain sold for $221 million (6 replies)
- Did Gloria Ray get a raw deal? (31 replies)
- Why can't the US make erasers? (6 replies)
- Real or Photoshop? (3 replies)
- Bean on His Staceyness, Mayor Burchett, & the Governor (16 replies)
- Campfield's willingness to mislead surmounts itself: abortion causes breast cancer (27 replies)
- Chattanooga group pays geeks to move downtown (4 replies)
- In the wake of KTSC - another local vendor contract that needs a closer look (9 replies)
- A couple of good books (10 replies)
- Who do you like in the Super Bowl? (15 replies)
- What is the purpose of printing this type of letter to the editor? (30 replies)
- Komen Foundation backs down (10 replies)
Upcoming events:
- Feb 13 2012 - 6:30pm (6 days 15 hours from now)
- Feb 15 2012 - 12:00pm (1 week 1 day from now)
User login
Navigation
TN Progressive
- Super blow to municipal budgets (Enclave)
- Aspie copycat (Domestic Psychology)
- Think this cannot happen here? (Enclave)
- GLAAD Demands CNN Fire Homophobic Roland Martin (TN Guerilla Women)
- U.S. Constitution Outdated & NOT A Model for Other Nations (TN Guerilla Women)
- Quote of the Day: Climate Has Shifted (Kitchen Table)
- Mitt Romney’s Money Shot (Southern Beale)
- TVA Attacks Office of Inspector General (RoaneViews)
- Quote of the Day...Property Assessor Race Edition (RoaneViews)
- Senator Campfield's Follies Heading to Court (Joe Powell)
- TVA: To the Roane County Community Advisory Group February 6, 2012 (RoaneViews)
- Joe Haynes Says He Will Retire And Ghosts From The Civil War (Blue TN)
- Its Halftime America (Sean Braisted)
- Watch an Ad to Watch This AD (Kitchen Table)
- New HBO Series: 'Girls' (Video) (TN Guerilla Women)
- Update on proposed 6th and Garfield development (Enclave)
TN Politics
- Ah yes the urgings (Post Politics)
- Darwin, Evolution Celebrated at UT (if not at the Legislature) (Tom Humphrey)
- Gotta time this just right (Post Politics)
- Is it court time for Campfield? (Post Politics)
- GOP Congressmen Not Sure About Obama Merger Plans (but sure he should have done more) (Tom Humphrey)
- Old wine into new wineskins (Post Politics)
- Republicans Hold $3 to $1 Lead Over Democrats in Fundraising (Tom Humphrey)
- Haynes, his way (Post Politics)
- $19-to-$1 Claim Invites Skepticism (Tom Humphrey)
- Sundquist, Comptroller, Former Banking Commissioner and State Rep Had Ties to Failed Bank (Tom Humphrey)
- Hamilton County Lincoln Day Dinner, storified (TN Ticket)
- Mayfield churns 3rd District race (TN Ticket)
Local Media Blogs
- Todd Steed's Tribute to Rocky Wynder (Metro Pulse)
- Cash mob to benefit South Knoxville business (Carly Harrington)
- Monday briefing (Josh Flory)
- The Daily Plan-It: Monday, Feb. 6 (Metro Pulse)
- The inventor of the camera phone may surprise you (Jack Lail)
- Lies, Damn Lies, and Statistics (Metro Pulse)
- Friday briefing (Josh Flory)
- The Weekend Plan-It: Feb. 3-5 (Metro Pulse)
- Black Wednesday anniversary slipped by (Jack McElroy)
- Culver Schmid joins new firm (Josh Flory)
- Gloria Ray's Job Not Long for This World? (Metro Pulse)
- Thursday briefing (Josh Flory)
Local Paper
- Tennessee Valley Power Use (KNS Business)
- Energy-efficient appliances key to TVA power savings, report says (KNS Business)
- Burchett wants to renegotiate KTSC contract (KNS News)
- Knox County to investigate 2009 KTSC payment (KNS News)
- Work on new Oak Ridge retail site imminent with TIF approval (KNS Business)
- National Weather Service: January '12 was 19th warmest in Knoxville (KNS News)
- Renegade Mountain residents fight to restore water (KNS Business)
- Counterfeiter pleads guilty, gets 2 1/2-year sentence (KNS News)
- 50-75 cats hoarded in 'rancid' East Knox County house (KNS News)
- Knox gas prices edge lower, oil falls below $97 (KNS Business)
Local TV News
- Big spike of overdose deaths from prescription pills (WATE)
- Niota sewage operator sentenced to prison (WATE)
- 20 dead cats found in East Knox County home (WATE)
- Mother and child missing from Cumberland County (WATE)
- Update:Missing 90-year-old man found in Fountain City (WATE)
- KFD remembers McClung fires 5 years later (WBIR)
- Proposed child labor changes could affect farmers (WBIR)
- Dozens of alive and dead animals found in home (WBIR)
- Todd's Weather at Work: Ober Gatlinburg (WBIR)
- Sheriff: Pair that ended up in Holston River don't know how they got there (WBIR)
- Living Christmas tree founder dies (WVLT)
- More job opportunities coming to Knoxville (WVLT)
State News
- Memphis City Council to vote on annexation of Grey's Creek area (Commercial Appeal)
- Former Memphian parlays his comedic talents to Super Bowl ad (Commercial Appeal)
- Homeless HIV/AIDS patients gain support, roof (Commercial Appeal)
- Accused bank robber couldn't alter habits (Commercial Appeal)
- What a waste! Take stock of uneaten food thrown out, plan ahead to reduce trash (Commercial Appeal)
- Wine in grocery stores bill fails again in TN (Times Free Press)
- Body found, murder suspected in Polk County (Times Free Press)
- Pair arrested in Dade County on theft charges (Times Free Press)
- Niota, TN, sewage operator sentenced to prison (Times Free Press)
- Tennessee school bus driver accused of having sex with 14-year-old girl (Times Free Press)
- Randy Travis apologizes after public intoxication arrest (Tennessean)
- Who is Dolly Parton's silent partner in family fun parks? (Tennessean)
Wire Reports
- Romney looks to squelch Santorum's late rise (AP) (Yahoo Politics)
- Xstrata and Glencore agree $90 billion merger (Reuters) (Yahoo Business)
- Messy caucuses in Nevada, Iowa raise questions (AP) (Yahoo Politics)
- Greek leaders face crunch talks, unions strike (Reuters) (Yahoo Business)
- Toyota Q3 jumps, raises FY outlook on cost cuts, incentives (Reuters) (Yahoo Business)
- Obama team returning money tied to casino owner (AP) (Yahoo Politics)
- Kids in Washington home blast suffered chop wounds (Reuters) (Yahoo News)
- Greece wrangling tempers market momentum; RBA holds rates (Reuters) (Yahoo Business)
- Obama campaign urges fundraisers to back super PAC (AP) (Yahoo Politics)
- Facebook governance a concern for California pension fund (Reuters) (Yahoo Business)
- Obama nominates Air Force's first female four-star general (Reuters) (Yahoo News)
- Tea party: Warming or resigned to Mitt Romney? (AP) (Yahoo Politics)
- Former lobbyist Abramoff balks at naming ex-associates (Reuters) (Yahoo News)
- Slab City: Living Off the Grid in California's Badlands (Time.com) (Yahoo News)
- Inside Facebook's IPO: How the Social Web Will Reshape the Economy (Time.com) (Yahoo News)
Popular today
Popular this week
TN Progressive
- BlountViews
- Cup of Joe Powell
- Left Wing Cracker
- Newscoma
- Out of the Blue
- RoaneViews
- Sean Braisted
- Southern Beale
- TN Citizen Action
- TN Talking Points
- Tiny Cat Pants
- TN Guerilla Women
- Vibinc
- View From My Kitchen Table
- Wade Munday
- WhitesCreek Journal
Nearby:
- AC Entertainment
- Agrarian Urbanite
- Blount Dems
- Bottom Line
- Craig Thomas
- Daily Pulse
- David Oatney
- Discover ET
- Domestic Psychology
- Dwight Van de Vate
- Ellen Smith
- Erin Chapin
- Fletch
- Fort Sanders
- Frank Murphy
- Frussie's
- Gene Patterson
- Home/Work
- Instapundit
- Jack Lail
- Jack McElroy
- Jim Stovall
- Julie Apple
- Knox Dems
- KnoxBlab
- Knoxify
- Knoxvillager
- Last Home
- Les Jones
- Long Pauses
- Lynn Point Records
- MamaPundit
- Michael Silence
- Mike Donila
- MoxCarm Blue Streak
- Mushy's Moochings
- Pam Strickland
- P.E.N. Studio
- Phyllis Patterson
- Pittman Properties
- Political Leverage
- Property Scope
- Randall Brown
- Reality Me
- Resonance
- Rikki Hall
- Rob Huddleston
- School Matters
- Snark Bites
- Stacey Campfield
- Stick With a Nose
- Stop Alcoa Parkway
- Suzy Trotta
- Tabloid Boy
- Terry Frank
- Thirteen Letters
- TN Clean Water
- Tom Humphrey
- Tri Cities
- Wendy Pitts Reeves
Beyond:
- Andy Axel
- Daily Docket
- Democratic Talk Radio
- Enclave
- Ginger Snaps
- Just Wonderin'
- Lean Left
- Post Politics
- Quiet Life
- Smart City Memphis
- Southern Liberal Living
- TN Dems
- TN Ticket
- TN Trivia
- TN Women's Caucus
- West TN Liberal
- Bob Stepno
- Facing South
- Great Smoky
- Lovable Liberal
- Newsrack
- Opinari
- Wandering Hillbilly
At large:
- Agonist
- Alterdestiny
- American Street
- Atrios
- Burnt Orange Report
- Buzzflash
- College Dems
- Common Cause
- Crooks and Liars
- Daily Kos
- Democratic Strategist
- Democrats.org
- Digby's Hullabaloo
- DSCC
- Ezra Klein
- The Fix
- Huffington Post
- Lefty Blogs
- Liberal Oasis
- Media Matters
- MyDD
- Open Secrets
- Pam's House Blend
- Political Wire
- Politico
- Progressive States
- Seeing the Forest
- Skippy the Bush Kangaroo
- Suburban Guerrilla
- Swing State Project
- Talk Left
- Talking Points Memo
- Think Progress
- Truthdig

