News:

Wondering if this will always be free?  See why free is better.

Main Menu

2.1 CSS

Started by Sir Osis of Liver, April 26, 2022, 05:31:41 PM

Previous topic - Next topic

Arantor

Quote from: Antechinus on April 26, 2022, 07:04:24 PMI assume that is why it hasn't been changed.

It was changed to regular gradients and changed back, I think, because I remember having an argument with someone in 2013 about how they would have to upgrade their several-year-old Mac Pro to get the gradients as they were actual gradients.

Sir Osis of Liver

A sprite.  Thought we were getting rid of sprites?

Inspect element wasn't giving me the file name.
Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Antechinus

Quote from: Sir Osis of Liver on April 26, 2022, 07:10:29 PMA sprite.  Thought we were getting rid of sprites?
We were getting rid of stupid big sprites where they didn't make sense (main_block.png, etc).

QuoteInspect element wasn't giving me the file name.
It will show you the CSS associated with any element. That's what you needed to look at, since these are background images rather than inline images.

Arantor

Quote from: Sir Osis of Liver on April 26, 2022, 07:10:29 PMThought we were getting rid of sprites?

This was done in 2013, and at the time there was no way to meaningfully do a pure CSS version of this icon that was browser-agnostic and not awkwawrd. These days it would likely be better as an SVG possibly even inlined.

Quote from: Sir Osis of Liver on April 26, 2022, 07:10:29 PMInspect element wasn't giving me the file name.

Funny, I found it with inspect element... sometimes you have to go up an element or two.

Sir Osis of Liver

I see it now.  It's easy to find if you know what to look for.  Did a quick edit on the sprite, needs some prettying up but works.
Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Sir Osis of Liver

Ok, I've eliminated the sprite, back to individual images.  Thanks, but no thanks. :P


.board_icon a {
/* background: url(../images/boardicons.png) no-repeat 0 0 / 90px;*/
background: url(../images/on.png) no-repeat 0 0 / 60px;
display: inline-block;
width: 65px;
height: 65px;
}
.board_icon a.board_on2 {
background: url(../images/on2.png) no-repeat 0 0 / 60px;
background-position: 0px 0;
}
.board_icon a.board_off {
background: url(../images/off.png) no-repeat 0 0 / 60px;
background-position: 0 0px;
}
.board_icon a.board_redirect {
background: url(../images/redirect.png) no-repeat 0 0 / 60px;
background-position: -5px 0px;
}

Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Kindred

Personally,  I replaced them with gradient circles and fafa (or, in my case, starwars font) icons
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

Sir Osis of Liver

He has custom board icons, that's what we'll be using.  Bit of trouble to edit css to resize and position, but they look ok now.
Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Sir Osis of Liver

Took me a couple hours to find this. >:(  Forum has a custom header with dropdown menus, title and link colors were incorrect in some menus.  Looked like a conflict between header and forum css, that's what it was, but don't know why.  Some of the links were wrapped in <strong></strong> tags, this was callimg .strong class from forum index.css.  Fiixed it by replacing all <strong> tags with <b>.  It's not a class, it's an html tag, why would it affect css?
Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Kindred

Strong is a css target-able html... like most html tags actually
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

Diego Andrés

<strong> is what <b> used to be.
<b> was briefly deprecated, now it's just irrelevant despite being back.

I'd rather use <span class="strong"> with 2.1 css, or simply <strong>, than using <b>

SMF Tricks - Free & Premium Responsive Themes for SMF.

Sir Osis of Liver

So if it sees <strong> it applies the .strong class, same as a <div>, <h1>, etc.?  There were several conflicts between header and forum css, but this was the most difficult to find.  Any way to avoid something like that?
Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Antechinus

The strong tag is for importance/emphasis, while the b tag is just a substitute for CSS styling (not recommended to use b tag these days). So not really what b used to be. Strong has been around for ages too.

Sir Osis of Liver

Quote from: Diego Andrés on April 30, 2022, 08:05:22 PM<strong> is what <b> used to be.
<b> was briefly deprecated, now it's just irrelevant despite being back.

I'd rather use <span class="strong"> with 2.1 css, or simply <strong>, than using <b>

That's what caused the problem, there's a .strong class in index.css, and it was different from the css in the header, so it changed colors in the dropdowns.  <b> looks the same as <strong> in FF, so it should be ok.
Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Antechinus

Quote from: Sir Osis of Liver on April 30, 2022, 08:09:03 PMSo if it sees <strong> it applies the .strong class...
No. If it sees this, it applies this:
strong, .strong {
    font-weight: bold;
    color: #444;
}

IOW, the colour and font-weight are applied to both the tag and the class.

Sir Osis of Liver

That's what it was doing, changed link color and killed mouseover highlight.  Don't know what changed menu titles, but adding color to .column h3 fixed it.  Trying not to make too many changes in website code, some of it is quite old but still works, and it's not what I'm there for.  Just integrating custom header/footer onto forum without breaking anything.
Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Sir Osis of Liver

Where is the css for the login window?  Not the contents (.login, etc.), the popup window itself.  Having some conflicts with custom header css, need to mess with z-index to get it on top of things.
Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Antechinus

Look for .popup_container in index.css (document inspector FTW).

Sir Osis of Liver

#38
   Whack-a-mole.  Working with this -


.popup_container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 64, 80, 0.5);
    z-index: 6;
}


With z-index: 6 header dropdowns are good, but login window is behind header menubar.  At z-index: 10 or higher, login window is on top, but forum menu buttons are on top of header dropdowns.  Will leave it like that until tonight, you can see it here.  Can move login window down with margin-top: 100px, but would rather fix it with z-index.



Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Sesquipedalian

Basically, you want to assign the highest z-index value to .popup_container, the second highest to the menu nearest the top of the page, the third highest to the next menu moving down the page, and so on.
I promise you nothing.

Sesqu... Sesqui... what?
Sesquipedalian, the best word in the English language.

Advertisement: