Link to home
Start Free TrialLog in
Avatar of David Schure
David Schure

asked on

Unable to change font size.

I am trying to make the font a little larger on the bio of this web page. Cannot for the life of me figure out where to change this.  Have spent much time on this....

http://www.mediascrubber.com/index.html

Any help is appreciated.  Thank you.
ASKER CERTIFIED SOLUTION
Avatar of Chris Michaelides
Chris Michaelides
Flag of Greece image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of David Schure
David Schure

ASKER

Thank you Chris.  I changed it to 18pts and it's perfect!
Avoid using inline styles as much as possible. Rather use CSS
Option 1
#bio p {
  font-size: 18px;
}

Open in new window

Option 2
Give your specific elements a class that allow you to target them
<div class="col-lg-5 offset-lg-1" class="bio-text">
          <!--div class="col-lg-5 offset-lg-1"-->
                <h3>ALESSANDRO</h3>
                <!--div class="divider" style="height: 30px"></div>
                <div class="divider-xs" style="height: 15px"></div-->
                
                <p>...</p>
                <p>...</p>
</div>

Open in new window

And then
.bio-text {
  font-size: 18px;
}

Open in new window


As far as possible keep the styles out of your markup.
Thank you Julian I appreciate your input.  I did the #ID because the class did not work.  Can you have two claasses together?
<div class="col-lg-5 offset-lg-1" class="bio-text">

Open in new window

not like that - my error in my last post
Should have been

<div class="col-lg-5 offset-lg-1 bio-text">

Open in new window