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
3 posters

    Please help category and box

    Glavee
    Glavee
    Forumember


    Posts : 149
    Reputation : 1
    Language : English

    Please help category and box Empty Please help category and box

    Post by Glavee Sun 10 Jan - 23:09

    Please help category and box 65610

    1. How do I make space between categories?
    2. How do I create a box there?

    Thanks!
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    Please help category and box Empty Re: Please help category and box

    Post by 10spetter10 Sun 10 Jan - 23:45

    1. Do you want to make the border thicker?

      Code:
      .main-content .statused td {
        border-top-width: 5px !important;
      }

    2. The best solution would be when you place a div around the elements inside your template 'index_box '. Else you can mess with css but then there is a big chance it will look weird with an other screensize.


    Glavee
    Glavee
    Forumember


    Posts : 149
    Reputation : 1
    Language : English

    Please help category and box Empty Re: Please help category and box

    Post by Glavee Mon 11 Jan - 14:04

    10spetter10 wrote:
    1. Do you want to make the border thicker?

      Code:
      .main-content .statused td {
        border-top-width: 5px !important;
      }

    2. The best solution would be when you place a div around the elements inside your template 'index_box '. Else you can mess with css but then there is a big chance it will look weird with an other screensize.



    1. Actually, I want to remove that border, but if you would give me the code that change the border's color to white (if that's possible) it would make it.

    2. I don't really understand what are you saying, but here is an example http://help.forumgratuit.ro/forum (that's the romanian Forumotion's version). Here if you go to navbar to Home (Acasa) and look at the last posts (Ultimele mesaje) you will see about what box am I talking about.
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    Please help category and box Empty Re: Please help category and box

    Post by 10spetter10 Mon 11 Jan - 14:48

    1. If you want it white you can use this code:

      Code:
      .main-content .statused td {
          border-top-color: #ffffff !important;
      }

      But if you want it gone you can change the width to 0.

    2. That romanian support forum is phpBB3, there you can make without template editing. For a punBB forum you will need to edit the 'index_box ' template.
    Glavee
    Glavee
    Forumember


    Posts : 149
    Reputation : 1
    Language : English

    Please help category and box Empty Re: Please help category and box

    Post by Glavee Tue 12 Jan - 22:27

    1. Done!

    2. So, can you give me the code for template, and where I have to insert it?
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Please help category and box Empty Re: Please help category and box

    Post by TheCrow Tue 12 Jan - 22:49

    @Glavee go to your Admin Panel > Display > Templates > General > index_box
    edit the template and search for:
    Code:
    <td class="tcr">

    once you find it replace it with this one:
    Code:
    <td class="tcr" id="boxLastPost">

    Save the template and publish it by pressing the green cross. Then go to your CSS and style it as you want using the element:
    Code:
    #boxLastPost {
    background:#XXXXXX;/*replace the XXXXXX with the hex color your want*/
    padding:3px;
    }



    Please help category and box Thecro10
     Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Glavee
    Glavee
    Forumember


    Posts : 149
    Reputation : 1
    Language : English

    Please help category and box Empty Re: Please help category and box

    Post by Glavee Tue 12 Jan - 23:18

    Please help category and box 1235410

    That's not exactly what I want @Luffy
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Please help category and box Empty Re: Please help category and box

    Post by TheCrow Tue 12 Jan - 23:54

    The styling you can change it as you like. For example:
    Code:
    #boxLastPost {
    background:#000000;
    padding:3px;
    margin:5px;
    border-radius:5px;
    }



    Please help category and box Thecro10
     Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Glavee
    Glavee
    Forumember


    Posts : 149
    Reputation : 1
    Language : English

    Please help category and box Empty Re: Please help category and box

    Post by Glavee Wed 13 Jan - 15:02

    I just changed my forum version to phpbb3 cause it looks like it's the most used and simple. Can you provide me the code for phpbb3?

    Thanks!
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    Please help category and box Empty Re: Please help category and box

    Post by 10spetter10 Wed 13 Jan - 16:09

    this is indeed much easier on phpBB3, try this css:

    Code:
    dd.lastpost {
      border: 1px solid #595959;
      background-color: #E9E9E9;
      border-radius: 5px;
      margin: 3px 0px;  /* distance between top and bottom */
    }
    Glavee
    Glavee
    Forumember


    Posts : 149
    Reputation : 1
    Language : English

    Please help category and box Empty Re: Please help category and box

    Post by Glavee Wed 13 Jan - 17:09

    @10spetter10 as you can see in my forum, "LAST POST" does have it's box aswell. It's there any way to remove it?
    10spetter10
    10spetter10
    Forumember


    Posts : 195
    Reputation : 82
    Language : Dutch

    Please help category and box Empty Re: Please help category and box

    Post by 10spetter10 Wed 13 Jan - 18:36

    Oops, I didn't noticed that while testing. Embarassed

    Code:
    li.header dd.lastpost {
      background: none;
      border: none;
    }
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6916
    Reputation : 795
    Language : Greek, English

    Please help category and box Empty Re: Please help category and box

    Post by TheCrow Wed 13 Jan - 18:41

    @Glavee could you please edit your website on your profile because i get an error while i try to visit your forum. That way i cannot really help if i can help! Smile

    Thanks!



    Please help category and box Thecro10
     Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    Glavee
    Glavee
    Forumember


    Posts : 149
    Reputation : 1
    Language : English

    Please help category and box Empty Re: Please help category and box

    Post by Glavee Wed 13 Jan - 19:20

    @Luffy Done!
    Glavee
    Glavee
    Forumember


    Posts : 149
    Reputation : 1
    Language : English

    Please help category and box Empty Re: Please help category and box

    Post by Glavee Thu 14 Jan - 16:07

    BUMP!

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