News:

Create A Forum Installed

Author Topic: How do I remove the random white area under banner?  (Read 1677 times)

0 Members and 2 Guests are viewing this topic.

Offline Yvi

  • Newbie
  • *
  • Posts: 5
  • Karma: 0
    • View Profile

Badges: (View All)
Level 2 Search Topic Starter
How do I remove the random white area under banner?
« on: September 19, 2017, 11:55:45 am »
When banner is not set, there isn't any white random area. But when I set the banner, whatever will be the size, it appears. I've tried like 20 different heights and it always appears.

Screenshot of the issue:
Spoiler (hover to show)
I hope it h
as a solution :S the page looks so broken with it.

Thank you in advance

Share on Facebook Share on Twitter


Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: How do I remove the random white area under banner?
« Reply #1 on: September 19, 2017, 12:15:46 pm »
It's a css issue what is your forum url?
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline Yvi

  • Newbie
  • *
  • Posts: 5
  • Karma: 0
    • View Profile

Badges: (View All)
Level 2 Search Topic Starter
Re: How do I remove the random white area under banner?
« Reply #2 on: September 19, 2017, 04:12:48 pm »
The forum is this one:
https://ourlionkingadventure.createaforum.com/index.php

The banner has been added with the options though, I didn't edit the code directly

Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: How do I remove the random white area under banner?
« Reply #3 on: September 19, 2017, 05:22:26 pm »
Would be this in your css
Code: [Select]

#header {
    background: #fefefe url("https://cdn.smfboards.com/caf/themes/dark_yellow/images/theme/main_block.png") no-repeat scroll 0 -480px;
    padding-left: 20px;
}
Change to
Code: [Select]
#header {
    background: #000000 url("https://cdn.smfboards.com/caf/themes/dark_yellow/images/theme/main_block.png") no-repeat scroll 0 -480px;
    padding-left: 20px;
}
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline Yvi

  • Newbie
  • *
  • Posts: 5
  • Karma: 0
    • View Profile

Badges: (View All)
Level 2 Search Topic Starter
Re: How do I remove the random white area under banner?
« Reply #4 on: September 19, 2017, 05:35:18 pm »
Thank you so much! At least now doesn't kill eyes :P

A big hug from me and my users!


Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: How do I remove the random white area under banner?
« Reply #5 on: September 19, 2017, 05:39:44 pm »
Glad to help.
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline Pscion

  • Newbie
  • *
  • Posts: 8
  • Karma: 0
    • View Profile

Badges: (View All)
Topic Starter Level 3 Combination
Re: How do I remove the random white area under banner?
« Reply #6 on: January 15, 2018, 04:03:24 am »
i'm having the same problem, tried to find the above mentioned section to edit and it's not the same syntax. so what else should i try?

Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: How do I remove the random white area under banner?
« Reply #7 on: January 15, 2018, 04:12:36 am »
What is your forum url?
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/


Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: How do I remove the random white area under banner?
« Reply #9 on: January 15, 2018, 09:51:48 pm »
It's various simliar it's in this line
Code: [Select]
#header {
 background: url(https://cdn.smfboards.com/caf/themes/dark_blue/images/theme/main_block.png) #fefefe no-repeat 0 -480px;
 padding-left: 20px;
}
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline Pscion

  • Newbie
  • *
  • Posts: 8
  • Karma: 0
    • View Profile

Badges: (View All)
Topic Starter Level 3 Combination
Re: How do I remove the random white area under banner?
« Reply #10 on: January 15, 2018, 09:57:51 pm »
It's various simliar it's in this line
Code: [Select]
#header {
 background: url(https://cdn.smfboards.com/caf/themes/dark_blue/images/theme/main_block.png) #fefefe no-repeat 0 -480px;
 padding-left: 20px;
}
k so i can just change the color to "#000000"? or is there something else i need to do?

Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: How do I remove the random white area under banner?
« Reply #11 on: January 15, 2018, 10:00:35 pm »
Yes to a color that matches
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline Pscion

  • Newbie
  • *
  • Posts: 8
  • Karma: 0
    • View Profile

Badges: (View All)
Topic Starter Level 3 Combination
Re: How do I remove the random white area under banner?
« Reply #12 on: January 15, 2018, 10:05:36 pm »
Yes to a color that matches

it now reads:
background: url(https://cdn.smfboards.com/caf/themes/dark_blue/images/theme/main_block.png) #000000 no-repeat 0 -480px;
    padding-left: 20px;
still not solved, does it have to be set to the same color as the rest of the header? if so, how do i find that color?

Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: How do I remove the random white area under banner?
« Reply #13 on: January 15, 2018, 10:08:53 pm »
Use a value of 1 #393939;
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline Pscion

  • Newbie
  • *
  • Posts: 8
  • Karma: 0
    • View Profile

Badges: (View All)
Topic Starter Level 3 Combination
Re: How do I remove the random white area under banner?
« Reply #14 on: January 15, 2018, 10:11:31 pm »
Use a value of 1 #393939;
i now have :
#header
{
    background: url(https://cdn.smfboards.com/caf/themes/dark_blue/images/theme/main_block.png) 1 #393939 no-repeat 0 -480px;
    padding-left: 20px;
}
still a white block there... i'm looking under "framing graphics" is that the right section?
edit: sorry i removed the 1, and no change
« Last Edit: January 15, 2018, 10:13:50 pm by Pscion »

 

Related Topics

  Subject / Started by Replies Last post
0 Replies
491 Views
Last post July 09, 2011, 04:48:31 pm
by .:The White Lioness:.
10 Replies
1908 Views
Last post July 30, 2013, 05:57:45 pm
by WholesaleChat
10 Replies
423 Views
Last post November 04, 2021, 09:22:41 pm
by CreateAForum
2 Replies
121 Views
Last post December 19, 2021, 01:13:42 pm
by CookieTBC
4 Replies
206 Views
Last post April 15, 2022, 07:43:29 pm
by CookieTBC