Squidpeg9
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Border Around LabelsAnyone?
Forum: Plugins
In reply to: [WooCommerce] Incorrect Password at CheckoutAnyone?
Forum: Everything else WordPress
In reply to: Form to Chart Plugin?I take the silence as a no. Nobody has any suggestions?
Forum: Fixing WordPress
In reply to: Looking for a solutionThank you, Gabriel. I am aware this can be done, but the reports it needs to create are pie charts, graphs, etc. Not just a dumping ground for the info they get, but visually appealing graphs and such with the data they receive.
Thanks!
Forum: Fixing WordPress
In reply to: Image Caption Breaks LayoutThank you!
Forum: Fixing WordPress
In reply to: Image Caption Breaks LayoutYes. With the captions below each image.
Forum: Themes and Templates
In reply to: [Directory Starter] Popular Categories In Wrong PlacePerfect! Thanks.
Forum: Fixing WordPress
In reply to: Remove bullet points from Shortcode menuThank you guys!
.fusion-main-menu ul { list-style: none!important; }
Worked for me!
Forum: Fixing WordPress
In reply to: Menu ShortcodeDoes anyone else have any ideas on this?
Forum: Fixing WordPress
In reply to: Menu ShortcodeOk that almost did it – applied the inline and all, now just need to get rid of the bullet points. I added ‘menu_class’ => ‘fusion-menu’ and ‘menu_id’ => ‘menu-main’, but neither seems to help. Any ideas?
Forum: Fixing WordPress
In reply to: Menu ShortcodeThanks! Will try.
- This reply was modified 8 years, 1 month ago by Squidpeg9.
Forum: Fixing WordPress
In reply to: MailChimp Subscribe form text fields too smallThis sounds like a theme-specific issue. The best place to post your question is the theme’s support forum here. The theme developers will be able to provide the best support for customizing their code.
Forum: Fixing WordPress
In reply to: Plugin, hack or built in functionality?Each category has it’s own URL. When you create a button to go to a certain category, you will use the IRL of that category, and it will then show all the posts in that category.
For example, “category 1” might have the URL of https://www.yoursite.com/category/category-1. That is the URL you will use to link the button.
Forum: Fixing WordPress
In reply to: post titles show up different colour then rest of website/postThe class that seems to control this is “.et_pb_section.” You will want to change the background color there from #FFFFFF to #F9F1E5.
Forum: Fixing WordPress
In reply to: Show only certain posts on the homepageYou would want to put the posts you want to show all in a category, then use the method described here except use something like this to only include that category:
<?php query_posts($query_string . ‘&cat=3’); ?>
Replace the number 3 with whatever category number you need.