Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Exclusive] Fatal Error MenuGreat! 🙂
FYI on the removing of plugins, best to only ever use what you actually need. Using more just because you can will often lead to a slower website, timeout and memory issues.
If the plugins you removed were not many and small ones (and even with larger ones) then it would still be wise to increase the memory, concurrent users will use more memory and if you found the tipping point easily then it’s probably not far off happening again.
The P3 plugin can help see what other plugins are hogging your resources 🙂
https://ww.wp.xz.cn/plugins/p3-profiler/
Take care.
Forum: Themes and Templates
In reply to: Theme Issue – White BarExcellent 🙂
As a matter of interest do you know if there is a way to change the format of the images for the mobile site to the grid format just as you view it on a PC/ full site?
Looking at the site on my iPhone it seems like it’s intended to be responsive so that you can clearly see the images, it then has navigation to flip to the others. If you were to make it a grid it could make the images hard to see as they’d be much smaller or you’d have to move around the screen.
If you really want to do this then you’d need to look at the following CSS onwards:
@media only screen and (max-width: 480px) {Looks like it might take a few edits.
Or if there is way to palace a faded banner across the website for .png images/logos for corporate sponsors?
It depends on if you just wanting to target mobile browsers or any, and also if you’re wanting to automate it somehow because there might be a plugin for that. Or you could painfully and manually add one banner and change it each time when needed.
I went to look at which theme you’re using so I could download and give some pointers whilst also looking at the slider however I note you’re using a premium theme:
http://themeforest.net/item/sentinell-responsive-wordpress-theme/3314808
I didn’t realise before but this unfortunately limits the support we can give here, you’d need to contact the author as per the forum rules:
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
Sorry about that. 🙁
Take care.
Forum: Themes and Templates
In reply to: [Exclusive] Fatal Error MenuHey there,
In most hosting environments you won’t have access to the main php.ini, but some will let you create your own to override defaults.
If you have root access you should be able to edit it, else you’d have to create it. If it doesn’t take affect then it’s probably not applicable to your hosting environment.
As I mentioned if you get stuck then your host will be the best one to chat with on this because they know your set up the most intimately. 🙂
For the menu, it seems like maybe this is added direct in the header rather than through a CSS file so maybe your theme has some options to change the background colour. You should maybe check those first.
This is the CSS you’d use if you were adding it manually:
#top-nav-list > li ul, .top-nav-list > ul > li ul { background: #022433; }I think looking at the head though that if you add this to a css file that will be loaded before and so it might not take affect. If that’s the case you would either need to edit the original (not advised) or use !important like this:
#top-nav-list > li ul, .top-nav-list > ul > li ul { background: #022433 !important; }There is a chance that the theme has a CSS field in the options, if not then you can make a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: [Clean Black] How to hide author and date from post.That’s excellent, I’m glad you got this. 🙂
Have a great weekend! 🙂
Forum: Themes and Templates
In reply to: [Fruitful] Sidebar width.You’re most welcome 🙂
Take care.
Forum: Themes and Templates
In reply to: [Fruitful] Remove text wrapThat’s awesome, but I want some waffles!!! 🙂
I suspect by the time they get from Oregon to the UK they might be a little cold, and not so tasty. If you manage to make it to WordCamp Europe I’ll happily accept them there. ha ha 🙂
I suspect something was overruling the first one, the second was just more specific. 🙂
Have a great weekend!
Forum: Themes and Templates
In reply to: [Fruitful] Remove text wrapThanks, really angry you didn’t pre-warn me though!!!!!
Now I want waffles! :-/
ha ha
Something like this should work:
p { display: inline-block; }This is very broad and will affect all paragraphs. You could be a little more specific and target the paragraphs of only post content like this:
.post-content p { display: inline-block; }Hope this helps.
Take care.
Forum: Themes and Templates
In reply to: [MesoColumn] Remove "Advertisement" title from banner ads widgetHey again,
You can use this:
#sponsorbox .widget-title{display:none;}Take care.
Forum: Themes and Templates
In reply to: Dedicated Post Page Not there?Excellent, I’m just happy you’re sorted out.
Impatience isn’t always a bad thing where it pushes you to do something, I can be the same. 🙂
Have a great weekend!! 🙂
Forum: Themes and Templates
In reply to: [Virtue] Slow Site Load SpeedHey there,
Well, not sure that’s the actual cause of the slow down but the error is saying it’s missing one of it’s args.
I note that the theme you’re using where this error comes from is actually the /virtue_premium/ as such you need to contact the author via his/her premium channels. As per the forum rules we can’t support commercial products on here:
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
Just quickly though, I loaded your site and I can tell you that running 3 slider plugins certainly won’t help with your load time:
– Cyclone Slider Pro
– Kadence Slider
– RevsliderYou should deactivate the ones you’re not using to help speed your site up. Basically the more code you run, the more memory you need along with processing power.
Forum: Themes and Templates
In reply to: [MesoColumn] Remove "Advertisement" title from banner ads widgetHey there,
I don’t see a widget with the title of “Advertisement” on the demo site.
If you could please link me to your site where this occurs I should be able to assist.
Take care.
Forum: Themes and Templates
In reply to: [Fruitful] Sidebar width.Hey there,
You could perhaps use some CSS like this:
.container .five.columns { width: 180px; }I took 100px off there, so I then add it here:
.container .eleven.columns { width: 740px; }And here:
.eleven.columns .blog_post .post-content { width: 684px; }This should hopefully sort you out. The theme author may also have another (or better) suggestion. 🙂
If you need any further help then please do let me know.
Forum: Themes and Templates
In reply to: [MesoColumn] What's Wrong with My Entry Date?Hey there,
Do you refer to the question mark that appears as you hover over the date?
The date tag is actually an abbr one, this actually used for abbreviations. You can use the following CSS to turn it off:
abbr, acronym, dfn { cursor: none; }I think perhaps they should actually be using the html time tag instead as the time/date is not an abbreviation.
Take care.
Forum: Themes and Templates
In reply to: [Eighties] Child theme broken in FirefoxHey there,
Could you please go edit your child theme style.css from:
@import url(“../eighties/style.css");To:
@import url("../eighties/style.css");Note the issue with the first quotation mark there.
This should fix you up.
Take care.
Forum: Themes and Templates
In reply to: Moving theme logoHey there,
The png image itself is pretty large and with lots of blank space, it’s that which is pushing the text down. It would be better to fix the image really.
Another option would be to set a negative margin on the top there, you could that with:
p#slogan { margin-top:-45px; }Hope this helps.
Take care.