woodson1975
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing background color of textOnce you’ve set up a style.css file in your child theme folder, create a class like this:
.hentry { background: none; }
(if you find it doesn’t pick up the css, try putting
!important'
after thenone
(with a space after the ??Forum: Themes and Templates
In reply to: [ComicPress] Edit Copyright with Child Theme for ComicpressSorry, I’ve not used Pastebin before so I hope this works. I did a test on a footer theme of mine. Basically, you comment out the existing footer markup and put your new stuff in above.
Forum: Themes and Templates
In reply to: [Four years] Change Footer TextIs your site hosted by WordPress.com – or do you host it yourself?
Forum: Themes and Templates
In reply to: [ComicPress] Edit Copyright with Child Theme for Comicpress…or, if your theme has a copyright.php file, do the above steps with that file
Forum: Themes and Templates
In reply to: [ComicPress] Edit Copyright with Child Theme for ComicpressShould be easy enough. You should make a child theme (so any updates to the theme don’t overwrite your changes). Copy the footer.php file into your new child theme folder and then edit from there.
Forum: Fixing WordPress
In reply to: Changing background color of textHi…To change it, it’s best to use the child theme method (Child Themes).
Once the child theme has been created, create a class called
.hentry
and give it a property ofbackground: none;
Hope this helps.
Forum: Themes and Templates
In reply to: [Four years] Change Footer TextNot sure you’re allowed to do this:
“11. Attribution. Automattic reserves the right to display attribution links such as ‘Blog at WordPress.com,’ theme author, and font attribution in your blog footer or toolbar. Footer credits and the WordPress.com toolbar may not be altered or removed regardless of upgrades purchased.”
Forum: Themes and Templates
In reply to: [ComicPress] Edit Copyright with Child Theme for ComicpressNot sure you are allowed to do this:
11. “Attribution. Automattic reserves the right to display attribution links such as ‘Blog at WordPress.com,’ theme author, and font attribution in your blog footer or toolbar. Footer credits and the WordPress.com toolbar may not be altered or removed regardless of upgrades purchased.”
Forum: Themes and Templates
In reply to: CSS change to effect specific page templateHi…what’s the url of your site? And what theme are you using?
@ Theme Author – oops sorry, didn’t see that you had posted a (superior!) response in the mean time
I don’t see a “Social bar” (by social bar I’m guessing you mean links to Facebook, Twitter etc?) on this page – what do you mean?
Re. changing the quotation background – in the style.css file, look for a commented out section called “blockquotes group” – under the first blockquote section of css, you can change the
background-color
of the quotation area and remove/change the colour of theborder-left
to match other changesForum: Themes and Templates
In reply to: [Customizr] Simple Snippet of HTML“1em is equal to the current font size. 2em means 2 times the size of the current font. E.g., if an element is displayed with a font of 12 pt, then ‘2em’ is 24 pt. The ’em’ is a very useful unit in CSS, since it can adapt automatically to the font that the reader uses” (www.w3schools.com)
Forum: Themes and Templates
In reply to: [Customizr] Simple Snippet of HTMLAs you say, you can fiddle with it. Using Em instead of Px means that if you later choose to increase the font size of the text, it won’t, essentially, break!
Forum: Everything else WordPress
In reply to: How to stop auto play in embedded videoOn second thoughts, autoplay/start only works with Youtube links. Maybe try instead putting the video inside video tags like this:
<video src="https://thepinspiredmama.com/wp-content/uploads/2014/03/IMG_07421.mov" controls></video>
This should work on most modern browsers and won’t autoplayForum: Everything else WordPress
In reply to: How to stop auto play in embedded videoTry adding autostart=”0″ or autoplay=”0″ within the iframe tags