• Resolved pattonyu

    (@pattonyu)


    Is there any way to style h2 heading storytitle in Mono theme? I can’t find a way ??

    h2 {
    	font-size: 1.6em;
    	color: #B6B6B7;
    }

    styles only % Comments

Viewing 6 replies - 1 through 6 (of 6 total)
  • styles only % Comments? huh?

    we need a link to the site so we can do a little looky looky

    Thread Starter pattonyu

    (@pattonyu)

    Sorry, here is link:
    https://www.rikovmlin.net

    It is non-english website, under construction. I’m trying to modify Mono theme in local (wamp server), but online is default Mono theme.

    ok, try adding this to your stylesheet

    h2.storytitle {
    
    	font-size: 1.8em;
    
    	color: #B6B6B7;
    
    }

    but change font size and color however you want, add whatever you want.

    Thread Starter pattonyu

    (@pattonyu)

    Thank You! Problem is partly resolved: Your code affect only font size, not font color. Strange?!

    Thread Starter pattonyu

    (@pattonyu)

    Thanx!
    Problem resolved:
    I have to apply your code and to add:

    .storytitle a {
    	color: #cc9900;
    }

    to control color.

    That’s because your title is a link. Remove the link and you’ll see the difference. To style the title contained within the h2 tag when it is a link add, (in addition to what boober gave you)

    h2.storytitle a:link{
      color: #000000;
      }

    h2.storytitle a:hover{
    color: #000000;
    }`

    Of course adjust the colours to whatever you want.

    Edit: I see you figured it out. ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Can’t style h2 storytitle in Mono theme’ is closed to new replies.