chicdesigngeek
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] faviconUsually, favicons are in “.ico” format and named favicon.ico. I have made my own by opening my image in Photoshop, resized it to 16px by 16px and then “Save for Web” as a PNG-8 and saved it. Then I renamed it to favicon.ico instead of favicon.png.
You might also want to check where your site is trying to look for the favicon.ico file. Mine is located under “wp-content > themes > [mytheme]”.
Hope this helps. Cheers!
Forum: Themes and Templates
In reply to: How to change the color of blognameHi Satimis,
If you’re talking about the “Hymn” title up at the top, above “Presented by Christ Church Hong Kong”, then you want to add the following to your custom stylesheet:
#site-title a { color: red; }
That should work. Let me know if it’s another “Hymn” on your site that your’e trying to change.
Cheers!Forum: Themes and Templates
In reply to: How to change the color of blognameWithout seeing your site, I think it should work just fine under your child theme.
If it doesn’t work, you can always try throwing an important flag after it so that it will override all other declarations for that id.
#blogname { color: red !important; }
Hope that helps!
It looks like this css code is making the green background disappear:
div#access { background-color: transparent; }
Once you remove that, it’s able to keep the green background when in mobile view. Hope this helps!
Forum: Themes and Templates
In reply to: [Customizr] Changing Font ColoutUnder Appearance > Themes > Customize, click on Custom CSS and add this code:
body { color: [add your color here]; }
That should do it. Cheers!
Forum: Themes and Templates
In reply to: [Montezuma] How to make the categories list one per line ?Can you post a link to your site so I can take a look?
Forum: Themes and Templates
In reply to: Picture breaking post box/border – twenty twelve child themeSimply add this css to your custom stylesheet if you have one:
#content .post { overflow: hidden; }
Otherwise, you can add it via custom css plugin.
Cheers!
Forum: Themes and Templates
In reply to: How to change the color of blognameHi!
You should be able to change the text color of the field with some CSS. Add this to your stylesheet:
#blogname { color: red; }
Hope this helps.