FastLine

Started by Diego Andrés, February 02, 2014, 06:12:08 PM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

Diego Andrés

Link to the theme


Free & Premium Responsive Themes for SMF




FastLine
Developed by Diego Andrés

Features
  • Logo URL
  • Custom Links
  • Custom Info Center Box
  • Social Networks


Demo Online
GitHub
Last Edit: July 05, 2023, 08:30:56 PM by Diego Andrés

BlackSheep

Hello,

I am setting up my forum and noticed the transparency on the forum is too much.

My forum location is www.rustservers.co.uk/site

It's very hard to read any text, where and how would I go about making it less transparent so I can actually read the forum?

Thanks!

Pipee

Ok, good friend.

Try changing the opacity of the # content_secion, which is located in the css of the theme.

Example:

#content_section {
    background-color: rgba(50, 75, 120, 0.4);
    border-color: #6F4244;
    border-style: solid;
    border-width: 0 3px;
    padding: 10px 15px 30px;
}

Change the "background-color: rgba(50, 75, 120, 0.4);" What you highlight, that must change.

Example "background-color: rgba(50, 75, 120, 0.5);" "0.5" is "0.50".

BlackSheep

Nice one!

That worked exactly how I wanted it to work.

Thank you very much mate!

androbada525

first of all I would like to laud all of you for this excellent theme
It is certainly THE BEST theme for SMF
Can you tell me how can I change the background image?
I like the one you guys have used
I would also like to remove the "Link 1 Link 2 Link 3 Link 4 Link 5" on the top
Can you tell me how to do that?
In case you want to see my forum, www.theteamk.co.nr

Pipee

Quote from: androbada525 on February 12, 2014, 10:09:41 AM
first of all I would like to laud all of you for this excellent theme
It is certainly THE BEST theme for SMF
Can you tell me how can I change the background image?
I like the one you guys have used
I would also like to remove the "Link 1 Link 2 Link 3 Link 4 Link 5" on the top
Can you tell me how to do that?
In case you want to see my forum, www.theteamk.co.nr


Please, friend, open a new post of support.

androbada525

first of all I would like to laud all of you for this excellent theme
It is certainly THE BEST theme for SMF
Can you tell me how can I change the background image?
I like the one you guys have used
I would also like to remove the "Link 1 Link 2 Link 3 Link 4 Link 5" on the top
Can you tell me how to do that?
In case you want to see my forum, www.theteamk.co.nr

Pipee

Quote from: androbada525 on February 13, 2014, 07:14:08 AM
first of all I would like to laud all of you for this excellent theme
It is certainly THE BEST theme for SMF
Can you tell me how can I change the background image?
I like the one you guys have used
I would also like to remove the "Link 1 Link 2 Link 3 Link 4 Link 5" on the top
Can you tell me how to do that?
In case you want to see my forum, www.theteamk.co.nr

search in your index.template:

<ul class="links floatleft">
<li><a href="', empty($settings['link_top1_url']) ? '' : '' . $settings['link_top1_url'] . '', '">', empty($settings['link_top1']) ? $txt['link_top1'] : $settings['link_top1'], '</a></li>
<li><a href="', empty($settings['link_top2_url']) ? '' : '' . $settings['link_top2_url'] . '', '">', empty($settings['link_top2']) ? $txt['link_top2'] : $settings['link_top2'], '</a></li>
<li><a href="', empty($settings['link_top3_url']) ? '' : '' . $settings['link_top3_url'] . '', '">', empty($settings['link_top3']) ? $txt['link_top3'] : $settings['link_top3'], '</a></li>
<li><a href="', empty($settings['link_top4_url']) ? '' : '' . $settings['link_top4_url'] . '', '">', empty($settings['link_top4']) ? $txt['link_top4'] : $settings['link_top4'], '</a></li>
<li><a href="', empty($settings['link_top5_url']) ? '' : '' . $settings['link_top5_url'] . '', '">', empty($settings['link_top5']) ? $txt['link_top5'] : $settings['link_top5'], '</a></li>
</ul>


and delete.

Am, how to change the background.

go to images/theme/ of your theme, and replace backdrop.jpg.

alchemikos

Hello guys!

First of all congratulations, the best of SMF's templates owns you!

I wanna to edit the  upper left links 1 to 5 setting to my own links. how can I do that?
I saw the index.template, but i'm not sure were edit.

Thanks

I'm setting an internal server forum for my band dudes interact each other and organize our subjects

Paulo

Diego Andrés

You can edit that links in the admin center in current theme settings.

Thanks for preferring us  :)

ddc

Is there a way to alter the index.css, so the forums don't use the general teal color but the colors of the usergroup?



Do I need to comment out the color lines of
.poster h4, .poster h4 a
color: #78A8C1;


.user_info span.name a
color: rgba( 120, 168, 193, 0.8 )


Or will that have no effect because the color of users is set by
a:link, a:visited

I don't want to change the colors of all links though (like: Forum/Subforum links). I was just hoping the forums would differentiate the color classes between a link to a thread/setting and a user.

Example:
.poster h4, .poster h4 a
color: {class_usergroup_color}


I'm not sure what the class for that though.

Nvm, that fixed it for me: http://custom.simplemachines.org/mods/index.php?mod=3067
Last Edit: August 22, 2016, 03:00:26 PM by ddc