• Resolved maadchinguun

    (@maadchinguun)


    I am using Presso theme. And i cant fix the uppercase problem. I deleted few #freetransform uppercase thing from Theme(.css) but it’s still same.
    Thank you

Viewing 15 replies - 1 through 15 (of 17 total)
  • If you could give a little more information that would be great. A link to your site, more description on what you want to change etc.

    Thread Starter maadchinguun

    (@maadchinguun)

    Sorry. https://www.maad.mn here it is. All titles are uppercase and i want to capitalize it.

    If you just mean the titles on the homepage within each of the little boxes, then you can use this code. Put this either in your “custom CSS” area or at the bottom of your style.css file if you are using a child theme:

    .post-box-inner .title {
      text-transform: none !important;
    }
    Thread Starter maadchinguun

    (@maadchinguun)

    Sorry i mean post titles and slider title

    Ok, so you mean you want to make the slider titles uppercase, and posts titles uppercase within the actual post itself? LIKE THIS?

    If that is what you mean, then add the CSS below as previously explained in either custom CSS area or at the bottom of your style.css file if using a child theme:

    .slides .title {
      text-transform: uppercase;
    }
    
    .post-title {
      text-transform: uppercase;
    }
    Thread Starter maadchinguun

    (@maadchinguun)

    Appearance -> Theme Options -> Custom CSS is it right?

    but I mean i want to remove all uppercase. When i post “Hello World” it is showing as “HELLO WORLD”.

    Sorry for the trouble, thanks for helping me

    Right, ignore my last piece then as i thought you WANTED IT ALL LIKE THIS ??

    When you actualy Want it all like this? If so, add it to your custom CSS area as you said above. Theme Options >> Custom CSS

    .post-box-inner .title {
      text-transform: none !important;
    }

    If you let us know if that is what you want once you have added it and saved then we can help with any other changes you need

    Thread Starter maadchinguun

    (@maadchinguun)

    It worked thank you very much!

    btw what code for the Catagory titles

    I cant see as your site is now in maintenance mode

    Thread Starter maadchinguun

    (@maadchinguun)

    Oh sorry. Now its not in maintenance mode.

    In the post section catagories in the little boxes.

    And where can i resize font of slider title, its lil bit big tho

    Thank you

    Ok, to change the categories in the little boxes, use this CSS:

    .post-categories .label {
      text-transform: none !important;
    }

    And then to change the size of the slider title, you simply add this CSS into your custom area:

    .slides .title {
      font-size: 36px;
    }
    Thread Starter maadchinguun

    (@maadchinguun)

    Thank you again.
    How can i hide author name?

    I have no idea what you have done, but nothing on your site is showing now…

    Thread Starter maadchinguun

    (@maadchinguun)

    Oh… Now there are posts..

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘Can't fix uppercase problem.’ is closed to new replies.