drstir
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Images on sidebar headingsMany thanks, Moshu. I didn’t realise it was that simple!
Can I just check something with you? I experimented with the code to remove the headings – changing the parameters from
<?php wp_list_categories(‘show_count=1&title_li=<h2>Categories</h2>’); ?> to
<?php wp_list_categories(‘show_count=1&title_li= ‘ ); ?>
Is this the correct way to do it?
Thanks again,
DavidForum: Fixing WordPress
In reply to: Save my css sanity!Bizarre!!! I look at it in the fresh light of a new day and the revised css is now taking effect. I’ve just changed the rule back to how it should look. And it’s immediately changed on the page. So why didn’t it do this yesterday?
I did wonder whether it had something to do with the cache. I work on a Mac. The odd thing is that the problem was the same on both Safari and Firefox. Which made me think it was something to do with the site – rather than the browser.
I’m not sure how to ‘force-refresh’ these browsers on a Mac. I’ll have to delve a little deeper into that one.
Many thanks to everyone who responded.
Forum: Fixing WordPress
In reply to: Save my css sanity!I tried to figure out the problem by changing a simple hr class. The horizontal rule under each header was specified like this:
hr {
border-top: 1px dotted #CCCCCC;
height: 1px;
text-align: left;
border-right: 0 none;
border-bottom: 0 none;
border-left: 0 none;
}I changed this from a grey dotted rule to a blue solid rule:
hr {
border-top: 1px solid #0033FF;
height: 1px;
text-align: left;
border-right: 0 none;
border-bottom: 0 none;
border-left: 0 none;
}But the page still renders the grey dotted rule.
If you look at the css: https://saveourspire.org.uk/wp-content/themes/simple-la-bob-10/style.css it shows the old hr commented out, and the live one – specifying the solid blue rule – right below it.
I know I’m missing something really stupid, but I can’t see it. I’ve had enough for the day. So if you can spot where I’m going wrong you’d earn my undying gratitude. G’night!
Forum: Fixing WordPress
In reply to: Configuring search widgetThat did the trick :o)
Many thanks.
Forum: Fixing WordPress
In reply to: Configuring search widgetMany thanks for the response. Here’s the html from the search widget:
<li id=”search” class=”widget widget_search”><form id=”searchform”…
I tried your suggestion as follows, but didn’t have much success.
#searchformID br {
display: none;
}I’m not much of an expert on css (as you can probably tell :o) – so any more suggestions would be much appreciated.
Thanks.