Gap In Content Header

Jose Magsino

New Member
Messages
53
Reaction score
0
Points
0
Try removing the <p>...</p> tags on the images that contains the text About, Portfolio, Services and Contact..

Example:
from :

Code:
<div id="content">
<div id="phpinclude">
<p><img src="about-hd.png" alt="" height="37" width="231"><br>
</p>


to:

Code:
<div id="content">
<div id="phpinclude">
<img src="about-hd.png" alt="" height="37" width="231">
<p class="style2">JC-Studios aims to p.....
</p>


I believe this is the reason why there is no gap in the Testimonial page, because you havent included the <p></p> tag.

HTH
 
Last edited:

Jose Magsino

New Member
Messages
53
Reaction score
0
Points
0
I observed that you've remove that images with text about-hd.png. Try adding that again :)

But i think the suggestion minus margin-top really works if its -15 , the one you've used or -10,-11..or whatever as long as less than -9.. I was suggesting earlier the removal of <p></p>..But its up to you :)

Cheers
 
Last edited:
Top