MyBB Community Forums

Full Version: Need Help in Style some Text Portal and index page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi community.
I'm changing some style from Global.CSS, I have two doubts that I have studied all day but I don't see how to fix itHuh

the guide i'm using its Tutorial MyBB 1.4 CSS Guide and Tutorial Page and Vintagedaddyo tutorials

How can Setting the Color Text of that part? I don't know what that part is called and where it goes, I've searched for all day it but I can't find it... any help its welcome  Big Grin
[Image: Captura-de-pantalla-2019-11-30-a-la-s-6-47-37-p-m.png]


How can Style Quote in Portal? its Not the same Style in Thread.  How can style text in portal quote to black...
[Image: mybb-style-question.png]

blockquote {
	background: #D3E0BC;
	border: 3px solid #7e8670;
	margin: 0;
	padding: 10px;
}

blockquote cite {
	border-bottom: 3px solid #7e8670;
	display: block;
	padding-bottom: 3px;
	margin: 0 0 10px 0;
	
	font-style: normal;
	font-weight: bold;
}

Note: I am Not a developer just a Lover of MyBB1.8 software  Cool

Thanks in advance for the suppport

bye
Change the logo background color here:

#logo {
    background: #233953;
    padding: 10px 0;
    border-bottom: 1px solid #b3cde7;
}

Change the breadcrumb active bit color here - global.css line 611:

.navigation .active {
    color: #333;
    font-size: small;
    font-weight: bold;
}

In portal it is your trow1 class that is causing the text to be white.

.trow1 {
    background: #253C5A;
    color: #FFFFFF;
    border-top: #101010 1px solid;
    border-bottom: #262626 1px solid;
    padding: 10px;
    font-family: Source Sans Pro;
    font-size: 14px;
    font-style: normal;
}
It sincerely leaves me surprised at how you know where the code is and how to develop it. Cool  you are geniuses with a lot of knowledge in MyBB.

Thank you very much for the Support
  @Ashley1 , it has been very helpful for me and I am very grateful.

the only doubt I have is to fix that blank space... The code #logo is the same as I have and I get Space white code, that its my code of #logo [/b]
#logo {
	background: #233953;
	padding: 10px 0;
	border-bottom: 1px solid #b3cde7;
}

How to fix that blank space?
[Image: My-BB-Style-Question.png]

Thanks in Advance [b]@Ashley1
for the Support MyBB

Note: the community has amazing programmers with a lot of knowledge Cool


Shy
Not sure what's causing those spaces ... i can't see anything that might in your view source information. You also have them in the lower panel where your PMs are.
In your global.css, line 68:
#header ul.menu {
	background: #233953;
	color: #0072BC;
	text-align: center;
	line-height: 1.4;
	margin: 0;
	overflow-y: scroll;
}
Remove the line overflow-y: scroll;
(2019-12-01, 03:38 PM)Crazycat Wrote: [ -> ]In your global.css, line 68:
#header ul.menu {
	background: #233953;
	color: #0072BC;
	text-align: center;
	line-height: 1.4;
	margin: 0;
	overflow-y: scroll;
}
Remove the line overflow-y: scroll;

Thank You So Much @Crazycat with Remove that Line can Fix the Space Black.

Thanks in Advance for the support


Muchas Gracias Big Grin