• commishdeb

    (@commishdeb)


    When I go to make changes and edit pages of our website, I update them but when I check the webpage for the corrections, some line are in different fonts, some are bold and some a different color than what I selected and edited the page to be. I have done pages over several different times to have the pages be different every time and NOT the way I want them. How can I correct this??
    Thanks for any help!! It’s very frustrating!!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Krishna

    (@1nexus)

    Can you link to a page where you have the problem?

    Thread Starter commishdeb

    (@commishdeb)

    Thread Starter commishdeb

    (@commishdeb)

    I change the color of the font and it says that the color is black then on the webpage it shows as tan or light gray..

    Krishna

    (@1nexus)

    Instead of using inline style, try using a div and class
    This is in your style CSS:

    .entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
        color: #B58A00;
        font-weight: bold;
        margin-bottom: 10px;
    }

    Thread Starter commishdeb

    (@commishdeb)

    Sorry I don’t mean to sound stupid but I don’t know how to do that.. I was just adding content on my page. Could you tell me how I do that??
    Thank you!

    Krishna

    (@1nexus)

    For example:
    Add to your CSS

    .entry-content-color
    {
        color: green; /* your color here */
        font-weight: bold;
        margin-bottom: 10px;
    }

    and Use html like:
    <h1 class="entry-content-color">Your heading here</h1>

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Problem with editing’ is closed to new replies.