Need help fixing a template

marc3777

Registered Member
Joined
Oct 13, 2010
Messages
51
Reaction score
7
Hello,

I bought a review theme (html) and it has some sort of weird coding I cant figure out. I think this is literally a couple minute job for somebody that knows what they're doing, but you decide.

In short here's the problem:

When you hit enter to start a new paragraph, all the text reverts to different colors and sizes. Or if you try to create a bullet list same thing happens. Its just a nightmare to write content.

Shoot me a pm if you're interested in a quick little job.

Thank you
 
Hm, try this :

Code:
<br>These codes for a paragraph.</br>
<li> When you have a new line </li>

It may help.
 
you could try this to start a new line:
Code:
<p>Text</p>
and this for bullets:
Code:
<ul>
                    <li>Text</li>
                    <li>Text</li>
                    <li>Text</li>
                </ul>
 
Back
Top