I added the Faq for my site however the background color failed to expand with the text, Anyone have an idea how to correct this issue? I have a paint copy attached to my question here, but if you need more visual let me know/
I added the Faq for my site however the background color failed to expand with the text, Anyone have an idea how to correct this issue? I have a paint copy attached to my question here, but if you need more visual let me know/ |
It looks like you may have messed-up the HTML for the language key, so the boxContent <div> is ending prematurely. Check to make sure there aren't any stray <div>'s between the FAQ items.
Edit: Moved.
Edit 2: Oh, and you might want to consider axing the snow effect. It's a bit annoying, as it covers content. BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
go to http://www.lonelydate.com/faq.php and see the minor issue that I'm working on for the template |
Like Nathan said you have an extra <div>, and a not closed div Look at; Can Members Place Contact Information in Profile you have </div |
Also, looks like you have a few missing divs, you should look over the entire thing |
Specifically, you have an extra </div> at the end of a line here: <div class="faq_cont"> <div class="faq_header"> What are Tags?</div> <div class="faq_snippet">Tags are single descriptive words that are then used by the system to find you. These words are turned into links so people can click them to find you.</div> </div> </div> Which is right where the trouble starts. In addition, you have an extra </div> at the end here: <div class="faq_cont"> <div class="faq_header"> I want to delete my account, how do I?</div> <div class="faq_snippet">You can delete your account at anytime by logging into your account and clicking "My Settings" look for "Unregister""</div> </div> </div> and here: <div class="faq_cont"> <div class="faq_header"> How can I make a photo primary?</div> <div class="faq_snippet">Go into "my profile" from top right link after you login, click on large picture to go to "My Photos" then click on a little picture at bottom and check make primary.</div> </div> </div> and here: <div class="faq_cont"> <div class="faq_header"> I want to suspend my account, how do I?</div> <div class="faq_snippet">You can suspend your account at anytime by contacting us or logging in and in the first page you will see a link to "suspend" account.</div> </div> </div> Remove the struckthrough </div>s and see if that helps, if not you'll need to run through the entire language file to make sure that there aren't any other formatting errors.
|
PROBLEM SOLVED, FOUND THE ISSUE |
Just curious, was it the extra </div> tags that was the issue, or something else? |