The forum of the forums

Would you like to react to this message? Create an account in a few clicks or log in to continue.
The forum of the forums
4 posters

    Styling Boxes

    Asriel
    Asriel
    Forumember


    Male Posts : 585
    Reputation : 32
    Language : English, Russian, Ukrainian
    Location : St. Somewhere

    Styling Boxes Empty Styling Boxes

    Post by Asriel Sun 11 Jan - 19:49

    OK. so here's my dilemma. 

    I am trying to make a box like this >>> Styling Boxes Canvas10

    So far, I've got the right idea i think. Here's my attempt. >>>> Styling Boxes Index10



    Also, this is the code i've got so far in CSS. But my problem is trying to lower the number and bolding it. Make it stand out.

    Code:
    .replies {
      border: 1px solid;
      height: 54px;
      width: 54px;
      text-align: center;
      text-weight: bold;
    }

    So, any help with styling would be greatly appreciated. Thank you!
    _Twisted_Mods_
    _Twisted_Mods_
    Helper
    Helper


    Male Posts : 2083
    Reputation : 336
    Language : English
    Location : Ms

    Styling Boxes Empty Re: Styling Boxes

    Post by _Twisted_Mods_ Sun 11 Jan - 19:58

    try using box-shadow instead of border  

    box-shadow: 0px 0px 5px black;

    and you can make it bolder by adding more shadow


    box-shadow: 0px 0px 5px black, 0px 0px 5px black, 0px 0px 5px black;
    Asriel
    Asriel
    Forumember


    Male Posts : 585
    Reputation : 32
    Language : English, Russian, Ukrainian
    Location : St. Somewhere

    Styling Boxes Empty Re: Styling Boxes

    Post by Asriel Sun 11 Jan - 20:11

    i still need to bring the number down to the center. It's too high up and i would like it more centered at the bottom
    _Twisted_Mods_
    _Twisted_Mods_
    Helper
    Helper


    Male Posts : 2083
    Reputation : 336
    Language : English
    Location : Ms

    Styling Boxes Empty Re: Styling Boxes

    Post by _Twisted_Mods_ Sun 11 Jan - 20:22

    not quite sure how you have it setup but you can try

    Code:

    margin-top:auto;
    margin-bottom:auto;

    if that dont work try


    Code:

    margin-top:5px;

    \isogriv.\
    \isogriv.\
    Forumember


    Posts : 31
    Reputation : 4
    Language : English

    Styling Boxes Empty Re: Styling Boxes

    Post by \isogriv.\ Sun 11 Jan - 20:23

    Code:
    .replies {
    width: 50px;
    height: 38px;
    margin-left: 5px;
    background-color: #d8d8d8;
    color: #181818;
    font-size: 8px;
    font-weight: bold;
    text-align: center;
    padding: 12px 2px 2px 2px;
    }

    The provided code should be nearly exactly like the box shown in the first image.
    Asriel
    Asriel
    Forumember


    Male Posts : 585
    Reputation : 32
    Language : English, Russian, Ukrainian
    Location : St. Somewhere

    Styling Boxes Empty Re: Styling Boxes

    Post by Asriel Sun 11 Jan - 20:41

    i dont know if it matters, but is there a section in templates in Topics that shows count of replies box. Because that's where i am styling the box.
    Ikerepc
    Ikerepc
    Active Poster


    Male Posts : 1186
    Reputation : 167
    Language : Who cares...
    Location : Where web help & support is needed

    Styling Boxes Empty Re: Styling Boxes

    Post by Ikerepc Thu 15 Jan - 12:01

    yes, there is. You have phpbb 2?


    If yes do next:

    At index_box template
    Change this:
    Code:
          <th nowrap="nowrap" width="50">{L_TOPICS}</th>
          <th nowrap="nowrap" width="50">{L_POSTS}</th>

    With this:
    Code:
    <th nowrap="nowrap" width="100">Statistics</th>


    Then replace this:
    Code:
          <td class="row3" align="center" valign="middle" height="50">
             <span class="gensmall">{catrow.forumrow.TOPICS}</span>
          </td>
          <td class="row2" align="center" valign="middle" height="50">
             <span class="gensmall">{catrow.forumrow.POSTS}</span>
          </td>

    With this:
    Code:
          <td class="row3" align="center" valign="middle" height="50">
                      <span class="gensmall"><table><tr><td><div class="kutija"><span class="broj">{catrow.forumrow.TOPICS}</span><br />Threads</div></td></tr><tr><td><div class="kutija"><span class="broj">{catrow.forumrow.POSTS}</span><br />Posts</div></td></tr></table></span>
          </td>


    And add this to css:
    Code:
    .kutija {
      width: 50px;
      height: 50px;
      background: gray;
      text-align: center;
      padding-bottom: 5px;
      padding-top: 20px;
      padding-left: 10px;
      padding-right: 10px;
    }
    .broj {
      font-weight: bold;
      font-size: 14px;
    }

      Current date/time is Sun 22 Sep - 22:26