-
AuthorPosts
-
November 17, 2013 at 10:27 pm #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.
November 18, 2013 at 9:02 pm #190296Hey!
Try adding this to the Quick CSS:
hr, .hr {display: none !important; }
Regards,
JosueNovember 18, 2013 at 9:53 pm #190315Josue:
That was one of the first things we tried. No luck, unfortunately. The template elements seemed to be set in stone, lol.
November 18, 2013 at 10:10 pm #190320Hi!
Could you post a screenshot indicating what exactly you want to remove?
Regards,
JosueNovember 18, 2013 at 11:56 pm #190348Hi!
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,
DevinNovember 19, 2013 at 4:31 pm #190637Your 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;
}November 19, 2013 at 6:10 pm #190674Devin 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.
November 19, 2013 at 6:15 pm #190675..And thank you Josue as well for your fast responses!
November 19, 2013 at 6:50 pm #190686Glad we could help :)
Regards,
Josue -
AuthorPosts
- The topic ‘Editing a Template’ is closed to new replies.