Adding h1 Tags and adjusting pt size

User 2168363 Photo


Registered User
2 posts

I need some help with getting the point size of the font made smaller and can't figure how to do it.

Here's the website: www.echoeelectronics.com

I need to put h1 tags on "Sell Used Cisco Equipment" and the other titles of each text section. I want it to appear in red, same font and pt size. I did this in the html widget:

<div class="Object1134"><span class="textstyle9"><h1>Sell Used Cisco Equipment</h1><br>
</span></div>

It appears in correct font and color but the point size is too big. How do I make it look the same as what I currently have?

I'm not concerned with placement yet. Once I get this corrected I'll delete the original and position this in place.
User 2168363 Photo


Registered User
2 posts

Here's a screen shot
Attachments:
User 126492 Photo


Ambassador
1,524 posts

Here is a simple way of setting the font size for any H tags.

h1 {
font-size: 16px;
color: #000000;
font-weight: normal;
border-bottom: 1px solid #0000FF;
margin: 10px 0 0 0;
}

Remove the border-bottom and margin settings if you don't want them.
------------------------------------------

You can place it below the <style type="text/css"> section and under the /* BODY STYLES */ block.

You should then be able to add the line:-


<h1>Sell Used Cisco Equipmen</h1>


Without using <div class="Object1134"><span class="textstyle9"><h1>Sell Used Cisco Equipment</h1><br>
</span></div>





Jim
---------------------------
User 2073552 Photo


Registered User
1,625 posts

I believe Roger is using VSD.
"An Apple doth not fall far from its tree, yet an orange does."

https://lbwebsitedesign.com - Responsive Web Design & Web Hosting Services.
http://helpsite.sirage.com - HTML5, CSS3 and CC Help Video Blog.
User 271657 Photo


Ambassador
3,816 posts

In VSD, you can put the css and the html in the same HTML Box (with the HTML tool) then put that box where the <h1> needs to be.

Using the samples from above, you would put this in the HTML Box:
(change the color, font size, etc. to whatever you want)

<style type="text/css">
h1 {
font-size: 16px;
color: #000000;
font-weight: normal;
border-bottom: 1px solid #0000FF;
margin: 10px 0 0 0;
}

</style>

<h1>Sell Used Cisco Equipment</h1>


With HTML Boxes, I usually have to preview then go back and use the arrow keys to get them positioned just where I want them ;)

***Don't forget the closing tags or your page will go wonky :P
I love deadlines. I like the whooshing sound they make as they fly by. (Douglas Adams)
https://www.callendales.com
User 373435 Photo


Registered User
114 posts

Hi,

Ok, having issues with the H1 tag. I put the H1 where I wanted it to go, but then it messes up the rest of the paragraph & doesn't move down the rest of the page. I placed the code using html editor. Please see the attached. Any help would be appreciated.



Jim Cantrell wrote:
Here is a simple way of setting the font size for any H tags.

h1 {
font-size: 16px;
color: #000000;
font-weight: normal;
border-bottom: 1px solid #0000FF;
margin: 10px 0 0 0;
}

Remove the border-bottom and margin settings if you don't want them.
------------------------------------------

You can place it below the <style type="text/css"> section and under the /* BODY STYLES */ block.

You should then be able to add the line:-


<h1>Sell Used Cisco Equipmen</h1>


Without using <div class="Object1134"><span class="textstyle9"><h1>Sell Used Cisco Equipment</h1><br>
</span></div>





Attachments:
User 187934 Photo


Senior Advisor
20,190 posts
Online Now

Can you share a link?
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 373435 Photo


Registered User
114 posts

Hi Eric,

www.midwestthermal.com

Also on my last post, I had some screen shots. :)


Eric Rohloff wrote:
Can you share a link?
User 187934 Photo


Senior Advisor
20,190 posts
Online Now

I guess I don't know what the problem is because your h1 tag is taking on the style you assigned.
h1 {
color: #000000;
font-size: 18px;
font-weight: bold;
}
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 373435 Photo


Registered User
114 posts

If you look at the home page, "arc spray equipment (twin wire arc & spray metal). should be a continuation of "process and installation" It should not be on it's own line.

Midwest Thermal Spray (MTS) is a full service supplier of various types of thermal spray equipment, spare parts, various types of thermal spray and welding cored wires and robotic metal finishing equipment. MTS specializes in the sales, service, process and installation of
arc spray equipment (twin wire arc & spray metal)
.


Eric Rohloff wrote:
I guess I don't know what the problem is because your h1 tag is taking on the style you assigned.
h1 {
color: #000000;
font-size: 18px;
font-weight: bold;
}

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.