Hi, I don't know if what I'm trying to do is possible, so I thought I'd come here and find out before i waste any more of my time.
I have a blog (blogger) of which I have full access to the templates html/css. I was looking for an alternative comments system and found one at DISQUS. The method of installing their widget was thus: I downloaded my blog template before uploading it to their site. Their wizard then installed the comment widget and presented me with the ammended template which I simply pasted back into my template's html.
I'm now using the 'inspect' function (on the Firefox's tool Firebug) to get the class names etc of all the different elements that go to make up the DISQUS comments system, and then using the <style> tag to customize the look.
I've discovered that I can customize certain elements, but am having trouble with others. For instance, I discovered that the class name for a little drop-down options box was 'dsq-item-sort'. I didn't want this, so used
Quote:
|
.dsq-item-sort { display: none; }
|
to hide it. This did the trick.
I now want to customize the look of the 'submit comment' button. I used Firebug to hover over the button and it highlighted the following in the coding
Quote:
<div class="submit-footer"><input id="default-submit" class="submit" type="submit" value="Post as OurJud"/>
<input id="custom-submit" class="submit" type="submit" value=""/>
</div>
|
I have tried styling this button with the following
Quote:
.submit-footer
.default-submit
.submit
|
But none of them made any difference.
Am I trying to acheive something that isn't possible?
Sorry for such a long-winded question and thanks in advance.
|