Beefstick
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Problems after updating!!! GraphicsI personally don’t see the issues that are shown in your screenshots when I visit your site. If you are no longer having this problem please mark this thread [resolved].
Forum: Themes and Templates
In reply to: [Hueman] All posts featured size?Its a child theme of Hueman that’s been customized.
Forum: Fixing WordPress
In reply to: How to change the text color for an entire websiteThis is the code I get from your themes style sheet,
body { /* override in appearance > background screen */ font-size: 14px; color: #333; line-height: 170%; }
Changing the color value in the above code should change the paragraph text color.
This is what a grabbed from your style sheet for heading text,
h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { padding:0 0 30px 0; text-decoration: none; color: #fff; }
I added the color: #fff; code. I’ve done this by using Chrome dev tools while visiting your site and changes made effected the color of the text on your site. If you are still having issue with text color you might wanna contact the developer(offers free support} of your theme, as it is not a www.ads-software.com theme no support is given here.
Forum: Themes and Templates
In reply to: [Hueman] Is Hueman compatible with WP 4.0?I upgraded to 4.0 running Hueman and have yet to come across any issues with compatibility.
Forum: Fixing WordPress
In reply to: How to change the text color for an entire websiteTry this,
body { color: #fff; }
and this,
.entry h1,.entry h2,.entry h3,.entry h4,.entry h5,.entry h6 { color: #fff; }
Forum: Themes and Templates
In reply to: [Hueman] How to change the Top Bar /Menu text color@dg,
The “>” is a css combinator <– google it for more info. Yes the comma is used to separate multiple items with the same style.
You should be able to change the background color of your menu in your themes options panel under styling > topbar background. but….if you really want this bit of code should work,
#nav-topbar.nav-container { background: #247db5; }
Forum: Themes and Templates
In reply to: [Hueman] How to change the Top Bar /Menu text color@dg this might work for you,
#nav-topbar .nav li a { color: #247db5; }
or, depending on what menu you are using,
#nav-header .nav li a { color: #247db5; }
and of course you can use whatever color you want.
Forum: Themes and Templates
In reply to: [Hueman] Changing font colors – Menus; links; text overall@dg Sorry, I don’t know why I assumed you were male I don’t usually make assumptions.
Thank you, I really enjoy helping out when I can.
Forum: Themes and Templates
In reply to: [Hueman] Displaying number of 'likes' and social share buttonsIf you want the options you are asking about you will need to download the theme version found here. Social sharing is not available in the www.ads-software.com version.
Forum: Themes and Templates
In reply to: [Hueman] twin columns in primary sidebarNo problem glad I can help.
Forum: Themes and Templates
In reply to: [Hueman] Changing font colors – Menus; links; text overall@dg When you create a form using CF7 it gives you a little code(short-code) that you can use to paste forms all over your site if you want.
Yes you should be able to also change the font color the same way just make sure when your using hex values you add the “#” sign before the number, you could also do a combo of both font weight and color,
body { font-color: #247db5; font-weight: 400; }
As far as the background color for your drop down I have never actually used the word “red” to change the color of anything I use either hex values or RGB, not sure if this makes a difference or not but its worth a try to use either of the two I mentioned.
@canwoodchuck you might find some useful info here. Also jetpack comes with a custom css editor if you would rather go that route but it is good practice to create a child theme when editing theme files.
@andrew I think he might be worried that posting external links could be a forum violation, I could be wrong.
Forum: Themes and Templates
In reply to: [Hueman] Changing font colors – Menus; links; text overall1. Disable and/or delete the contact form 7 plugin, remove all leftover short-codes you may have added to any pages. Jetpack has a simple contact form that seems to work well with Hueman
2. To change the font weight, which will make your font darker without changing the color, just add this to your custom css or child themes style sheet:
body { font-weight: 400; }
change the number to whatever fits your need, the higher the number the darker the font.
3. The color of your drop down background should be inherited from your menus background color. Could you post a link to the code Alex gave you or could you post the code you used here?
Forum: Themes and Templates
In reply to: [Hueman] twin columns in primary sidebarUse the alx tabs widget, by default this will have four tabs visible but you can enable/disable the tabs of your choice by changing the settings within the widget.
Forum: Themes and Templates
In reply to: [Hueman] Search icon dissapearedIn child theme css or custom css plugin add this,
.toggle-search { color: #number; }
where “number” is add the hex color value of your choice.
Forum: Themes and Templates
In reply to: [Hueman] 2 simple questions#2 is the featured post slider you can activate it in your themes options panel under blog by setting the featured post count and the featured category.