Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • I can see the icons on the site – are you still having this issue?

    Change #youtube-button a to a#youtube-button and 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.

    No worries, that solution is a lot neater than mine 🙂

    Your reset.css file 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.css somewhere around the start of the file where it says font-weight: inherit; which does not seem to have any negative effects on the site besides also bolding some of hte headings.

    I’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 $limit if you want more or less comments

    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.

    If 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 a span around 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 configuration

    Plugin 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.

    Or 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.

    I do not think that the img tag supports padding – try either applying the padding to the containing element or using a margin instead.

Viewing 10 replies - 1 through 10 (of 10 total)