Hello! I promise I browsed this community thoroughly for what I wanted, and while I found a few things I wanted to change, there were others I couldn't find at all or they're not properly tagged (I'll also try to properly tag this entry for other people).
What I hope to change:
-To shrink the font size in the top header. Fixed!-Same with the
(
Read more... )
Comments 21
#header-name a { font-size: 28px;}
Similarly, for entry titles:
.asset-name { font-size: 22px;}
In both cases, change the number to what you want. All the other things you're asking about, however, require changing the layer code with a custom theme layer, because they're more complex. I always mention that because some people aren't willing to go to that level of trouble. ;)
Reply
There's no easy code to remove the location bar and tags bar (on my main page), plus moving the mood and music bars to the top of each entry? How would I make Expressive into a custom theme layer? I thought it wasn't possible.
Reply
Since you have a Permanent account, you can create a theme layer, which will override certain aspects of the base Expressive layout.
Reply
function Entry::print_metadata() {
if (size $.metadata)
{
#print """
"""
""";
var string currents;
foreach var string k ($.metadata)
{
var string text = $k;
var string val = $.metadata{$k};
if ($k == "mood")
{
$text = $*text_meta_mood;
}
elseif ($k == "music")
{
$text = $*text_meta_music;
}
if ($k == "mood" and defined $.mood_icon)
{
var Image i = $.mood_icon;
$val = "
( ... )
Reply
Leave a comment