Change Font Type In Celestia Template - Question | JoomShaper
🎃 Halloween Sale is Live! Get 35% OFF on all plans. Sale ends soon! Get Offer

Change Font Type In Celestia Template

A

Andres

Template 6 months ago

Hi,

Can you tell me how to change this title font? I did try already on Helix typography options changing all options to helvetica but still without change This title is in the Celestia template (in Projects menu)

Also is there a way to have the tilte fixed in the options bellow? only shows up whe I do pass the mouse over

See image atached [https://postimg.cc/18BZXTn4]

0
2 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 6 months ago #191548

Hi Andres,

Indeed, font for that element as I saw was defined by template styles. Default style looks like that:

.sp-page-title .sp-page-title-heading {
  color: #fff;
  text-align: center;
  font-family: Cormorant;
  font-size: 136px;
  font-style: normal;
  font-weight: 400; }

    .sp-page-title .sp-page-title-sub-heading {
  color: #fff;
  text-align: center;
  font-family: Nunito;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;}

Create Custom CSS and override font name and etc. In your case probably you need only that line:

.sp-page-title .sp-page-title-sub-heading,
.sp-page-title .sp-page-title-sub-heading {font-family: Helvetica; }
Simple, right
0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 6 months ago #191551

About Info Block in Projects. Use that simple Custom CSS

.eliteestate-projects-list .sppb-addon-wrapper.addon-root-feature {visibility: visible !important;}

By default was hidden before using Mouse Hover.

0