JamesEMCS
Forum Replies Created
-
Hi @takanakui
`html, body {
overflow-x: hidden;
}`Fixed it! Thank you ??
The theme is HappenStance. Version: 2.0.9. The theme itself isn’t bad; it’s just what the owners of the site have forced me to do to it!!
Just to add. Using the Right Menu does not cause this to happen
Forum: Plugins
In reply to: [SP Project & Document Manager] Broken Project Folder LinksActually “SmartyPants” – forget it!!
This plugin fails every time an update is installed to either WordPress or to the Document Manager Plugin itself. Going through all the previous support requests (when the plugin removes download links – yes it’s that common!) the general attitude of SmartyPants seems to be – buy first, support later.
Now… Because I wasn’t born yesterday – I’m not buying your plugin. It doesn’t work! Why should I pay for nothing?? It would make more sense to set fire to my bank, at least I’d actually get something out of it – a prison sentence!
Forum: Plugins
In reply to: [SP Project & Document Manager] Broken Project Folder LinksI’ve deleted the files and re-uploaded them and still the same bug occurs. I can’t help but notice the plugin updated itself about 14 hours ago. Did the developers test it properly before rolling it out?? And how do I go about rolling it back to the version that actually worked?
Hi Nate.
Thank you for the link. It does help a lot meaning that updates wont break my changes. And so I can find where the <h3> titles are being echoed.
So my function (in menu-section.php) looks like this;
if (strpos($this->title, "Starters") !== false) { echo substr($this->title, -8); } elseif (strpos($this->title, "Main") !== false) { echo substr($this->title, -4); } elseif (strpos($this->title, "Dessert") !== flase) { echo substr($this->title, -7); }
And displays exactly how I expected.
Thank you for your help!
Hi Nate,
I haven’t seen the templating system and the link you’ve provided takes me to a news page. I’m not sure where to go from there.
As I said; a complex system. The Menus I’m creating are separated into dates for when they’ll be available. I’m after 3 sections per menu (Starters, Main & Dessert). The long string of dates is so I can add the sections to the correct menu because if I have just one section with all the different dated menus in; they wont be broken down into the correct dates.
Hope that makes sense!Forum: Themes and Templates
In reply to: [Customizr] entypo.eot 404 ErrorHi @nikeo
I first got the problem after installing Customizr and activating the SEO Ultimate plugin, any page that was/is hit after that moment will throw this 404 error.
I have been going through the css sheets and I can only find one place where entypo.eot is called in the settings I’m using. However, it is commented out (black.css line 5050)
@font-face { font-family: 'entypo'; src: url( 'fonts/fonts/entypo.eot' ); src: url( 'fonts/fonts/entypo.eot?#iefix' ) format( 'embedded-opentype' ), url( 'fonts/fonts/entypo.woff' ) format( 'woff' ), url( 'fonts/fonts/entypo.ttf' ) format( 'truetype' ), url( 'fonts/fonts/entypo.svg#genericonsregular' ) format( 'svg' ); }
By the looks of the 404 error I’m getting – the client machines are not seeing the last ‘ after the first src:url and are treating it as one long line, but at the same time are ignoring the fact that this has been commented out. Is there a need for it to be there? I haven’t tried deleting this part in case it is used somewhere in the system.
Forum: Themes and Templates
In reply to: [Customizr] entypo.eot 404 ErrorI’m still stuck. I’ve just told SEO Ultimate to stop monitoring 404 errors as that’s the only 404 I ever seem to be getting. I can’t get a file missing error in a web browser console window so it seems to be a discrete error.
And to be really honest – I posted this over a month ago and have received no help so my honest guess is that the developers don’t care. Be sure this is the only site I’ll ever use Customizr on!
Well… After all this support I’ve fixed the issue myself!
In case anybody else has this trouble; this is the fix;
body { max-width: 1135px; /* The max-width of your body content */ } .tc-no-sticky-header .logo-centered .navbar-wrapper { float: left; width: 100%; }
… AND
.tc-no-sticky-header .logo-centered .navbar-wrapper { float: none; }
Changing this to left with the above width being 100% will fix the issue on a small screen, but shift the bar to the left (as would be expected) on the larger screen.
This seems to me to be quite a big bug in the Customizr theme, and after nearly 3 days nobody seems to want to help.
Is there no fix for this issue?
I think a series of @media queries would fix it, but to what sizes and elements?I’ve narrowed it down to the following code in the “black.css” file
.row-fluid .span9 { width: 74.46808511%; *width: 74.41489362%; }
Changing this width to 100% fixes the issue on the small screen but moves the sidebar to the right on a larger screen. Is there a way I can make the element to stay inline with the header image?