Julianna
Forum Replies Created
-
Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] Manually subscribe a member?Great point, thanks. I can just give them a quick nudge to subscribe to the announcements forum instead.
Love the plugin, btw. Works really well.
That worked, thank you!
That would be great, thank you! The URL is https://jyycoaching.com/responding-to-feedback/
I’d like to change the font to Fahkwang, which I use for the body text.
This is what it looks like now: https://www.loom.com/i/3cedac9dcc5941489410ab3bbc06cd94
I included the screenshot because I was reviewing the page with someone and for some reason the font shows as Fahkwang for them.
Thank you!
Forum: Plugins
In reply to: [Rename XMLRPC] [Plugin: Rename XMLRPC] Installation problemForum: Plugins
In reply to: [Rename XMLRPC] Plugin not working?This worked fine for me.
What I did was:
1. Download and unzip the plugin
2. Rename my existing xmlrpc.php file to “workaround.php”
3. Open the rename-xml-rpc.php file
4. In line 14 of the file (where it says “//CHANGE THIS poiting to the renamed file”), change “xmlrpc2.php” to “workaround.php”
5. Upload the plugin
6. Activate the plugin in WordPressYou can use any file name instead of “workaround.php”
Forum: Themes and Templates
In reply to: Rounded V2 purple edition – can’t handle long postsAfter some more work, I managed to find the final fix.
Step 1:
Backup csbbody-l.gif and csbbody-r.gif (in the “img” folder).Step 2:
Remove the bottom (rounded corner portion) of csbbody-l.gif and csbbody-r.gifStep 3:
Using the backups from Step 1, create new csbbottom-l.gif and csbbottom-r.gif with the bottom (rounded corner portion).Step 4:
In style.css, change:#content .storycontent { background: url(img/csbbody-l.gif) no-repeat bottom left; margin: 0 0 0 0; padding: 5px 30px 31px 20px; }
to
#content .storycontent { background: url(img/csbbody-l.gif) repeat-y bottom left; margin: 0 0 0 0; padding: 5px 30px 31px 20px; }
Step 5:
In style.css, change:#content .post{ background: url(img/csbbody-r.gif) no-repeat bottom right; font-size: 100%; width: 100%; color: #4F402A; margin: 0 0 0 0; }
to
#content .post{ background: url(img/csbbody-r.gif) repeat-y bottom right; font-size: 100%; width: 100%; color: #4F402A; margin: 0 0 0 0; }
Step 5:
In style.css, add:#content .bottomright{ background: url(img/csbbottom-r.gif) no-repeat bottom right; font-size: 100%; width: 100%; color: #4F402A; margin: 0 0 0 0; } #content .bottomleft{ background: url(img/csbbottom-l.gif) repeat-y bottom left; margin: 0 0 0 0; padding: 5px 30px 31px 20px; }
(this can be added anywhere; I put it at the end of the section with all the other content styling)
Step 6:
In index.php, add the following after <!– end STORYCONTENT –><div class="bottomright"> <div class="bottomleft"> </div> </div>
Forum: Themes and Templates
In reply to: Rounded V2 purple edition – can’t handle long postsThanks. I also had to make the following change:
#content .post{ background: url(img/csbbody-r.gif) no-repeat bottom right; font-size: 100%; width: 100%; color: #4F402A; margin: 0 0 0 0; }
to:
#content .post{ background: url(img/csbbody-r.gif) repeat-y bottom right; font-size: 100%; width: 100%; color: #4F402A; margin: 0 0 0 0; }
The problem is the background image includes part of the rounded corners, so I think I need to do some more tweaking to the theme.
Forum: Themes and Templates
In reply to: Rounded V2 purple edition – can’t handle long postsFor me, that page looks like this:
https://blog.juliannayau.com/images/theme.jpgForum: Plugins
In reply to: one daily post from external RSS feed?I’m looking for a similar plugin which can do that for my Ma.gnolia links. Have you any luck finding this magical plugin?
Forum: Plugins
In reply to: wp-chgfontsize: finding the right DIV Base ElementAfter playing around with the CSS files, I found the solution.
In style.css, search for the following:
.thecontent{ width: 70%; float: left; }
Add the following after it:
.thecontent p{ font-size: 1.2em; }
The element can then be set to “content” and the post text will change with the rest of the text on the page.