Support Forum

I NEED HELP FOR MY NEW WEBSITE

22 Answers

New Answer

IK Ike
Ike
Member

Hey Seth,

Inspecting your footer it looks as though the class ‘.footer-widgets’ currently has a white background, so the logical thing to do would be to change that to #222222 (the same as your nav bar). You would then need to change the text to a lighter colour, and while most of the text is controlled by the footer-widgets class, the titles are controlled by ‘.footer-widgets .widget-title’.

So, assuming you have a child theme of your WordPress theme in place or are making changes to some kind of additional CSS box your WP theme might offer, or you are just going to add the changes to the end of your themes style.css – You would need to add something like this:

.footer-widgets {
    color: #FFFFFF;
    background: #222222;
}

.footer-widgets .widget-title {
    color: #FFFFFF;
}

For any further help, for example with child themes or where to add these changes it does vary from theme to theme so you would need to contact the theme developer, as Andy has pointed out the WP theme is not something we can really offer the same level of support on as we do for Simple:Press itself.

Hope that helps!

SE Seth
Seth
Member

Thanks Ike but i think the above suggestion didn’t work for my theme generatepress but the theme developer. The theme developer selling an add-on that support such. i thought i could get a cool method to alter that by editing style.sheet

SE Seth
Seth
Member

I’m sorry that i have so many question.

i actually need help in getting a contact us codes that i can easily paste to the writeup space after i had created the contact us page at the menu bar.

Thanks

YS Yellow Swordfish
Yellow Swordfish
Member

I checked Ike’s solution above and it definitely works for your theme. So if you added it to the styles.css file of your WordPress theme just check you added it at the END of the file and not the start. And also double check your typing as it has to be exact.

As to contacts then you will need to find a contact plugin in the WordPress plugin repository. We really do need to concentrate on Simple:Press related support questions here as much as possible if you can.

SE Seth
Seth
Member

Yea.

Thank you sir.

It’s works

Strictly simplepress theme Now

SE Seth
Seth
Member

Thanks for all your support.

I think i am cool with the theme i’m using now but when i want to post to any forum created, i didn’t see menu bar at the top of the posting box, such as bold icon, italics icon, justification, centralization upload etc and also at the bottom, nothing show like smileys,options, attachment, preview etc as its here in simple press forum. only the smileys that line up horizontally.

Also, how do one include links in a post? i am using reboot theme.

Please what do i do?

IK Ike
Ike
Member

Sounds like you don’t have the right plugins installed. We run most of the post related plugins here as not only are they useful but also it’s a good demo for people.

The editor we use here is the TinyMCE plugin, which gives you the buttons across the top, however upload is not a part of the TinyMCE, instead you have insert image which allows you to use a URL for the source. For uploads you’d be looking at the File Uploader with Plupload.

Preview is from the Post Preview plugin, and the options here speak for themselves really, you have Subscriptions and Watches which add options when replying, and Private Posts also adds an option to the menu.

What editor are you using currently? If plain text or no editor plugin, then you should be able to add links with HTML i.e

 <a href="http://www.w3schools.com">Visit W3Schools</a> 

Which in plain text editor should appear:

Visit W3Schools

Also remember that you can control this somewhat in Forum > Content Settings > Post Link Filtering panel.

Hope that helps!