Guust
Forum Replies Created
-
Thanks 🙂
I should have posted about 6 months ago that I tried it with the Starter Zendesk and that it worked just right.
@ articulateanimals
.faq-catname {change your CCS here}@ xeroteam
Because you disabled right-clicks I cannot investigate your CSS.
But I bet if you get rid of the picture then, things will fall into place.
You could add ‘clear: none’ to your H3 CSS but you’ll probably end up with other problems.The best really is to create a child theme, see http://codex.wordpress.org/Child_Themes
And then add your new CSS lines to the style.css file of your child theme.
To see what you need to change, open your site in Chrome (or FireFox), and right-click on the title or text you want to investigate. You should then be able to figure out what CSS needs fixing.And check this out to learn more about CSS: http://www.w3schools.com/css/
Figured it out.
If you add an event for the current month, then the “page not found” will disappear from the title.
I guess when the page is generated it cannot find a post/event in the current month, so it adds the “page not found” to the title.There are some other little errors with the title tags, for example an event page title tag looks like this
“| <name of the event> | <my site name>”
See how it starts with a vertical bar “|” as if something is supposed to be in front of the vertical bar.Forum: Plugins
In reply to: [PC Custom CSS] HINT: Making live real-time on the fly theme changesOr you can use Chrome and right-click to inspect the element you want to get the CSS for.
Forum: Plugins
In reply to: [PC Custom CSS] Not working with WP MinifyHi Peter
Looks like you need to create a Child theme, then there is no need to hack anything when your theme is updated.Forum: Plugins
In reply to: [Cloudflare] multisite question againForum: Themes and Templates
In reply to: [Suffusion] widget "child pages" order_by brokenAnd if all else fails add this to your CSS:
.tab-box-right {display: none;}Forum: Themes and Templates
In reply to: [Suffusion] widget "child pages" order_by brokenTry deleting the Google Ad widget and see whether that deletes the faux widget as well. Then you have your answer.
If that is the problem, then just replace the Google Ad widget with a plain Text widget and add your code to that.Forum: Themes and Templates
In reply to: [Suffusion] widget "child pages" order_by brokenRegarding the blank widget, I haver no idea really.
It looks like you should be able to delete the first widget in your sidebar from the widgets page?Or maybe something here:
wp-admin/themes.php?page=suffusion-options-manager&tab=theme-options-sidebars-and-widgets.phpForum: Themes and Templates
In reply to: [Suffusion] widget "child pages" order_by brokenGo to
/wp-admin/nav-menus.php
You should have a menu there (menu above header) You can edit any of the links etc.
If that is not how you built your menu, then go to
/wp-admin/themes.php?page=suffusion-options-manager&tab=theme-options-visual-effects.php
and find “Pages” tab title
You should be able to choose it there (you might have to get your head around some of the other settings on that page)Forum: Themes and Templates
In reply to: [Suffusion] widget "child pages" order_by brokenIf you mean that the title of the list of child pages says Pages, then the solution is simple.
Edit the title of the widget, ie change it from[suffusion-the-post display='title']to Blog info.To style the answer is a bit trickier, because it uses the same style as all your posts.
So you would need to add a style for your standard paragraph like this:
p { font-size: 120%; }
It is best to do this in the style sheet for a child theme so you do not always have to change it every time your theme is upgraded.Please create single-qa_faqs.php in your theme folder instead of plugin folder, it will work
Mmm, does not work for me when I placed single-qa_faqs.php in my child theme folder; I had to place in in the parent them folder for it to work …
Solved how to add the biography:
<?php $key = 'description'; $single = true; $user_last = get_user_meta( (bp_displayed_user_id()), $key, $single ); echo '<p>' . $user_last . '</p>'; ?>Forum: Themes and Templates
In reply to: [Suffusion] widget "child pages" order_by brokenI tried to re-order different ways: ascending vs descending, and a few other options. And the order did NOT change, so it seems you’re right.
Can’t help you with PHP I am afraid, I’ll take your word for it.