Sidebar Quickie

Travis

Active member
Quick Question. I am creating a social media block for the sidebar. I have already added Twitter to it,and you can see it at http://www.ncisaddict.com/forum/. What I want to know is how do I get the header to look like the other blocks?

Screenshots Attached.
 

Attachments

  • ss1.webp
    ss1.webp
    7.3 KB · Views: 13
  • ss2.webp
    ss2.webp
    3.3 KB · Views: 11
Try using this:
Code:
<div class="section">
    <div class="secondaryContent"><h3>Title</h3></div>
</div>

Nope,No Changes. This is My "connect_with_us" Template:
Code:
<div class="section">
<div class="secondaryContent"><h3>Connect With Us!</h3>
<a href="http://www.twitter.com/NCISaddictWeb"><img src="http://twitter-badges.s3.amazonaws.com/follow_us-c.png" alt="Follow NCISaddictWeb on Twitter"/></a>
</div>
 
I'm using that for my RSS block and it works fine.

Ah, just realised you've got a link in there.
You'll have to change the colour as the link will pick up the href css.

Edit: And looking at your site, it's using .sidebarsection for the header.
So try this instead:
Code:
<div class="sidebarsection">
    <h3>Title</h3>
</div>
 
I'm using that for my RSS block and it works fine.

Ah, just realised you've got a link in there.
You'll have to change the colour as the link will pick up the href css.

Edit: And looking at your site, it's using .sidebarsection for the header.
So try this instead:
Code:
<div class="sidebarsection">
    <h3>Title</h3>
</div>

That works. Knew it would be something simple :p However,this is my first time venturing into code so...

EDIT:Added screenshot of the fixed problem
 

Attachments

  • ss3.webp
    ss3.webp
    2.7 KB · Views: 4
Top Bottom