Site logo

Archived topic

Styling Headlines CSS - tool?

3 replies · Started by Rolf on December 6, 2018

Viewing posts 1–4 of 4

Sorry, this is not GP related!
Can you recommend a tool for playing around (browser-based) with designing a headline with CSS?

my goal would be to create something like this: http://take.ms/F1xGN

Is that even possible without using images?

thanks for tips!
-rolf

Hi there,

can't really think of a tool that would let you do that - and needs some HTML and CSS knowledge. Try this for your markup:

<h2 class="super-headline">Headline<br><span class="sm-text">small </span>Closing</h2>

The <br> tag forces a line break. the <span> allows that text to remain inline but be styled differently. Then add this CSS:

h2.super-headline {
    text-transform: uppercase;
    font-weight: 900;
}
.sm-text {
    vertical-align: super;
    font-size: 0.6em;
    margin-right: 0.2em;
    border-bottom: 10px solid #f00;    
}

Then you just need to tweak the settings.

this is perfect support, works!
thanks!

Awesome. Glad to be of help :)

This archived topic is closed to new replies.