robs-1
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Plugin: Sociable] dosn’t show the icon’sI can see the icons on the site – are you still having this issue?
Forum: Fixing WordPress
In reply to: CSS sidebar problemChange
#youtube-buttona toa#youtube-buttonand it should work. #youtube-button a is looking for a parent element with an id of youtube-button containing an<a>tag whereas a#youtube-button will look for an<a>tag with an id of youtube-button.Forum: Themes and Templates
In reply to: how to limit comment on home pageNo worries, that solution is a lot neater than mine 🙂
Forum: Themes and Templates
In reply to: Bold is the same with normal textYour
reset.cssfile is forcing the font-weight of the text to inherit which seems to be causing it. You could try adding a selector such as:strong { font-weight: bold; }in style.css or somewhere else suitable. Alternatively, you can delete the line in
reset.csssomewhere around the start of the file where it saysfont-weight: inherit;which does not seem to have any negative effects on the site besides also bolding some of hte headings.Forum: Themes and Templates
In reply to: how to limit comment on home pageI’ve not tested this but it should work:
<?php query_posts('pagename=guestbook'); ?> <?php $count = 0; $limit = 5; while (have_posts() && $count++ < $limit) : the_post(); ?> <?php comments_template(); ?> <?php endwhile; ?>Change
$limitif you want more or less commentsForum: Requests and Feedback
In reply to: Annoying white bar… -_-‘style.css, line 980:li.comment .details.admincomment .text { background:#F0F0F0 url(images/comment-bg-admin.png) repeat-x scroll left top; }Delete that background bit and it should get rid of the white bar.
Forum: Themes and Templates
In reply to: add Color to company name on titleIf you open up header.php there should be a bit that looks like:
<div id="heading"> <h1> <a href="<?php bloginfo('wpurl')?>"><?php bloginfo('name')?></a> </h1> </div>It will probably not be identical but the important bit is inside the
<h1>tags. Probably the easiest way to do this is to hardcode your blog name. To do this, replace the bits inside the<a>tag with Advance ERP Solutions. You will also need to put aspanaround the ERP bit so that you can make it red later. You will end up with something like this:<div id="heading"> <h1> <a href="<?php bloginfo('wpurl')?>">Advance <span class="erp">ERP</span> Solutions</a> </h1> </div>To change the colours, open up the style.css file. Line 353 defines the styles for the header link. To override it, add the following lines somewhere in the file (probably at the bottom to keep it separate):
#heading h1 a { color: #00F; } #heading h1 a .erp { color: #F00; }This will give you pure blue and pure red and will look awful so just replace those two colours with nicer versions. This should give you what you are after.
Forum: Plugins
In reply to: Plugin configurationPlugin authors can hide these wherever they want on the left-hand menu of the admin interface. Most of them will either create their own tab or put them under ‘Plugins’ or ‘Settings’ though, try looking in there.
Forum: Themes and Templates
In reply to: How to edit title in theme? I’m using MT dark 2.0Or go to line 76 of style.css:
h1, h2, h3, h4, h5, h6{ font-variant:small-caps!important; font-weight:normal!important; letter-spacing:0.076em!important; }The line
font-variant:small-caps!important;is making all headers on the site use capital letters. Delete it or comment it out and it will prevent the behaviour on the title but also change the look of post titles and any other headers.Forum: Themes and Templates
In reply to: Image Padding Won’t DisplayI do not think that the img tag supports padding – try either applying the padding to the containing element or using a margin instead.