Teatime Chats

I wonder how that is going to go down.


B6oVI8qIMAAcqv5.jpg
 
Welp, there's three hours of my life making that CS I just sent.  Now I've just gotta wait for that hat to crush my dreams and make me go take some less important role.
 
My my my @Olissa that is a rather well done character sheet.


I can't wait to see her in action~~!
 
Welp, there's three hours of my life making that CS I just sent.  Now I've just gotta wait for that hat to crush my dreams and make me go take some less important role.

Well well, seems you are a much faster writer than I. 
 
Well well, seems you are a much faster writer than I. 

I pride myself on that.  Then I scold myself because most of my character's are usually of the same three archetypes so it's fairly easy to bring together a new character based on the lore provided.
 
Thank you @Orikanyo I can't wait to play her again :D  Honestly, this time the coding was what took the longest even though it's just basic... For the life of me I couldn't get any accordions to work, and eventually I gave up. Spoiler tags it is, lol.


(Thank goodness I still have all the art I made for Eva, or I would have been very unhappy...)
 
Thank you @Orikanyo I can't wait to play her again :D  Honestly, this time the coding was what took the longest even though it's just basic... For the life of me I couldn't get any accordions to work, and eventually I gave up. Spoiler tags it is, lol.


(Thank goodness I still have all the art I made for Eva, or I would have been very unhappy...)

I've been so lazy about learning this new code system :<
 
Aye, I've been putting it off... 


however, I've always focused on the character, so that's all that matters to me, esthetic helps though. 


Just gotta keep plugging at this while i wait on Pretzel to speak to me, lets say i'm checking all my options right now. (Still going with the same character idea Queenie, just wondering if he'd fit most as prince or something else we need atm)
 
Aye, I've been putting it off... 


however, I've always focused on the character, so that's all that matters to me, esthetic helps though. 


Just gotta keep plugging at this while i wait on Pretzel to speak to me, lets say i'm checking all my options right now. (Still going with the same character idea Queenie, just wondering if he'd fit most as prince or something else we need atm)

Part of me still wants you to make him the other Sea Republic Rep- He'd be such a cool foil to @Ranulf01's Vincentius, but I think they miiiighhht have enough in common to possibly be related? Based on what you've both told me.


((I feel so secret and inside with knowledge... ))
 
*Has forggotten what type of secrets i've told you since I haven't really made any* 


That said the character is workable to go wherever... I got put into a shitty mood today so likely wont be getting anymore done tonight... 
 
*Has forggotten what type of secrets i've told you since I haven't really made any* 


That said the character is workable to go wherever... I got put into a shitty mood today so likely wont be getting anymore done tonight... 



Is everything okay?  :smile8:
 
Is everything okay?  :smile8:

Ennui, mainly. 


But I'm largely over it right now, I just need to get a few thing sstraight before I work on the character again, not personally I mean regarding the Pm i sent you.
 
I've been so lazy about learning this new code system :<

I didn't want to go back to 'plain' posts, so I've been doing a lot of observing of other people's coding to begin to understand this. Got backgrounds, custom colored horizontal rules, borders, resizing an image, and adding in a different font that isn't in the standard list. More than enough to go on for now :D  (If anyone has a question about those few, I can help. Other stuffs, well... ehe I can try)
 
I didn't want to go back to 'plain' posts, so I've been doing a lot of observing of other people's coding to begin to understand this. Got backgrounds, custom colored horizontal rules, borders, resizing an image, and adding in a different font that isn't in the standard list. More than enough to go on for now :D  (If anyone has a question about those few, I can help. Other stuffs, well... ehe I can try)

I just really miss post Macros- these days, I try to save what little coding I do in Google docs, but nice pre-coded posts I could just insert text into where so nice
 

On the old version of RPN, you could save code in a list of pre-made "PostMacros" you put together, and you could add whatever chunk of code you needed into any post from a little drop down box near the text box on just about any post- it's how I did most of my coded IC posts in roleplays. 


Sure, mind tended to boil down to "border, background, title, Faceclaim" but I liked them. 
 
    

@import url('https://fonts.googleapis.com/css?family=Cinzel+Decorative');
.test {
font-family: 'Cinzel Decorative', cursive;
font-size: 36px;
}    


Whaaat I would have done the same if I knew it existed!


As for the fonts:


Go to https://fonts.google.com/


Find the font you want, then click the little red + button.


You'll see a pop up in the lower right corner. Click it to open it up.


Click @ import


Copy the code


In the post click 'Source'


Type <p>


Paste the code.


Then add a div class item... forgot the name.


To do so start with .anameofyourchoosing {


Next line is font-family: 'Font Name' 'Generic Family';


Generic Family means things like serif, sans-serif, monospace, cursive, etc


To find the one you need go back to your font on fonts.google and read what it states below "Specify in CSS" (under the code for the font)


After this you can specify more things, like font-size, color, background-color, etc. Make sure to always end with ;


then type } </style>


And end with </p>


Example:


<p>
    <style type="text/css">
@import url('https://fonts.googleapis.com/css?family=Cinzel+Decorative');
.test {
font-family: 'Cinzel Decorative', cursive;
font-size: 36px;
}    </style>
</p>


To then add it to a title or a full body of text do the following:


<div class="anameofyourchoosing"> 


Type what you want to type.


End with </div>


Example:


<div class="test">    Cinzel Decorative</div>


Leave Source and tadaaa.


Fancy text
 
Tried This:


<style type="text/css">
@import url('https://fonts.googleapis.com/css?family=Cinzel+Decorative');
.title{font-family: &quot;Cinzel Decorative&quot;, cursive; font-size: 12px;}</style>
<div class="title">
    Words?
</div>


 


 


But It just came out like:


 


 


Words?
 
Probably cause it says &quot;


instead of '


And I'm not sure if spaces need to be added here and there or if that's optional, haven't studied it enough to be sure about that.
 
Probably cause it says &quot;


instead of '


And I'm not sure if spaces need to be added here and there or if that's optional, haven't studied it enough to be sure about that.


@import url('https://fonts.googleapis.com/css?family=Dancing+Script');
.title{font-family: 'Dancing Script', cursive; font-size: 12px;}

Words?


 


Ahhh I see where I went wrong- I used  " instead of ' 


 


Thank you!!
 
Sometimes weird things happen. But it works now so yay!


Maybe a tag or so was left open and did't close properly. Whatever it was, it's something
 
I tried messing with the font and ended up breaking the entire site so I thought welp not trying that again. 


But if you got it to work then maybe...
 

Users who are viewing this thread

Back
Top