I am trying to center my image and my order list, but I am having a hard time making it work can someone please give me a tip I tried CSS to align it in the center didn't work. I will place a link so people can see my code and post the code as well.
http://codepen.io/RomingArt/pen/RojXgq
.smaller-image{width:300px
}
h1 {font-family: Lobster;}
.thick-border{border-color:#14A5A5;
border-width:3px;
border-style:solid;
border-radius:0px;
text-align:center;}
<!-- This is my first tribute page, and I am not sure how to put the picture in the middle also I wanted to put together the list in the middle tried with div did not work hopefully someone will guide me or fix the code so I can learn.-->
<h1 class=" text-primary text-center">Booker T. Washigton</h1>
<h2 class="text-center text-primary"> April 5, 1856-November 14,1915.</h2>
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<a href="https://en.wikipedia.org/wiki/Booker_T._Washington" target="blank">
<img class="smaller-image thick-border"src=http://images.amcnetworks.com/wetv.com/wp-content/uploads/2014/01/bhm_quotes_bwashington.jpg> </a>
<h3> The life of a man who took each opporutnity to learn.</h3>
<ol>
<li>1856 – April 5 – Booker T. Washington is born a slave on the Burroughs’ Plantation. </li>
<li>1861 – Washington’s name appears on Burroughs’ property inventory. His value is $400.00.
</li>
<li>1865 – 1871 – Washington works in the salt and coal mines in Malden while attending school, for the first time, in the evenings.</li>
<li>1872 – Washington leaves his home to attend the Hampton Institute.</li>
<li>1875 – Washington graduates from the Hampton Institute with honors.</li>
<li>1875 – 1877 – Washington teaches school, in his hometown of Malden, WV, while helping his brothers (John, and adopted brother James) pay their tuition for the Hampton Institute.</li>
<li>1881 – July 4 – At age 25, Washington opens the Tuskegee Institute in an old church.</li>
<li>1887 – Olivia Washington gives birth to Washington’s first son, Booker T. Washington Jr.</li>
<li>1893 – Washington marries Margaret James Murray who had been Lady Principal of Tuskegee Institute for two years.</li>
<li>1901 – March – Washington’s most successful autobiography, Up from Slavery, is published.</li>
<li>1909 – Du Bois helps found the National Association for the Advancement of Colored People (NAACP).</li>
<li>1915 – November 14 – Washington dies at home in Tuskegee, Alabama.</li>
</ol>
<p> In order to learn more about the life of Booker T. Washigton click on image to learn about a great man.</p>
Add body{text-align:center;} as we also have to text-align:center; in the parent so that the content will get aligned centrally
body{
text-align:center;
}
.smaller-image{width:300px
}
h1 {font-family: Lobster;}
.thick-border{border-color:#14A5A5;
border-width:3px;
border-style:solid;
border-radius:0px;
text-align:center;}
<!-- This is my first tribute page, and I am not sure how to put the picture in the middle also I wanted to put together the list in the middle tried with div did not work hopefully someone will guide me or fix the code so I can learn.-->
<h1 class=" text-primary text-center">Booker T. Washigton</h1>
<h2 class="text-center text-primary"> April 5, 1856-November 14,1915.</h2>
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<a href="https://en.wikipedia.org/wiki/Booker_T._Washington" target="blank">
<img class="smaller-image thick-border"src=http://images.amcnetworks.com/wetv.com/wp-content/uploads/2014/01/bhm_quotes_bwashington.jpg> </a>
<h3> The life of a man who took each opporutnity to learn.</h3>
<ol>
<li>1856 – April 5 – Booker T. Washington is born a slave on the Burroughs’ Plantation. </li>
<li>1861 – Washington’s name appears on Burroughs’ property inventory. His value is $400.00.
</li>
<li>1865 – 1871 – Washington works in the salt and coal mines in Malden while attending school, for the first time, in the evenings.</li>
<li>1872 – Washington leaves his home to attend the Hampton Institute.</li>
<li>1875 – Washington graduates from the Hampton Institute with honors.</li>
<li>1875 – 1877 – Washington teaches school, in his hometown of Malden, WV, while helping his brothers (John, and adopted brother James) pay their tuition for the Hampton Institute.</li>
<li>1881 – July 4 – At age 25, Washington opens the Tuskegee Institute in an old church.</li>
<li>1887 – Olivia Washington gives birth to Washington’s first son, Booker T. Washington Jr.</li>
<li>1893 – Washington marries Margaret James Murray who had been Lady Principal of Tuskegee Institute for two years.</li>
<li>1901 – March – Washington’s most successful autobiography, Up from Slavery, is published.</li>
<li>1909 – Du Bois helps found the National Association for the Advancement of Colored People (NAACP).</li>
<li>1915 – November 14 – Washington dies at home in Tuskegee, Alabama.</li>
</ol>
<p> In order to learn more about the life of Booker T. Washigton click on image to learn about a great man.</p>
Add text-align:center; to html and body tag it,s working fine
html,body{ text-align:center; }
.smaller-image{width:300px
}
h1 {font-family: Lobster;}
.thick-border{border-color:#14A5A5;
border-width:3px;
border-style:solid;
border-radius:0px;
text-align:center;
}
html,body{
text-align:center;
}
<!-- This is my first tribute page, and I am not sure how to put the picture in the middle also I wanted to put together the list in the middle tried with div did not work hopefully someone will guide me or fix the code so I can learn.-->
<h1 class=" text-primary text-center">Booker T. Washigton</h1>
<h2 class="text-center text-primary"> April 5, 1856-November 14,1915.</h2>
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<a href="https://en.wikipedia.org/wiki/Booker_T._Washington" target="blank">
<img class="smaller-image thick-border"src=http://images.amcnetworks.com/wetv.com/wp-content/uploads/2014/01/bhm_quotes_bwashington.jpg> </a>
<h3> The life of a man who took each opporutnity to learn.</h3>
<ol>
<li>1856 – April 5 – Booker T. Washington is born a slave on the Burroughs’ Plantation. </li>
<li>1861 – Washington’s name appears on Burroughs’ property inventory. His value is $400.00.
</li>
<li>1865 – 1871 – Washington works in the salt and coal mines in Malden while attending school, for the first time, in the evenings.</li>
<li>1872 – Washington leaves his home to attend the Hampton Institute.</li>
<li>1875 – Washington graduates from the Hampton Institute with honors.</li>
<li>1875 – 1877 – Washington teaches school, in his hometown of Malden, WV, while helping his brothers (John, and adopted brother James) pay their tuition for the Hampton Institute.</li>
<li>1881 – July 4 – At age 25, Washington opens the Tuskegee Institute in an old church.</li>
<li>1887 – Olivia Washington gives birth to Washington’s first son, Booker T. Washington Jr.</li>
<li>1893 – Washington marries Margaret James Murray who had been Lady Principal of Tuskegee Institute for two years.</li>
<li>1901 – March – Washington’s most successful autobiography, Up from Slavery, is published.</li>
<li>1909 – Du Bois helps found the National Association for the Advancement of Colored People (NAACP).</li>
<li>1915 – November 14 – Washington dies at home in Tuskegee, Alabama.</li>
</ol>
<p> In order to learn more about the life of Booker T. Washigton click on image to learn about a great man.</p>
I think the problem is that it is trapped inside the <a> tag, and you are only selecting the image to move over, but that would leave the link behind, so the computer says: "that won't work" so it ignores the CSS. What I recommend doing is saying body {text-align: center;} and then wrapping a div around the text that you want to be aligned left and saying in the CSS: div {text-align:left;}. This will work because CSS is cascading and the div {text-align: left;} is down from the body {text-align} and it will override the first one and the div will be aligned on the left.
As I understand, you need to center your image and list items only. Is it right?
If not, just add text-align: center to h1,h2 tags in your css and your title will be centered also.
.wrapper {
text-align: center;
}
.content {
text-align: left;
margin: 0 auto;
width: 500px;
}
h3 {
text-align: center;
}
.inside {
margin: 0 auto;
}
.smaller-image{width:300px
}
h1 {font-family: Lobster;}
.thick-border{border-color:#14A5A5;
border-width:3px;
border-style:solid;
border-radius:0px;
text-align:center;}
<!-- This is my first tribute page, and I am not sure how to put the picture in the middle also I wanted to put together the list in the middle tried with div did not work hopefully someone will guide me or fix the code so I can learn.-->
<h1 class=" text-primary text-center">Booker T. Washigton</h1>
<h2 class="text-center text-primary"> April 5, 1856-November 14,1915.</h2>
<div class="wrapper">
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet">
<a href="https://en.wikipedia.org/wiki/Booker_T._Washington" target="blank">
<img class="smaller-image thick-border"src=http://images.amcnetworks.com/wetv.com/wp-content/uploads/2014/01/bhm_quotes_bwashington.jpg> </a></div>
<div class="content">
<div class="inside">
<h3> The life of a man who took each opporutnity to learn.</h3>
<ol>
<li>1856 – April 5 – Booker T. Washington is born a slave on the Burroughs’ Plantation. </li>
<li>1861 – Washington’s name appears on Burroughs’ property inventory. His value is $400.00.
</li>
<li>1865 – 1871 – Washington works in the salt and coal mines in Malden while attending school, for the first time, in the evenings.</li>
<li>1872 – Washington leaves his home to attend the Hampton Institute.</li>
<li>1875 – Washington graduates from the Hampton Institute with honors.</li>
<li>1875 – 1877 – Washington teaches school, in his hometown of Malden, WV, while helping his brothers (John, and adopted brother James) pay their tuition for the Hampton Institute.</li>
<li>1881 – July 4 – At age 25, Washington opens the Tuskegee Institute in an old church.</li>
<li>1887 – Olivia Washington gives birth to Washington’s first son, Booker T. Washington Jr.</li>
<li>1893 – Washington marries Margaret James Murray who had been Lady Principal of Tuskegee Institute for two years.</li>
<li>1901 – March – Washington’s most successful autobiography, Up from Slavery, is published.</li>
<li>1909 – Du Bois helps found the National Association for the Advancement of Colored People (NAACP).</li>
<li>1915 – November 14 – Washington dies at home in Tuskegee, Alabama.</li>
</ol>
<p> In order to learn more about the life of Booker T. Washigton click on image to learn about a great man.</p>
</div>
</div>
Related
I'm a beginner in HTML&CSS and now I'm coding my first project. But I'm kind of struggling with narrowing unordered lists. I attached photos that show how it must look like and how it actually looks like. If you can help me, I would be really happy.
How it must look like:
#tribute-info {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#tribute-description {
font-size: 18px;
}
li {
font-size: 16px;
}
<div id="tribute-info">
<h3 id="tribute-description">
Here's a time line of Dr. Borlaug's life:
</h3>
<ul>
<li><strong>1914</strong> - Born in Cresco, Iowa</li>
<li>
<strong>1933</strong> - Leaves his family's farm to attend the University of Minnesota, thanks to a Depression era program known as the "National Youth Administration"
</li>
<li>
<strong>1935</strong> - Has to stop school and save up more money. Works in the Civilian Conservation Corps, helping starving Americans. "I saw how food changed them", he said. "All of this left scars on me."
</li>
<li>
<strong>1937</strong> - Finishes university and takes a job in the US Forestry Service
</li>
<li>
<strong>1938</strong> - Marries wife of 69 years Margret Gibson. Gets laid off due to budget cuts. Inspired by Elvin Charles Stakman, he returns to school study under Stakman, who teaches him about breeding pest-resistent plants.
</li>
<li>
<strong>1941</strong> - Tries to enroll in the military after the Pearl Harbor attack, but is rejected. Instead, the military asked his lab to work on waterproof glue, DDT to control malaria, disinfectants, and other applied science.
</li>
<li>
<strong>1942</strong> - Receives a Ph.D. in Genetics and Plant Pathology
</li>
<li>
<strong>1944</strong> - Rejects a 100% salary increase from Dupont, leaves behind his pregnant wife, and flies to Mexico to head a new plant pathology program. Over the next 16 years, his team breeds 6,000 different strains of disease resistent
wheat - including different varieties for each major climate on Earth.
</li>
<li>
<strong>1945</strong> - Discovers a way to grown wheat twice each season, doubling wheat yields
</li>
<li>
<strong>1953</strong> - crosses a short, sturdy dwarf breed of wheat with a high-yeidling American breed, creating a strain that responds well to fertilizer. It goes on to provide 95% of Mexico's wheat.
</li>
<li>
<strong>1962</strong> - Visits Delhi and brings his high-yielding strains of wheat to the Indian subcontinent in time to help mitigate mass starvation due to a rapidly expanding population
</li>
<li><strong>1970</strong> - receives the Nobel Peace Prize</li>
<li>
<strong>1983</strong> - helps seven African countries dramatically increase their maize and sorghum yields
</li>
<li>
<strong>1984</strong> - becomes a distinguished professor at Texas A&M University
</li>
<li>
<strong>2005</strong> - states "we will have to double the world food supply by 2050." Argues that genetically modified crops are the only way we can meet the demand, as we run out of arable land. Says that GM crops are not inherently dangerous
because "we've been genetically modifying plants and animals for a long time. Long before we called it science, people were selecting the best breeds."
</li>
<li><strong>2009</strong> - dies at the age of 95.</li>
</ul>
</div>
You can wrap your <ul> in a <div> and center it like this:
.list {
max-width: 700px;
margin: 0 auto;
}
.list li {
margin-bottom: 1em;
}
<div class="list">
<ul>
<li>Your list here</li>
<li>Your list here</li>
<li>Your list here</li>
<li>Your list here</li>
<li>Your list here</li>
</ul>
</div>
Just add a CSS rule that limits the width of that ul. You can either use a class or ID on the ul for that or use a child selector like this:
#tribute-info > ul {
max-width: 400px;
}
(This applies to any ul which is a direct child ot the #tribute-info element - in your case only one, i.e. that list)
#tribute-info {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#tribute-description {
font-size: 18px;
}
li {
font-size: 16px;
}
#tribute-info > ul {
max-width: 400px;
}
<div id="tribute-info">
<h3 id="tribute-description">
Here's a time line of Dr. Borlaug's life:
</h3>
<ul>
<li><strong>1914</strong> - Born in Cresco, Iowa</li>
<li>
<strong>1933</strong> - Leaves his family's farm to attend the University of Minnesota, thanks to a Depression era program known as the "National Youth Administration"
</li>
<li>
<strong>1935</strong> - Has to stop school and save up more money. Works in the Civilian Conservation Corps, helping starving Americans. "I saw how food changed them", he said. "All of this left scars on me."
</li>
<li>
<strong>1937</strong> - Finishes university and takes a job in the US Forestry Service
</li>
<li>
<strong>1938</strong> - Marries wife of 69 years Margret Gibson. Gets laid off due to budget cuts. Inspired by Elvin Charles Stakman, he returns to school study under Stakman, who teaches him about breeding pest-resistent plants.
</li>
<li>
<strong>1941</strong> - Tries to enroll in the military after the Pearl Harbor attack, but is rejected. Instead, the military asked his lab to work on waterproof glue, DDT to control malaria, disinfectants, and other applied science.
</li>
<li>
<strong>1942</strong> - Receives a Ph.D. in Genetics and Plant Pathology
</li>
<li>
<strong>1944</strong> - Rejects a 100% salary increase from Dupont, leaves behind his pregnant wife, and flies to Mexico to head a new plant pathology program. Over the next 16 years, his team breeds 6,000 different strains of disease resistent
wheat - including different varieties for each major climate on Earth.
</li>
<li>
<strong>1945</strong> - Discovers a way to grown wheat twice each season, doubling wheat yields
</li>
<li>
<strong>1953</strong> - crosses a short, sturdy dwarf breed of wheat with a high-yeidling American breed, creating a strain that responds well to fertilizer. It goes on to provide 95% of Mexico's wheat.
</li>
<li>
<strong>1962</strong> - Visits Delhi and brings his high-yielding strains of wheat to the Indian subcontinent in time to help mitigate mass starvation due to a rapidly expanding population
</li>
<li><strong>1970</strong> - receives the Nobel Peace Prize</li>
<li>
<strong>1983</strong> - helps seven African countries dramatically increase their maize and sorghum yields
</li>
<li>
<strong>1984</strong> - becomes a distinguished professor at Texas A&M University
</li>
<li>
<strong>2005</strong> - states "we will have to double the world food supply by 2050." Argues that genetically modified crops are the only way we can meet the demand, as we run out of arable land. Says that GM crops are not inherently dangerous
because "we've been genetically modifying plants and animals for a long time. Long before we called it science, people were selecting the best breeds."
</li>
<li><strong>2009</strong> - dies at the age of 95.</li>
</ul>
</div>
Michael, answer by Lee Taylor is a nice one, in case you do not want a div element wrapping the list you can directly apply the "list" class to the element:
<ul class="list">
<li>Your list here</li>
<li>Your list here</li>
<li>Your list here</li>
<li>Your list here</li>
<li>Your list here</li>
</ul>
As well you must be sure that the unordered list is wrapped inside a container wider in size than element.
I have two paragraphs with ordered lists, but on my website, the paragraphs are not on the same line going vertically. Its a very slight difference but I need to fix it. I've tried changing the margins in the CSS but both of the paragraphs move at the same time. The second paragraph is more to the right than the first paragraph, I need it to align with the first paragraph.
here is the code
<div id="content">
<div class="content_item">
<br />
<h1> Conference/Workshop Publications </h1>
<ol>
<br /><li>Deb, D., Jones, E., "University-wide Adoption of Data Science", 51th ACM SIGCSE Conference, February 2020.<a href="https://doi.org/10.1145/3328778.3372657">
Link</a></li>
<br /><li>Deb, D., Smith, R. M., and Fuad, M, "Infusing Data Science Across Disciplines", In Proceedings of the 2019 ACM Conference on Innovation and Technology in Computer Science Education (ITiCSE), July 2019.<a href="https://doi.org/10.1145/3304221.3325579">
Link</a></li>
<br /><li>Deb, D., Fuad, M., Irwin, K., "A Module-based Approach to Teaching Big data and Cloud Computing Topics at CS Undergraduate Level", In the Proceedings of the SIGCSE '19: the 50th ACM Technical Symposium on Computer Science Education, February, 2019.<a href="https://doi.org/10.1145/3287324.3287494">
Link</a></li>
<br /><li>Deb, D., Cousins, S., Fuad, M., "Teaching Big Data and Cloud Computing: A Modular Approach", In the Proceedings of the 32nd IEEE International Parallel and Distributed Processing Symposium Workshops (IPDPSW), May, 2018.<a href="https://ieeexplore.ieee.org/document/8425437">
Link</a></li>
<br /><li>Deb, D., "On the Integration of Big Data and Cloud Computing Topics”, 48th ACM SIGCSE, March 2017.<a href="https://doi.org/10.1145/3017680.3022436">
Link</a></li>
</ol>
<!--close button_small--> </div>
<!--close content_container-->
<div id="content">
<div class="content_item">
<h1> Student Poster/Presentation </h1>
<ol>
<br /><li>Fields, M., Deb, D., “Use of Machine Learning Methods for Vehicle Predictive Maintenance”, Oral presentation at 2020 NSF/AAAS Emerging Researchers National Conference (ERN) in STEM, February 2020. Abstract
</br>
<br /><li>Rodrigues-Romero, D., Deb, D., “Stock Price Prediction using Ensemble Learning”, Poster presentation at 2020 NSF/AAAS Emerging Researchers National Conference (ERN) in STEM, February 2020. Abstract
</br>
<br /><li>Rodrigues-Romero, D., Deb, D., “Using Sentiment of News Articles to Predict Stock Price Performance”, Poster presentation at 2019 NSF/AAAS Emerging Researchers National Conference (ERN) in STEM, February 2019. Poster (pdf)
</br>
<br /><li>Robert, J., Deb, D., “Data Science for Understanding and Assessing Spatial Justice”, Poster presentation at 2019 NSF/AAAS Emerging Researchers National Conference (ERN) in STEM, February 2019.Poster (pdf)
</br>
<br /><li>Cousins, S., Deb, D., “Large-scale Workload Characterization in Apache Spark Framework”, Oral presentation at 2018 NSF/AAAS Emerging Researchers National Conference (ERN) in STEM, February 2018. <strong>(Awarded First Prize in the Undergraduate Computer Science Research Category)</strong>.Abstract
</br>
<br /><li>Mathis, G., Cousins S., Deb D., “Music Mood Classification based on Lyrics”, Poster presentation at 2018 NSF/AAAS Emerging Researchers National Conference (ERN) in STEM, February 2018.<a Poster (pdf)</li>
<br /><li>Cousins, S., Deb, D., “Explore Spark-SQL and its performance using TPC-H Workload”, Poster presented at NC-LSAMP Annual Undergraduate Research Conference, NC state university, November 2017. <strong>(Awarded second prize in Computer Science research category)</strong>.Poster (pdf)</li>
<br /><li>Harp. N, Deb, D., “Sentiment Analysis of Tweets and Movie Reviews”. Poster presented at WSSU Scholarship day, April. 2017.Abstract, Poster (pdf)</li>
<br /><li>Cousins, S., Deb, D., “Using Apache Spark in the Analysis of Wikipedia Page View Data in Correlation to the Real World Events”, Poster presented at WSSU Scholarship day, April. 2017Abstract, Poster (pdf)</li>
</ol>
<div class="content_container"> </div>
<!--close content_container-->
and here is the CSS
#content
{ font: normal 100% Arial, Helvetica, sans-serif;
width: 680px;
margin: 0 0 20px 10px;
float: left;
}
.content_item
{ width: 680px;
margin-top: .01px;
margin-bottom: .01px;
margin-left: auto;
text-align: justify;
text-justify: inter-word;
line-height: 1.5;
}
You hava few issues:
first content div is not closed
you have several </br> instead of </li> (br tags dont need to be closed)
you are missing a </div> at the end
Here is a jsfiddle where everything works fine: https://jsfiddle.net/2tbgf8qx/
body {
text-align:center;
}
hi{
font-family:arial;
font-size:50px;
background-color:blue;
}
h2{
color:#ff0000;
font-size:20px;
}
#image{
height:300px
}
#image-caption{
font-family:Algerian;
}
#tribute-link{
font-size:20px;
}
#tribute-info{
line-height:23px;
text-align:left;
column-count:3;
}
<div id= "main">
<hi id= "title"><b>kobe bryant</b>
</hi>
<h2>Famous basketball player </h2>
<div id=img-div">
<img id="image" src="data:image/jpeg;base64,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" alt ="kobe bryant" </img></div>
<p id="image-caption">Former Basketball player with several awards</p>
<p id= "tribute-info"> Kobe Bean Bryant (/ˈkoʊbiː/ KOH-bee; August 23, 1978 – January 26, 2020) was an American professional basketball player. A shooting guard, Bryant entered the National Basketball Association (NBA) directly from high school, and played his entire 20-season professional career in the league with the Los Angeles Lakers. Bryant won five NBA championships, was an 18-time All-Star, 15-time member of the All-NBA Team, 12-time member of the All-Defensive Team, was named the 2008 NBA Most Valuable Player (MVP), and was a two-time NBA Finals MVP winner. Widely regarded as one of the greatest players of all time,[3][4][5][6] he led the NBA in scoring during two seasons, ranks fourth on the league's all-time regular season scoring and all-time postseason scoring lists.
Bryant was the son of former NBA player Joe Bryant. He attended Lower Merion High School in Pennsylvania, where he was recognized as the top high-school basketball player in the country.
Upon graduation, he declared for the 1996 NBA draft and was selected by the Charlotte Hornets with the 13th overall pick; the Hornets then traded him to the Lakers. As a rookie, Bryant earned himself a reputation as a high-flyer and a fan favorite by winning the 1997 Slam Dunk Contest, and he was named an All-Star by his second season. Despite a feud with teammate Shaquille O'Neal, the pair led the Lakers to three consecutive NBA championships from 2000 to 2002.In 2003, Bryant was accused of sexual assault. Criminal charges were brought and then dropped after the accuser refused to testify, with a civil suit later settled out of court. Bryant denied the assault charge but admitted to a sexual encounter, and issued a public apology, but the allegations were considered to have harmed his public profile and led to the loss of several sponsorships.
After the Lakers lost the 2004 NBA Finals, O'Neal was traded and Bryant became the cornerstone of the Lakers. He led the NBA in scoring during the 2005–06 and 2006–07 seasons. In 2006, he scored a career-high 81 points; the second most points scored in a single game in league history, behind Wilt Chamberlain's 100-point game in 1962. Bryant led the team to two consecutive championships in 2009 and 2010, and was named NBA Finals MVP on both occasions. He continued to be among the top players in the league through 2013, when he suffered a torn Achilles tendon at age 34. Although he recovered from that injury, he suffered season-ending injuries to his knee and shoulder, respectively, in the following two seasons. Citing his physical decline, Bryant retired after the 2015–16 season.
At 34 years and 104 days of age, Bryant became the youngest player in league history to reach 30,000 career points. He became the all-time leading scorer in Lakers franchise history on February 1, 2010, surpassing Jerry West. Bryant was also the first guard in NBA history to play at least 20 seasons. His 18 All-Star designations are the second most all time, while it is the record for most consecutive appearances as a starter. Bryant's four All-Star MVP Awards are tied with Bob Pettit for the most in NBA history. At the 2008 and 2012 Summer Olympics, he won two gold medals as a member of the U.S. national team. In 2018, he won the Academy Award for Best Animated Short Film for his 2017 film</>
Click Here For more Information
thats what ihave done so far
</div>thast what i have done so far. i have been trying to edit and try new things like creating separate divs for the column before i edit but wont work.i still very new to this.like 2days into html and css
The image below is that of a tribute page of a pic and 3 columns. I tried to wrap the columns in divs in order to move them separately but it is not working. I tried position as well but still won't resolve my issue.
how can I make a paragraph format look like this
using this code?
Thank you! :)
<div class="col-sm-6 col-md-7 col-lg-7 sec-about-text">
<p> Healthy Endings came to life with the best intentions to create all natural snacks, organic when possible, raw and vegan with absolutely no preservatives. We love to snack periodically through out the day and we're always working on creating the most delicious and nutritious snacks to satisfy those cravings. "What fun is snacking if the snacks donít taste orgasmically good!"</p>
<p> Cherie Spencer, the founder and creator
of Healthy Endings snacks received her
certification as a Health Educator from
the world renowned Hippocrates Health
Institute in West Palm Beach, Florida and holds a Bachelors in Healthcare Administration from Florida Atlantic University. She also received a culinary certification from Atlantic County VoTech and holds a SafeServ Food Manager Certification/License. She is a holistic chef specializing in raw, living foods and loves to prepare and share healthy food with family and friends.</p>
</div>
Here is a jsfiddle showing the basic process: https://jsfiddle.net/jq16sfjg/
.floated {
margin: 10px;
float: right;
}
I will leave it up to you to style the font, whitespace, and colors.
Basically, you just need to float the text that breaks the paragraph to the right.
I'm working with several rows that contain two columns. One column containing text and the other containing an image. Each row alternates where the copy and image are displayed.
The 1st row has the image on the left, copy on right.
The 2nd row has the image on the right, copy on left.
The 3rd row has the image on the left, copy on right... and so on...
[website: http://www.raa.com/dev/who-we-are.shtml#team]
I'm new to Bootstrap and am trying to figure out how (on Mobile devices) to get the image to appear below the copy on **ALL ROWS.** Currently when viewing the site, the image and copy alternate in position for each row. I tried the push/pull commands with no success.
Help!!
******HTML Code******
<!-- start Ronald Simmons area -->
<section id="ronaldSimmons">
<div class="container">
<div class="row">
<div class="col-md-5">
<img src="images/team-pics/simmons.png">
</div>
<div class="col-md-7">
<font size="+3" color="#396598">MANAGEMENT</font>
<p></p>
<h2>
<div class="top-buffer-md">Ronald E. Simmons</div>
</h2>
<p class="lead"><font color="#396598">Chairman</font></p>
<p>Ron has been in the investment industry for over 25 years, and has worked with retiring crew member
families since 1987. He is the co-founder and Chairman of Retirement Advisors of America. In 2012
Ron was elected to serve in Texas State House of Representatives. He is a national speaker on
leadership and entrepreneurship and is very involved with the charitable organization Equip. Ron
serves as Vice Chairman of the national Board of Directors of the Autism Society of America and is
also involved with his church, Prestonwood Baptist, as a teacher in the young married division. He
is a graduate of Dallas Baptist University with a Bachelors degree in Business.</p>
<p><font color="#396598">Back to Top</font>
</div>
</div>
</div>
</section>
<!-- end Ronald Simmons area -->
Where you need to put text box on right side then you can follow this HTML structure
<section id="ronaldSimmons">
<div class="container">
<div class="row">
<div class="col-md-7 pull-right">
<font size="+3" color="#396598">MANAGEMENT</font>
<p></p>
<h2>
<div class="top-buffer-md">Ronald E. Simmons</div>
</h2>
<p class="lead"><font color="#396598">Chairman</font></p>
<p>Ron has been in the investment industry for over 25 years, and has worked with retiring crew member families since 1987. He is the co-founder and Chairman of Retirement Advisors of America. In 2012 Ron was elected to serve in Texas State House of Representatives. He is a national speaker on leadership and entrepreneurship and is very involved with the charitable organization Equip. Ron serves as Vice Chairman of the national Board of Directors of the Autism Society of America and is also involved with his church, Prestonwood Baptist, as a teacher in the young married division. He is a graduate of Dallas Baptist University with a Bachelors degree in Business.</p>
<p><font color="#396598">Back to Top</font>
</p>
</div>
<div class="col-md-5">
<img src="images/team-pics/simmons.png">
</div>
</div>
</div>
and simply add css rules on small screen
#media only screen and (max-width: 767px){
.pull-right{
float: none !important;
}
}
Because TB always force element on right with pull-right class and in your case you don't need to right align text box on small screen.
Doesn't seem effective, but would work:
<section id="ronaldSimmons">
<div class="container">
<div class="row">
<div class="col-md-7 visible-xs-*-*">
<font size="+3" color="#396598">MANAGEMENT</font><p></p>
<h2><div class="top-buffer-md">Ronald E. Simmons</div></h2>
<p class="lead"><font color="#396598">Chairman</font></p>
<p>Ron has been in the investment industry for over 25 years, and has worked with retiring crew member families since 1987. He is the co-founder and Chairman of Retirement Advisors of America. In 2012 Ron was elected to serve in Texas State House of Representatives. He is a national speaker on leadership and entrepreneurship and is very involved with the charitable organization Equip. Ron serves as Vice Chairman of the national Board of Directors of the Autism Society of America and is also involved with his church, Prestonwood Baptist, as a teacher in the young married division. He is a graduate of Dallas Baptist University with a Bachelors degree in Business.</p>
<p><font color="#396598">Back to Top</font>
</div>
<div class="col-md-5">
<img src="images/team-pics/simmons.png" >
</div>
<div class="col-md-7">
<font size="+3" color="#396598">MANAGEMENT</font><p></p>
<h2><div class="top-buffer-md">Ronald E. Simmons</div></h2>
<p class="lead"><font color="#396598">Chairman</font></p>
<p>Ron has been in the investment industry for over 25 years, and has worked with retiring crew member families since 1987. He is the co-founder and Chairman of Retirement Advisors of America. In 2012 Ron was elected to serve in Texas State House of Representatives. He is a national speaker on leadership and entrepreneurship and is very involved with the charitable organization Equip. Ron serves as Vice Chairman of the national Board of Directors of the Autism Society of America and is also involved with his church, Prestonwood Baptist, as a teacher in the young married division. He is a graduate of Dallas Baptist University with a Bachelors degree in Business.</p>
<p><font color="#396598">Back to Top</font>
</div>
</div>
</div>
</section>