Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #189851

    How would I go about removing a Horizontal Rule (HR) from a default template. For some reason an HR is jumping up from below my main picture and pushing into my header quote and forcing it off center. See here… http://www.njfamilylaw.net/divorce-attorneys-nj/

    Also, Is there anyway to interact directly with the code being generated? Or are we limited to shortcodes, functions.php, and style.css in the child theme?

    One more…, WordPress seems to display content in the order it was added to the database. Is there any way to alter this short of deleting the content and adding it again in priority? For example we have sidebar links that place the most junior lawyer at the top because they were the last entry added. Not good!

    Thanks in advance.

    #190296

    Hey!

    Try adding this to the Quick CSS:

    hr, .hr {display: none !important; }
    

    Regards,
    Josue

    #190315

    Josue:

    That was one of the first things we tried. No luck, unfortunately. The template elements seemed to be set in stone, lol.

    #190320

    Hi!

    Could you post a screenshot indicating what exactly you want to remove?

    Regards,
    Josue

    #190348

    Hi!

    If you mean the special heading, each of the choices has its own style. The one you have set on the link above has a line on either side of it which can be removed with:

    .special-heading-border {
    display: none;
    }

    Regards,
    Devin

    #190637

    Your a life safer, Devin! That got it!
    How would I center that text? The following doesn’t seem to work?

    .av-special-heading-h3 h3{
    font-size:25px;
    font-family:’Sorts Mill Goudy’;
    font-style:italic;
    color:#a7652b;
    text-align:center;
    font-weight:200;
    word-spacing:2px;
    }

    #190674

    Devin figured it out with Firebug! Thanks for all the help.

    body .av-special-heading h3 {
    float: none;
    margin:0 auto;
    }

    http://stackoverflow.com/questions/15330689/why-is-there-no-float-center-in-css

    • This reply was modified 10 years, 11 months ago by Bru141.
    #190675

    ..And thank you Josue as well for your fast responses!

    #190686

    Glad we could help :)

    Regards,
    Josue

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Editing a Template’ is closed to new replies.