somavision
asked 9 years ago

Where, in the CSS, can I reduce the size and color of the site title font and tagline font?

1 Answers
DominicStaff
answered 9 years ago

Hi,

To change the font size, color for the Site Title & Tagline, you can go to the wp-content > themes > dw-timeline > assets > css > main.css file.
Find the line 5741:

.banner .page-title {
    position: relative;
    font-family: 'Bitter', serif;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 255px;
    padding: 13px 20px 15px;
    font-size: 60px;
    line-height: 60px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 1
}
.banner .page-title a {
    color: #fff;
    text-decoration: none
} 

Tagline: line 5758.

.banner .page-description {
    font-family: 'Bitter', serif;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 100;
    margin: 0;
    z-index: 1;
    position: relative;
    opacity: .5;
    filter: alpha(opacity=50)
}

Hope this helps !

SomaVision
replied 9 years ago

Thx! Rock on!

Powered by DW Question & Answer Pro