MrNickSheppard
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Expound] Website possible with this theme?Up to a point. WP is a powerful CMS, easy to learn, less so to master. Like chess. Those look like bespoke websites so you might struggle to get something so slick especially if you don’t code.
Forum: Themes and Templates
In reply to: [Expound] Website possible with this theme?You can add multiple pages with most WP themes…and set a static front page rather than post page so yes I would say so, depending what you’re after
Forum: Themes and Templates
In reply to: [Spun] Circle thumbnails in colour by default?Just amateur! Added the @import later as was trying to include the code to modify fonts to calligraffiti as per this thread you helped me with a few weeks back https://www.ads-software.com/support/topic/modifying-h2-in-twentyten?replies=23
Probably need to do some homework on child themes!
…so I should use @import then I can just add CSS rules to the child theme that will take precedence over the equivalent rules in the parent theme?
Forum: Themes and Templates
In reply to: [Spun] Circle thumbnails in colour by default?Oh…Might be version specific…at work now and works on 23.0.1…so just that still black & white rather than colour by default – in FireFox only; custom CSS works for other browsers.
Forum: Themes and Templates
In reply to: [Spun] Circle thumbnails in colour by default?Note that whiteout issue also on spun demo in FF…could live with that but custom css also doesn’t appear to work in FF
Forum: Themes and Templates
In reply to: [Spun] Circle thumbnails in colour by default?Again works in Chrome and IE but not FF…
Forum: Themes and Templates
In reply to: [Spun] Circle thumbnails in colour by default?Not quite right though…circle displays but also kinda disappears for fraction of a second on mouseover before colour. Also can’t get your custom CSS hack to work.
Many thanks for your help with this. Much appreciated!
Forum: Themes and Templates
In reply to: [Spun] Circle thumbnails in colour by default?Yep that’s fixed it thanks
Forum: Themes and Templates
In reply to: [Spun] Circle thumbnails in colour by default?Ah just noticed FireFox thread! https://www.ads-software.com/support/topic/problems-viewing-in-firefox?replies=6
Forum: Themes and Templates
In reply to: [Spun] Circle thumbnails in colour by default?Actually works as expected in Chrome on my nexus
Forum: Themes and Templates
In reply to: [Spun] Circle thumbnails in colour by default?Thanks Andrew I’ll have a crack…actually just been following your instructions for text inside circles at https://www.ads-software.com/support/topic/put-test-inside-images-on-home-page but something has gone awry (text shows but no circle til mouseover – only tried FireFox). Would you mind having a quick look and seeing if you can spot the problem?
Not sure if I should start a new thread for this?
Forum: Themes and Templates
In reply to: Modifying h2 in TwentyTenI do? From parent CSS? Tried adding font-weight: normal
Forum: Themes and Templates
In reply to: Modifying h2 in TwentyTenOne last thing! Any idea why the font I’m trying to emulate here https://cardtherapybyem.blogspot.co.uk appears finer than the one I’ve implemented?
Many thanks for your help, much appreciated.
Forum: Themes and Templates
In reply to: Modifying h2 in TwentyTenYay it works thanks!
Forum: Themes and Templates
In reply to: Modifying h2 in TwentyTenThanks. Getting closer I think…however, assuming I’ve done everything else correctly and though I just about understand the principles of CSS, I’m not sure how to style the elements I’m after…which are
<h1 id="site-title">
and<h2 class="entry-title">
I tried this which does seem to have some effect on the font though not the desired one:
/* Theme Name: Twenty Ten Child Theme URI: https://www.ads-software.com/extend/themes/twentyten Description: Child theme for the Twenty Ten theme Author: Nick Sheppard Author URI: https://cardtherapy.co.uk Template: twentyten Version: 0.1.0 */ @import url("../twentyten/style.css"); @font-face { font-family: '..fonts/calligraffitiregular'; src: url('..fonts/calligraffiti-webfont.eot'); src: url('..fonts/calligraffiti-webfont.eot?#iefix') format('embedded-opentype'), url('..fonts/calligraffiti-webfont.woff') format('woff'), url('..fonts/calligraffiti-webfont.ttf') format('truetype'), url('..fonts/calligraffiti-webfont.svg#calligraffitiregular') format('svg'); font-weight: normal; font-style: normal; } h1#site-title, h2.entry-title { font-family: 'calligraffitiregular'; }