- Posts: 5
COMMUNITY FORUM
Please note that official support for commercial extensions & templates is provided in the Subscriber Help Desk.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.
Remove H1 Tags Showing 6
- Kenneth Fair
- Topic Author
- Offline
- New Member
Less
More
12 years 9 months ago #45881
by Kenneth Fair
Remove H1 Tags Showing 6 was created by Kenneth Fair
Hello Group
I am trying to remove at least 5 of my H! tags. The slideshow uses h1 for each image. How do I remove the h1 tags. It appears this is not good for SEO
I am trying to remove at least 5 of my H! tags. The slideshow uses h1 for each image. How do I remove the h1 tags. It appears this is not good for SEO
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
12 years 9 months ago #45882
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Remove H1 Tags Showing 6
Please provide me with a link to your slideshow page.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Kenneth Fair
- Topic Author
- Offline
- New Member
Less
More
- Posts: 5
12 years 9 months ago #45883
by Kenneth Fair
Replied by Kenneth Fair on topic Re: Remove H1 Tags Showing 6
Hello
Thank you for the help with this. The slide show is being used at the following link.
www.grimsleylawfirm.com/
I think all the h1's are the Titles of each slide show. If that is true then the titles should be an h2. If I knew where the CSS for that was I can change the size. What I do not know is what make the title an h1 on the page.
Thank you for the help with this. The slide show is being used at the following link.
www.grimsleylawfirm.com/
I think all the h1's are the Titles of each slide show. If that is true then the titles should be an h2. If I knew where the CSS for that was I can change the size. What I do not know is what make the title an h1 on the page.
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
12 years 9 months ago #45884
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Remove H1 Tags Showing 6
Since you use the Movies template, just go to
modules\mod_fpss\tmpl\Movies\default.php file and change the h1 tag at line 28 to h2.
If you just want to change the styling for the titles, post me again in order to tell you what you should modify in Movies css folder.
modules\mod_fpss\tmpl\Movies\default.php file and change the h1 tag at line 28 to h2.
If you just want to change the styling for the titles, post me again in order to tell you what you should modify in Movies css folder.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Kenneth Fair
- Topic Author
- Offline
- New Member
Less
More
- Posts: 5
12 years 9 months ago #45885
by Kenneth Fair
Replied by Kenneth Fair on topic Re: Remove H1 Tags Showing 6
Hello
You are correct! Thank you for letting me know where that file was to change to h2. However, you are also correct that changing to h2 it will lose its style.
Am I correct that I adjust the h2 style on the following
/css/template.css.php
h2 starts around line 48
If I modify that I can make it look like an h1 now.
or if you know an easier way I would love to learn.
Thanks for all you do and your support on this.
You are correct! Thank you for letting me know where that file was to change to h2. However, you are also correct that changing to h2 it will lose its style.
Am I correct that I adjust the h2 style on the following
/css/template.css.php
h2 starts around line 48
If I modify that I can make it look like an h1 now.
or if you know an easier way I would love to learn.
Thanks for all you do and your support on this.
Please Log in or Create an account to join the conversation.
- Katia
- Offline
- Platinum Member
Less
More
- Posts: 4696
12 years 9 months ago #45886
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: Remove H1 Tags Showing 6
The styling of the title is in modules/mod_fpss/tmpl/Movies/css/template.css.php file at line 27
.fpss-template-movies .slidetext h1, .fpss-template-movies .slidetext h1 a {
color: #FFFFFF;
font-family: "Trebuchet MS",Trebuchet,Arial,Verdana,sans-serif;
font-size: 28px;
line-height: 120%;
margin: 0;
}
So you may either keep h1 tag and change the styling or -if you want to use h2 with the same styling-just change what I said before in the default.php file and replace h1 with h2 here:
.fpss-template-movies .slidetext h2, .fpss-template-movies .slidetext h2 a {
color: #FFFFFF;
font-family: "Trebuchet MS",Trebuchet,Arial,Verdana,sans-serif;
font-size: 28px;
line-height: 120%;
margin: 0;
}
.fpss-template-movies .slidetext h1, .fpss-template-movies .slidetext h1 a {
color: #FFFFFF;
font-family: "Trebuchet MS",Trebuchet,Arial,Verdana,sans-serif;
font-size: 28px;
line-height: 120%;
margin: 0;
}
So you may either keep h1 tag and change the styling or -if you want to use h2 with the same styling-just change what I said before in the default.php file and replace h1 with h2 here:
.fpss-template-movies .slidetext h2, .fpss-template-movies .slidetext h2 a {
color: #FFFFFF;
font-family: "Trebuchet MS",Trebuchet,Arial,Verdana,sans-serif;
font-size: 28px;
line-height: 120%;
margin: 0;
}
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.