ElkArte Community

Project Support => General ElkArte discussions => Topic started by: Egbune on August 30, 2017, 03:00:01 pm

Title: Questions on Elk!
Post by: Egbune on August 30, 2017, 03:00:01 pm
Hi, will share a screenshot of what I mean in this thread. You see the dates below the topics of the simplePortal block below? I would like to remove them and make only the topic + the author show.

It looks all jam packed that way and I would like to give each of the topics spaces.

Do I need to set it in the block body section and what codes do I need to do all that?

My forum is the first one and I would like to make it well spaced and the date removed like that of the second one. I don't mean the design, just the right codes I can place in the body section of the block.
Title: Re: Questions on Elk!
Post by: Egbune on August 30, 2017, 03:01:39 pm
Sorry for the error in the first one. The screenshot below is how my site looks and I want it to look like that above.
Title: Re: Questions on Elk!
Post by: Egbune on August 30, 2017, 03:36:52 pm
Also, would like to know how to remove the forum link and Icon when enabled potal homepage using SP. Like, only the community , register, login that will be put left on the menu when homepage is enabled.
Title: Re: Questions on Elk!
Post by: emanuele on August 30, 2017, 03:57:16 pm
I think you could tweak a little bit the css, something like:
Code: [Select]
.sp_block.sp_recent {
    font-size: 1.35em;
}
.sp_block.sp_recent .smalltext {
    font-size: 0.757em;
    line-height: 200%;
}
These are more or less random numbers, but to give you the idea. :)
Title: Re: Questions on Elk!
Post by: emanuele on August 30, 2017, 03:59:01 pm
Quote from: Egbune – Also, would like to know how to remove the forum link and Icon when enabled potal homepage using SP. Like, only the community , register, login that will be put left on the menu when homepage is enabled.
If it is just a matter of display:
Code: [Select]
#button_forum {
    display: none !important;
}
That should do.
Title: Re: Questions on Elk!
Post by: Egbune on August 30, 2017, 05:49:03 pm
Quote from: emanuele –
Quote from: Egbune – Also, would like to know how to remove the forum link and Icon when enabled potal homepage using SP. Like, only the community , register, login that will be put left on the menu when homepage is enabled.
If it is just a matter of display:
Code: [Select]
#button_forum {
    display: none !important;
}
That should do.

Thank you! At this momet, the above code works.
But the codes above this (SP) don't work. If I am right, those codes are to be placed in the 'portal.css' section? I could only icrease the font size but the date doesn't seem to go out
Title: Re: Questions on Elk!
Post by: Egbune on August 30, 2017, 05:49:47 pm
See www.plusnation.ga to see what I mean
Title: Re: Questions on Elk!
Post by: emanuele on August 31, 2017, 05:20:44 am
I would suggest you to create a custom.css (sorry I can't write much now, if you search you'll find all the info) and put the css there.