• Hi,
    I’m using arras theme, with the newest WordPress. The website I’m working on is all in caps. I didn’t tell it to be like that, so I don’t know where to change things.
    I’ve checked my Css and when I post the output is all in caps.

    https://www.johngpelletier.ca

Viewing 6 replies - 1 through 6 (of 6 total)
  • Moderator cubecolour

    (@numeeja)

    All of your content seems to be within a div with the logo class

    this is made uppercase by
    .logo {text-transform: uppercase;}
    in your stylesheet

    Actually that div doesn’t seem to actually be closed at all, so that will need to be fixed:
    https://validator.w3.org/check?uri=http%3A%2F%2Fjohngpelletier.ca%2F

    Thread Starter m.studio

    (@mstudio-1)

    Do I delete that?

    .logo {text-transform: uppercase;}

    Is that in my style.css or style.php?

    Thank you so much for getting back to me.
    I’ve been searching online for hours, and I’m really confused.

    Moderator cubecolour

    (@numeeja)

    That might stick a band-aid on the problem and give the appearance of fixing it, but you really need to fix the html errors in your theme instead. The simplest way to do that is to replace the theme files with a fresh copy of the original theme files and only edit them once you understand html a bit better so you don’t get incorrectly nested divs.

    Thread Starter m.studio

    (@mstudio-1)

    Hi!
    I put the old website up, and tried to work on the website in it’s old folder in ftp (wordpress), but it didn’t let me go to johngpelletier.ca/wordpress.
    I then set up a new website johngpelletier.ca/new
    I removed all php in the footer, comments bar etc.. and all of a sudden the website was all in caps lock again.
    I put all the php code back in the footer, and comments, but I’m totally confused.
    Wordpress and arras are up to date and other sites i’ve built such as https://www.hardlariconsulting.com have had no issued like this.

    If I go in and remove the code .logo {text-transform: uppercase;}
    will that make things better? I’ve started on this website from scratch again.
    Thank you for your help by the way. You are a genius.

    Moderator cubecolour

    (@numeeja)

    When you’re removing html markup, it appears you are removing required elements

    see:
    https://validator.w3.org/check?uri=johngpelletier.ca%2Fnew&charset=%28detect+automatically%29&doctype=Inline&group=0&user-agent=W3C_Validator%2F1.2

    Make sure that whenever you remove a </div> tag it is only when you are removing the corresponding <div> tag. Use the W3C validator before & after editing to check if you are not sure.

    Thread Starter m.studio

    (@mstudio-1)

    I need to take away the comments section, the footer, and the search bar that was in the website. I did this by taking out the PHP coding all together for those sections.
    Do you think that is what’s compromising the font to go into caps?
    If so do you know another way to removing the comments section and footer with out screwing with everything else?
    Thank you! You are very helpful by the way.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘website font is all in caps lock: Would like to change’ is closed to new replies.