So, I'm trying to make this pet's profile Rudy
I got almost everything to look how I want it to look, except two things:
1- Is there a way to hide the bookmarks that appear to the right?
2- I can't seem to be able to change the font's style or the color for the bold text DX
Thanks in advance <3
My Code
<p>, , -ban, -ban-main, -lrc, -rrc {display:none;}
, -right, , , , h2, a, {display:none;}
, , body, , , {background-color:transparent;}</p>
<p>, , , , , , {display: none;}
li#stat_level, li#stat_strength, li#stat_defense, li#stat_speed, li#stat_health, li#stat_hp, li#stat_intelligence, li#stat_books_read, li#stat_food_eaten, li#pet_employment {display: none;}</p>
<p>.treasure_item {
margin-top:5px;
margin-left:17px;
}</p>
<p>
{
width: 275px;
margin-right: auto;
margin-left: auto;
position:absolute; top:317px;left:520px;
height:300px;
overflow:auto;</p>
<p>}</p>
<p> {position:absolute; top:65px; left:120px;}</p>
<p> {position:absolute; top:90px; left:340px;}</p>
<p>{position:absolute; top:70px; left:500px; width:100px;}</p>
<p>.pet_name {position:absolute;left:140px;top:30px;}</p>
<p>.pet_color_info {position:absolute;left:650px;top:100px;}</p>
<p>.owner {position:absolute;left:650px;top:120px;}</p>
<p>.pet_age_info_date {position:absolute;left:650px;top:140px;}</p>
<p>.pet_wco_info_date {position:absolute;left:650px;top:160px;}</p>
<p>.pet_like {position:absolute; left:290px; top:20px}</p>
<p>{position:absolute; left:103px; top:317px;height:300px;width:275px; overflow:auto;}</p>
<p>body {
background-image: url("https://orig00.deviantart.net/44b3/f/2018/064/9/0/sem_ttulo_3_by_lady_squ1d-dc51uq1.png");
background-repeat: no-repeat;
background-color: ;
}</p>
<p>font {
font-style: normal;
font-family: "Times New Roman", Times, serif;;
}</p>
<p>p.thick {
font-weight: bold;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-color: ;
}</p>
</style>
<center>
Name: Abel Lavan<br>
Age: 19<br>
Height: 161cm<br>
Hobbies: Reading, cooking<br>
Likes: Plushies, cheese, the color green, Cecil, cute things<br>
Dislikes: Rain, peas, <br>
Main Traits: Shy, pessimistic, hardworking, caring.<br><p>
<p>a a a a a a a a a a a a a a a a a a a a a a a a a a aa a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a aa a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a aa a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a aa a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a a</p>
</center>
To hide the bookmarks, add this { display: none; }
As to the bold text, you'll need to use "b, strong", instead of "p.thick" (without the quotes of course). "font" is also not a valid selector, you should add those font-properties to the body selector instead :)
Thanks a bunch <3
Can I just ask one more question?
I managed to change the bold font just fine, but I can't seem to be able to change the color >.<"
b. strong {
font-weight: bold;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-color: ;
}
Again, thanks a lot ;3;
You're quite welcome :) Also, it's "b, strong", with a comma, not a point. And it's just color, not font-color. So you'd need this b, strong {
font-weight: bold;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color: ;
}