Hits in and out ad

Hello Basti.
I tried that of course, but apparently couldn't find the right html.
Now it works so far.

My problem now is that I would like the display to be as in default.
I can stand on my head, I can't do it with the surfaces.
I tried it in the css. I exchanged the complete html content for testing so that I can see where I can do something.
All to no avail :-(
Can someone please tell me where I have to do something to make it look like the picture with the arrows?


mit.PNGohne.PNG
 

Basti

Administrator
Staff member
default theme, uses a framework called bootstrap, with lots of useful html/css
paroba not using such a thing, hence you cant expect to get the same thing, you have to duplicate that yourself in css

for example, you have to inspect on default theme the color codes ( right click inspect element ). That will reveal you the css color hex codes

Then you need to put that in your parabola css, for example ( just demo color and code )
Code:
.badge {
    padding: 3px 5px;
}
.badge.badge-green {
    background-color: #008000;
    color: #fff;
}
and in html, you use these 2 classes
Code:
<span class="badge badge-green">blabla</span>
the .badge.badge-green you have to multiply for every color you want, e.g .badge.badge-blue etc
 
Thanks Basti, now it's clear and it worked well.

But I've finally decided on the new default.
I think in the long run I will get along very well with Bootstrap4.
Adjusting the style is also very easy once you understand the principle.

Many thanks :)
 

Basti

Administrator
Staff member
Yes, not to talk about mobile friendly. We loved parabola for a long while, but its more than time to let it go :)
 
Top