Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Unite] Unite Theme Menu option crashingHey there,
Did you go check your servers error log as the message mentioned?
That should let you know the track down the issue that causes this.
You could also try WP_DEBUG, to output the WordPress debugging information you can open your wp-config.php file and change:
define('WP_DEBUG', false);To:
define('WP_DEBUG', true);You can also have these errors output to a debug.log file located in your /wp-content/ folder, to do this add the following to your wp-config.php file:
define('WP_DEBUG_LOG', true);Using WP_DEBUG would put the errors on the site, you can hide those and just have them out put the WP_DEBUG_LOG (if set to true) by using this as well:
define('WP_DEBUG_DISPLAY', false);Let me know what you find.
Take care.
Forum: Themes and Templates
In reply to: How to change bg colors in Finale themeHey again,
Looks like that’s the main body which controls that:
body { background-color: #000; }As you see here:
http://monosnap.com/image/Eirz2dfpGQnjF52d58FqoRsPsULBOZ
change the colour as needed:
Take care.
Forum: Themes and Templates
In reply to: Esplande Sidebar Title AreaHey there,
It should work as you can see here:
http://monosnap.com/image/yfcRVaJZI9FUbkyYQ4U12mR01hzrSS
That was done with developer tools. I suspect you’re not loading the CSS late enough in the load sequence so that some other CSS is taking priority.
Were are you adding this?
You could try using !important, it’s a last chance saloon type solution:
.widget-title{background-color:#000 !important; padding: 3px !important;}You can read more about the use of !important here:
http://www.smashingmagazine.com/2010/11/02/the-important-css-declaration-how-and-when-to-use-it/
Take care.
Forum: Themes and Templates
In reply to: Remove White Space Left by Removal of Category Archive TitleHey there,
You don’t have to use px on 0, it’s not needed. 0px = 0em = 0% = 0pt = 0.
I suspect you didn’t load it late enough in the load sequence, you see with CSS the last item called is the one that takes priority unless it’s taken out of order with !important.
I tested my CSS (with your .archive-header) through developer tools before providing it you and it was working fine.
Glad you got this resolved.
Forum: Themes and Templates
In reply to: Sidebar on the bottom not on the rightHey there,
I see some changes on your site since my original response, the CSS I provided did this and I tested through developer tools.
Looking today you can use this:
#primary{float: left; width:50%;} #content{width:100%}It will look as this does:
http://monosnap.com/image/fsGDRtntVQ2F0P7rALuMCyKGKISQag
Take care.
Forum: Themes and Templates
In reply to: Sidebar on the bottom not on the rightHey there,
I’m suggesting you use it with the current setup.
If you look at the pages the two sections use col1 and col2 classes to align them next to each other within the-content container:
http://monosnap.com/image/l0XAxzpsegFvTS0eDiITXCmxjUZnux
You’ll see these are in the primary, there is no sidebar there.
Your blog doesn’t, this uses primary and sidebar:
http://monosnap.com/image/0jWHzofUFL1W0R15uhXx826oIQCq9p
This is why they align differently.
Take care.
Forum: Themes and Templates
In reply to: Decrease Space Between Widget Title and WidgetHey there,
Something like this should help:
.primary-sidebar .widget .widget-title {margin-bottom:2px;}Hope this helps.
Take care.
Forum: Themes and Templates
In reply to: Esplande Sidebar Title AreaHey there,
Not sure what you tried but this should do it:
.widget-title{background-color:#000; padding: 3px;}That also adds some padding so that the words are not flush against the edge.
You can find a list of hex codes here:
Hope this helps, have a great day!
Forum: Themes and Templates
In reply to: Remove White Space Left by Removal of Category Archive TitleHey there,
You could simply remove the padding, this should make it flush along the top:
.content-area, .content-sidebar{padding-top:0;}Hope this helps, have a great day!
Forum: Themes and Templates
In reply to: Date and TitleHey again,
that’s great to hear! 🙂
For the background, just adjust the original CSS I gave for .post-info to this:
.post-info { margin-bottom: 35px; width: 100%; background: none; }That should sort you out 🙂
Have a great day!
Forum: Themes and Templates
In reply to: [Virtue] How to remove codeExcellent, glad I could help 🙂
Forum: Themes and Templates
In reply to: Date and TitleHey there,
You could do something like push the margin down on the .post-info and then set the width wider so that it’s not all cramped up:
.post-info { margin-bottom: 35px; width: 100%; }Not sure if you wanted the background colour removed so I left it there.
To remove the margin on the title:
.post h1, .post h2{margin-left:0;}Take care.
Forum: Themes and Templates
In reply to: [Virtue] How to remove codeHey there,
CSS can’t remove PHP code, it had the display output but the code is still run.
This theme has some in post options regarding how header of the post will display.
http://monosnap.com/image/IHB2J9exYFjp6IYMD1sqMCOY1rx2EN
I then took a look at the code for single.php and /templates/content-single.php but I don’t see what you posted. You are using the Virtue theme right?
Or maybe I’m missing it?
Take care.
Forum: Themes and Templates
In reply to: [Hueman] Center Site Title, Page Title, and Nav MenuHey there.
Site title:
.site-title { float:none; text-align:center }Page title:
.page-title h2 { text-align:center; }For the nav:
#nav-topbar .nav { text-align: center; }Combined you could do something like this:
.site-title, #nav-topbar .nav, .page-title h2 {float:none; text-align:center; }Hope this helps.
Take care.
Forum: Themes and Templates
In reply to: Sidebar on the bottom not on the rightHey there,
You’ll probably want to change some of the span classes and use them as intended rather than this, but you could do:
#primary{float: left; width:76%;} #content{width:90%} #secondary{float:left;}Hope this helps.