Rosalie font and color changes

  • Unknown's avatar

    Hello – I just switched to the Rosalie theme, and I’d like to change some of the fonts to something not on the offered list, if possible. I’d also like to change the color of the type used on the site title and tag line. Also, I’d like to get rid of (or change the color of) the gold line with the diamond shape that underlines site and post titles. I have the business plan. Thanks!

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

  • Unknown's avatar

    Hi there, generally we can set the two custom fonts at Customize > Fonts, or we can use fonts that would be installed by default on all computers since that is where the browsers normally look for the fonts.

    Since you are on the Business Plan, you could install a Fonts Plugin. You can see a list of what is available here.

    On the site title and tagline, I see you are now using a header image with your information in it.

  • Unknown's avatar

    On the graphic color, add the following to your custom CSS and edit the color codes as desire.

    .entry-title::before {
    	background-color: green;
    }
    
    .entry-title::after {
    	border-color: red;
    }
  • Unknown's avatar

    Thanks for your help. I found it easy to just use a header to get the font I wanted :) I’ll try the color suggestion you gave. Is there an easy way to change the color of the menu background strip and the tab shapes on the sidebar?

  • Unknown's avatar

    For the background color on the navigation, add the following and edit the color code as desired.

    .site-header {
    	background-color: #cc0000;
    }
  • Unknown's avatar

    Thanks! Now I think I may want to change the type on the navigation bar, to make it stand out against a new background color. Maybe the same color scheme for the tab headings on the side bar. Is this possible? Thanks again – I’m a beginner at this :)

  • Unknown's avatar

    To make the navigation stand out a bit more, you could make the text bold and increase the font size with the following CSS which matches the titles in the sidebar widgets..

    .nav-menu li a {
    	font-weight: bold;
    	font-size: 14px;
    }
    .navbar .menu-rtl {
    	width: 100% !important;
    }

    If you wish to also change the color on the widget titles, there are two rules needed for that.

    .widget-title::after {
    	border-color: #cc0000 transparent;
    }
    .widget-title {
    	background-color: #cc0000;
    }

    The first is to change the color of the little down triangle below the block (the first color code) and the second rule is to change the color of the background on the widget title.

  • The topic ‘Rosalie font and color changes’ is closed to new replies.