Goran Tag line

  • Unknown's avatar

    Hi,
    Any way to add a tag line in the Goran theme so it shows up not only in the browser space but on the actual page?
    Thanks.
    the website is taapsiramchandani.com

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi, give the following a try and see what you think. You can adjust the font size and such as desired.

    .site-title:after {
        content: "For the Love of Anthropology.";
        font-size: 55%;
        display: block;
        position: relative;
        top: -10px;
    }
  • Hi, you can use something like this:

    .site-description {
    display: block;
    }

    You would also want to apply whatever styles you want there, for example:

    .site-description {
    	display: block;
    	color: white;
    	font-size: 1.3em;
    }

    I hope that helps.

  • Unknown's avatar

    Thanks guys. They both worked!
    One other question… My menu headings, can they not be block letters but cursive?

  • Unknown's avatar

    Are you wanting them to be the same font as your widget headings, but perhaps in italic? The reason I’m asking is that there aren’t any cursive fonts that are common to all computer systems, and if it isn’t a web font (like the Typekit fonts) then we have to stick with something that is common to all computers as that is where the browsers will look.

    This sets the navigation to the Tekton Pro font and makes it italic. I’ve added a bit of letter spacing since they were too tight without it and hard to read.

    .main-navigation a {
        font-family: "tekton-pro-1","tekton-pro-2","Noto Sans",sans-serif;
        font-style: italic;
        letter-spacing: 1px;
    }
  • Unknown's avatar

    Hi,
    I wanted the headers to be cursive actually. “Teaching” instead of “TEACHING”. And it seems that even if I type it in cursive in Customize, it automatically gets converted to capital letters.

  • Unknown's avatar

    Are you saying that unless it is a Typekit font, I won’t be able to make the headers cursive?

  • Unknown's avatar

    actually you solved it in another thread!
    Thank you.

  • Unknown's avatar
  • The topic ‘Goran Tag line’ is closed to new replies.