• I’m having trouble changing the fonts style within the Atlas Theme.

    Steps I used to change my font:

    1. Converted my Times New Roman font to Times_New_Roman.font file
    2. Uploaded the font using the upload function of Atlas Theme.
    3. Selected it in the Font tab
    4. Saved changes

    I refreshed my tab on my site and it’s still showing something of an Arial font.

    Please help. The site location is https://www.devilsden.co

    Thanks

Viewing 1 replies (of 1 total)
  • The fonts are selected in the CSS code — so just installing Times New Roman does not change what the browser displays. The overall font is selected in this CSS declaration – so change the font and see if that changes everything you want changed. Fonts can be defined in more than one place (for specific sections on the page) so you might have to look for other fonts in the CSS.

    body {
        background: none repeat scroll 0 0 #000000;
        color: #CCCCCC;
        font-family: Arial,"helvetica neue",Helvetica,Verdana,sans-serif;
        font-size: 13px;
        margin: 0;
        padding: 0;
        text-shadow: 0 1px 1px #000000;
    }

    You should just put the Times_New_Roman in before the Arial — keeping the fonts that are there. That way if someone’s computer does not have the first font, the browser will use the next one, and so on.

Viewing 1 replies (of 1 total)
  • The topic ‘Atlas Theme Nav Bar Problem’ is closed to new replies.