lol fair comment, shares in kleenex should rise with his latest episode.
Announcement
Collapse
No announcement yet.
H1 tags
Collapse
X
-
Originally posted by jontIt looks fine in Firefox but not in IE .. which would suggest you need to try specifically declaring one, some or both of:
line-height:
margin-bottom:
padding-bottom:
against the H1 tag
This can be done on the fly using Firefox but IE is not as developer friendly so needs doing on the desktop. Alas not able to download the file and show the actual fix at the moment - maybe Lee can show this if he is free?
Ok, so where do I put this margin stuff? Here is the CSS I currently have. Sorry, but for needing to be spoon-fed:
}
H1, H2, H4, H5, H6 {
font-family: Verdana,Tahoma,Arial,Helvetica,Times New Roman;
font-size: 12px;
color: #0368B2;
}
Look forward to hearing from you and thanks in advance
Best wishes,
Jan (i-Sounds)
Comment
-
Try:
H1, H2, H4, H5, H6 {
font-family: Verdana,Tahoma,Arial,Helvetica,"Times New Roman";
font-size: 12px;
color: #0368B2;
margin-bottom: 0px;
}
If that doesn't work (it should do), try:
H1, H2, H4, H5, H6 {
font-family: Verdana,Tahoma,Arial,Helvetica,"Times New Roman";
font-size: 12px;
color: #0368B2;
padding: 0px;
}
And if that doesn't work, then this will:
H1, H2, H4, H5, H6 {
font-family: Verdana,Tahoma,Arial,Helvetica,"Times New Roman";
font-size: 12px;
color: #0368B2;
line-height: normal;
}
If that doesn't work, then you unlucky sod. The only reason they will not work, is if the next line (probably a <p> tag) has a top margin set. Let us know if it doesn't solve it, i'm pretty sure it will.
You could of course go for belt and braces and join all 3 up into one style and remove the need to try each one:
H1, H2, H4, H5, H6 {
font-family: Verdana,Tahoma,Arial,Helvetica,"Times New Roman";
font-size: 12px;
color: #0368B2;
line-height: normal;
padding: 0px;
margin-bottom: 0px;
}
If that fails, then it is the tag on the next line causing the problem or doubled up <br/> tags.
Comment
-
Hi Lee,
Thanks, the first one worked well. I don't suppose you know how I can add a BR underneath the h1 tagged bit though? The price is now appearing directly underneath and it looks a bit odd. I have gone from too big a gap to too small a gap. Thanks again for your amazing advice! Sorry to be pain!
Best wishes,
Jan (i-Sounds)
Comment
-
Originally posted by i-soundsHi Lee,
Thanks, the first one worked well. I don't suppose you know how I can add a BR underneath the h1 tagged bit though? The price is now appearing directly underneath and it looks a bit odd. I have gone from too big a gap to too small a gap. Thanks again for your amazing advice! Sorry to be pain!
Best wishes,
Jan (i-Sounds)
Comment
-
Hi Lee,
Thanks. Your solution was "on the money" once again! I adjusted it to 10px and it works a treat. Now I am going to try and find your thread about embedding html into Actinic to try and make use of the other "H" tags.
I can't tell you how much I appreciate yours (and Jonts of course, don't want him getting offended) help with fixing this. If you ever need a glowing reference then let me know. I will be happy to endorse you mate! Thanks again!
Best wishes,
Jan (i-Sounds)
Comment
-
Originally posted by i-soundsHi Lee,
Thanks. Your solution was "on the money" once again! I adjusted it to 10px and it works a treat. Now I am going to try and find your thread about embedding html into Actinic to try and make use of the other "H" tags.
I can't tell you how much I appreciate yours (and Jonts of course, don't want him getting offended) help with fixing this. If you ever need a glowing reference then let me know. I will be happy to endorse you mate! Thanks again!
Best wishes,
Jan (i-Sounds)
Comment
-
Ouch... New Issue with the H1 CSS...
Hi Lee and Jont,
Sorry about this dudes, but the H1 tag issue seems to have thrown up a final issue to be resolved. If you go to our website at www.inspirationsounds.co.uk and at the top left click Sample CDs, then on the next page, select a "MANUFACTURER", then click search, it does an advanced search and finds all of the products from that manufacturer.
However, when you click one of the products in the search results the H1 tag comes out huge and resets the width of the page. It looks pretty bad. Is there a separate CSS file I need to go in to, to set the CSS for the Actinic Search Results??
I have only just noticed this. I am sorry to be a pain. I geneuinely thought it was all resolved! Look forward to hearing from you.
Best wishes,
Jan (i-Sounds)
Comment
Comment