sympy-live
sympy-live copied to clipboard
Update SymPy Logo
This corresponds to sympy/sympy.github.com#53
I could not get the mobile logo to stop being squished. I don't know how to fix that.
I can take a look at the mobile site sometime (probably this weekend, since school has started).
OK great.
In static/live-mobile.css
, change
#header img {
height: 40px;
width: 40px;
}
to
#header img {
height: 40px;
width: 57px;
}
The CSS overrides the width
and height
attributes (you could also remove the CSS and just use those attributes).
Thanks for the fix. It works.