also does any1 know how to put custom fonts? tysm!!!
Hello!
I tweaked the fonts in my layout then noticed afterwards that the tiny username icons were misaligned with the text beside them. I was able to fix it using the code below for DW users and communities, but for other sites like AO3 and YouTube, the tiny username icons are still aligned at the bottom.
Thanks in advance for any help 🙏🏽
I've flicked all the modules on and off to see if I can isolate it, and it doesn't seem tied to any of them. IDEALLY I would just have my blog title and subtitle there, and no random "Modules" link (which, for what I'm doing here, is pretty redundant). I've combed all the journal customization options over a few times trying to figure out what controls what happens in that box and how I can modify it or at least shoo it away, but I've come up empty-handed. I assume this is probably something I'd have to attack with CSS? I'm not good at that stuff but I can kinda fake it until I make it, although I just honestly don't know where to start here. I would super appreciate anyone's insight.
My question is the following: how can I add my own template with TUBE interface? I have my own templates, developed for BLOGGER and WORDPRESS, I use program ARTISTEER and Incomedia WebSite X5 Evolution.
I looked in the options but I didn't find IMPORT TEMPLATE anywhere, I only found a section Advanced Options / Your Styles where it doesn't allow me to attach my own template that I developed myself, it only allows me to change the styles and create new ones styles. I was looking for a TUBE template, in your inline styles, but I couldn't find one anywhere, except for the standard templates that create vertical and deep pages. I would like to ask you to explain in detail how and in what way we can upload our own templates that we have developed by ourselves.
ive started a community called mapmakerstrilogy for a book trilogy and I'm in the process of editing the theme and adding background images. I was trying to change the theme to sand dunes by flatlanders but everytime i do it automatically applies it to my blog instead of the community. by all accounts my settings are correct and I'm working in the right community so I don't know why its doing this.
are there certain themes that are only allowed to be used for blogs and not communities or is this a troubleshooting issue? I've cleared my browser cache as far as the begining of the month and restarted and updated my computer. I don't know what else to do.
any advice is appreciated. thank you!
edit: here are some screenshots of what is happening. sorry for how large the images are
Desktop:
Tablet:
This is the theme I am using:
I have a paid account, and I've had a play around with the customize your theme option, but no luck, and I only know very basic html and css. Any help or advice would be very appreciated!
I'm trying to add custom HTML to the head
element on my journal pages. I followed the instructions here and created a new theme layer with just these lines (my journal uses Tabula Rasa):
layerinfo type = "theme"; layerinfo name = "fediverify"; function Page::print_custom_head() { """<link rel="me" href="https://ple.praze.net/users/tre">"""; }
I've enabled the layer on my styles page, but the new line of HTML isn't showing up in the page source. I have an i18nc layer that works properly, so I presume everything is fine in terms of the actual layer being applied but the function just isn't doing anything. Is there anything else I should try?
I am back posting at Dreamwidth after a very long absence and wondering if I need a paid account to change my mood icons to cats.
I have the gif images on my desktop computer at home.
Can I upload them with html coding or is there access now to icons for people to use with their journal formats.
Really like the the journal style that I have chosen.
I would like to add the cat icons to go with it.
It feels good to be back. :D
If it helps, I'm trying to convert Basic Boxes. Thanks in advance!
I have a custom layer and can edit bits and pieces, but I've managed to confuse myself as to whether I need to edit the layer or throw some custom css on.
I want to make the 'details' span visually identical to a cut tag - bold, underline, parentheses. I've skimmed old entries here for cut tags, and I have a couple of thoughts mulling. I can probably do the B and U easily enough, and match the color to my entry-links (#1f142e), but I'm banging my head on how to get the parentheses in place. Matching the arrow would be nice, too, but it doesn't bother me as much as the lack of the cut-tag visual elements.
screenclip example images:
"Details" as pseudo-cut:
Actual cut:
It can be seen in this post where I've made a bunch of comments to myself to illustrate: https://seleneheart.dreamwidth.org/1312626.html
Also see pic under the cut.
( pic of problem )
I've used the inspector to look at the code, and what I see is that, for each ongoing comment, in the
qrformdiv
there is the following code:element {
min-width: 696px;
position: relative;
right: 75px;
background-color: rgb(103, 150, 199);
}
For each ongoing comment, the value of
right: __px;
grows larger. In the inspector, if I reduce the value of right:
, it fixes the problem. However, that's not feasible to go in for every comment, or try to anticipate how long a thread could get. I have a paid account, and I'm using Abstractia as the base of the theme.So, I recently changed my layout to Brittle and have come to the conclusion that the links to leave a comment/shows how many comments you have at the bottom of the entry are driving me nuts being that small.
There's got to be HTML coding to increase those link sizes, right?
If anyone can point me in the right direction, it'd be most appreciated.
Link to my DW is here.
Thank you for reading.
I want to do something similar to what foxway did in the style made by girlrock , which was to change the navigation module so that the text is different and the links lead to other pages than the default set. However, this is a different theme, Venture. I followed Girlrock's instructions for how to achieve that with a custom theme layer, and confirmed that it works on the navigation module of Venture. I want to know how to do this to the header navigation module of Venture instead.
I just popped a little creature on my journal, in the bottom left-hand corner, which follows the page as visitors read, keeping an eye out for mischief.
(little creature designed by dollarchive.neocities)
Step 1: upload your picture somewhere. Make sure it's small, and has a see through background
Step 2: display the custom 'Text' module on your layout
Step 3: in the Customise Journal > Text screen, include this code in the Text for the 'Custom Text' box:
<dialog open><img src=YOUR-URL-HERE></dialog>
In the past, you would create invisible boxes and containers to structure your HTML with div boxes. Modern HTML gives you options to do 'semantic html' - so instead of a generic div, you can use tags like header, nav, article and section to do essentially the same thing you do with a div, but screen readers can navigate it more easily and it's nicer to code too
dialog is a rarely used html tag, so we can sneak it in here to target in our CSS, knowing it likely won't appear anywhere else in our css. (Using id selectors didn't seem to work with dreamwidth's code-wrangler; using a div is too generic, as there are several other divs in module-content).
Step 4: go to Customise CSS and paste in the following:
.module-content dialog { position: fixed; z-index: 3; bottom: 0; right: 100%; background: none; border: none; }
This tells the browser how to display the dialog box - moving it out of the Custom Text Module and all the way over the page, where it floats over the webpage.
Step 5: check accessibility. Shrink down the browser window size and use the inspect tool or a website to see how the page looks on mobile. Ensure that it doesn't cover up text you want people to read.
If it's a problem, you can get the Guardian to disappear once the browser window goes under a certain size. Put this code (or similar) into the Customise CSS section:
@media only screen and (max-width: 600px) {.module-content dialog {display: none}}
If the browser window is 600px wide or smaller, the website won't load the Guardian image at all, as if it never existed
Ideas: What creative purposes could you put this to? An animated gif. A pixel animal that moves, reacts or changes when you hover or click on it. A link. Something practical.