RSARA
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Photo Album Plus] Warning after the updateAfter updating to version 5.3.0 I have a similar problem to “That Guy From High Rolls”, but only with every ALTERNATE album.
I have five albums on the website. In every alternate album the thumbnails display OK but the full size image and slideshow will not display.
THE REGIMENT 2010 TO 2013 ——— works OK
ANZAC DAY 2013 ———————— does NOT work
THE RSAR ASSOCIATION ————– works OK
RSAR IN EARLIER DAYS —————– does NOT work
THEORIGINAL BATTALIONS 1914-1953 — works OKThe gallery is at http://rsara.asn.au/picture-gallery/
By the way, I have updated to WordPress 3.9 and I don’t know if this has any bearing on the problem.
Forum: Themes and Templates
In reply to: [Twenty Ten] Change text color in Twenty Ten ThemeI’m sure there are other novice website developers like me who spent a lot of time (without much success) using IE9 Developer Tools(F12) to identify the code to change the color of text in a website based on a TWENTYTEN CHILD THEME.
I strongly ecommend you follow the advice esmi “Theme Diva & Forum Moderator” in this forum and use Firefox with Firebug add-on.
Personally, I have nothing against IE9 as a browser, and I still use it as a browser, but if you download and install Firefox, with Firebug add-on, you will save yourself a lot of trouble when trying to add code to a child theme.
The “Click an element on the page to inspect” facility in Firebug makes it so much easier.
Initially, being novice website developer, I thought the colors could be changed by one or two lines of code. Wrong! It turned out there were a lot of different areas where I had to change the color (e.g. site-title, site-description, links, widgets, page-title, page text, styles h1 …. h6, menu bar).
Firebug made it relatively easy to identify the code that had to be added to the Child them. It was nowhere near as daunting as I thought it would be.
Here is the complete code for my Twentyten child theme that did the job on the website at .
/* --------- Theme Name: Twentyten-Child Description: Child theme for the twentyten theme Author: XXXXXXXXXX Template: twentyten Version: XXX ------------ */ @import url("../twentyten/style.css"); /* ---------- Change site title color from black hex #000 to to maroon hex #800000 -----------------------------------------------*/ #site-title a { color: #800000; } /* ---------- site-description (info for members etc . . . .) add color #80000 ---------------------------------- */ #site-description { color: #800000; } /* -------- page-title -- change color from black #00000 to maroon #800000 -- line 575 ---------------- ------------------------------------------*/ #content .entry-title { color: #800000; } /* ------ Page text color (Content input textarea - line 475) -- color changed from grey #000000 to maroon #800000 ---------- ------------------------------------------------ */ #content, #content input, #content textarea { color: #800000; } /* -------- Page text color for headings h1 h2 h3 etc - lines 506-519 -- color changed from #000 to #800000 ---------- ------------------------------------------------- */ #content dt, #content th { color: #800000; } #content h1, #content h2, #content h3, #content h4, #content h5, #content h6 { color: #800000; } /* --------- change widget title from black to grey (#ebebeb) on green background (#7f8000) --------- --------------------------------------------------------*/ .widget-title { font-family: Georgia, "Bitstream Charter", serif; color: #ebebeb; font-weight: normal; background: #7f8000; } /* -------- change link color from blue to maroon #80000 and change visited link from blue to light maroon #cd0000 ---------- -----------------------------------------------------*/ a:link { color: #800000; } a:visited { color: #cd0000; } /* -------- change menu bar color from black (#000000) to green (#7f8000) ---------- -------------------------------------------------------*/ #access { background: none repeat scroll 0 0 #7f8000;Forum: Themes and Templates
In reply to: HTML or CSS editing in Child ThemeI’m sure there are other novice website developers like me who wasted time using IE9 Developer Tools(F12) to identify the code to change the color of text in a website based on a Twentyten child theme.
I strongly ecommend you follow the advice in some of the posts elsewhere in this forum and use Firefox with Firebug add-on.
Personally, I have nothing against IE9 as a browser, and I still use it as a browser, but if you download and install Firefox, with Firebug add-on, you will save yourself a lot of trouble when trying to add code to a child theme.
The “Click an element on the page to inspect” facility in Firebug makes it so much easier.
Initially, being novice website developer, I thought the colors could be changed by one or two lines of code. Wrong! It turned out there were a lot of different areas where I had to change the color (site-title, site-description, links, widgets, page-title, page text, styles h1 …. h6, menu bar).
Firebug made it relatively easy to identify the code that had to be added to the Child them. It was nowhere near as daunting as I thought it would be.
Here is the coplete code for my Twentyten child theme that did the job.
/* --------- Theme Name: Twentyten-Child Description: Child theme for the twentyten theme Author: XXXXXXXXXX Template: twentyten Version: XXX ------------ */ @import url("../twentyten/style.css"); /* ---------- Change site title color from black hex #000 to to maroon hex #800000 -----------------------------------------------*/ #site-title a { color: #800000; } /* ---------- site-description (info for members etc . . . .) add color #80000 ---------------------------------- */ #site-description { color: #800000; } /* -------- page-title -- change color from black #00000 to maroon #800000 -- line 575 ---------------- ------------------------------------------*/ #content .entry-title { color: #800000; } /* ------ Page text color (Content input textarea - line 475) -- color changed from grey #000000 to maroon #800000 ---------- ------------------------------------------------ */ #content, #content input, #content textarea { color: #800000; } /* -------- Page text color for headings h1 h2 h3 etc - lines 506-519 -- color changed from #000 to #800000 ---------- ------------------------------------------------- */ #content dt, #content th { color: #800000; } #content h1, #content h2, #content h3, #content h4, #content h5, #content h6 { color: #800000; } /* --------- change widget title from black to grey (#ebebeb) on green background (#7f8000) --------- --------------------------------------------------------*/ .widget-title { font-family: Georgia, "Bitstream Charter", serif; color: #ebebeb; font-weight: normal; background: #7f8000; } /* -------- change link color from blue to maroon #80000 and change visited link from blue to light maroon #cd0000 ---------- -----------------------------------------------------*/ a:link { color: #800000; } a:visited { color: #cd0000; } /* -------- change menu bar color from black (#000000) to green (#7f8000) ---------- -------------------------------------------------------*/ #access { background: none repeat scroll 0 0 #7f8000;Forum: Themes and Templates
In reply to: HTML or CSS editing in Child ThemeThanks for your help paulwpxp.