Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

H4 tags capitalized #742

Closed
AutomationMan808 opened this issue May 6, 2024 · 5 comments
Closed

H4 tags capitalized #742

AutomationMan808 opened this issue May 6, 2024 · 5 comments

Comments

@AutomationMan808
Copy link

Sorry I couldn't find a version number but it was the before this beta version and for now I plan on continuing to use this earlier version. I know most people probably don't even use h4 tags but when I do the text comes out in all capitals. Is there a place in the code where I can fix this?

Rick

@splifingate
Copy link

use h4 tags but when I do the text comes out in all capitals

Are you talking about in the HTMLy Editor?

I get (what I think) are correct headings. Using the following:

# h1
## h2
### h3
#### h4
##### h5
###### h6

I get

h1

h2

h3

h4

h5
h6

I can also--directly--add <hX>Heading</hX> to the document in the Editor, and it produces (what I believe is) correct results:

<h2>H2 heading</h2>
A simple example.  
With a simple result.

Can you provide more context, and example(s)? :)

@danpros
Copy link
Owner

danpros commented May 7, 2024

@splifingate thanks.

@AutomationMan808 you can use inspect feature in your browser (right click) to know which CSS value affect it (link).

Edit: simply remove the line.

@AutomationMan808
Copy link
Author

Yes I can sorry. I do all HTML code so if maybe that's the issue, but if you go here https://busybusinesshosting.com/ and do a control f for COMES WITH PROGRAMS TO AUTOMATE YOUR ON-TOPIC CONTENT AND YOUR MARKETING!

When you do the same thing looking at the source you'll find

Comes with programs to automate your on-topic content and your marketing!

@AutomationMan808
Copy link
Author

@splifingate thanks.

@AutomationMan808 you can use inspect feature in your browser (right click) to know which CSS value affect it (link).

Edit: simply remove the line.

Thank you I'll look at putting some CSS onto the layout since on page takes precedence over CSS file links

@AutomationMan808
Copy link
Author

This fixed it

<style>
body h4 {
text-transform: capitalize !important;
}
</style>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants