Jump to content

add to left n right columns


rnrewebsite

Recommended Posts

Could I get a little help in how I can get my tittle to pick up the same look at the other ones on my columns plz, I want to add links to one section..and things on the right side, when I work the main.php I can get the links to look like the rest using the <ul><li> ..but the <h3> doesnt work the way I did it which I'm sure isn't the way you do it, I'd like to see the Popular Links to look like Mailing List.

 

<div class="sidebar" id="sidebar_left">{$CATEGORIES}
        {$SALE_ITEMS}
        {$MAIL_LIST}   
<h3>Popular Links</h3>

<ul id="menu" class="accordion">
    <li>

Link to comment
Share on other sites

The CSS rule is:

.sidebar > div > h3

 

So, any additional sideboxes will need to start with a <div>, then followed by the <h3> tag.

  <div class="sidebar" id="sidebar_left">{$CATEGORIES}
    {$SALE_ITEMS}
    {$MAIL_LIST}   
    <div>
      <h3>Popular Links</h3>
      <ul id="menu" class="accordion">
        <li>
...etc
    </div>
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...