dbking
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [MesoColumn] Remove Slider excerptPlease let us know what theme you’re using, and preferably provide a link so we can have a look and provide guidance from there.
Forum: Themes and Templates
In reply to: [Edin] Reducing the distance between items on the primary menuHey there,
Okay, so you can adjust that by changing the padding. Below I have highlighted the class you’ll need to adjust to change the padding between elements:
From line 3207 in your CSS:
.navigation-classic .primary-navigation .menu-primary > ul > li > a { padding: 12px 24px; border-bottom: 0; font-size: 1.125em; line-height: 1.33333em; }The padding here is currently set to top and bottom at 12px, and left and right 24px. So you’ll likely just want to reduce the left and right padding. That’ll do it.
[Moderator’s note: I put your code in code tags, please use in future, thanks!]
Forum: Themes and Templates
In reply to: [Theme: Refur] Removing header logo, page title and footerlogoGreat, glad it worked for you!
Forum: Themes and Templates
In reply to: [Theme: Refur] Removing header logo, page title and footerlogoHi cilun,
If you don’t want anything to appear in the page title, or the header logo area, there are a couple of different ways you can accomplish that. The simplest is generally to open up your CSS file, find the relevant class, and adding “display: none”. That will hide the element, even if there is a default that’s meant to display if you list nothing there.
Forum: Themes and Templates
In reply to: [Theme: Colinear] How can I make a single page full width?There you go! It’s all about being specific in the CSS.
Forum: Themes and Templates
In reply to: Why don't themes include the sample theme?Hi Rich,
While this is true of the free WordPress.org themes, If you were to choose a theme from one of the premium theme providers, they often do include the sample data – so you end up with a full-fledged site with dummy content and photos already included. So, in other words, it really depends on where you’re getting your theme from.
Also, I do agree with you that often it’s easier to learn a new platform by editing existing content, rather than starting presumably from scratch. I think if you were to start with a theme that contains sample data, you’d realize pretty quickly that WordPress is actually very user-friendly.
Forum: Themes and Templates
In reply to: [Theme: Colinear] How can I make a single page full width?Hi there,
In addition to creating the custom template, you also need to check your CSS and either edit an existing class, or create a new class, to enable the full width.
Forum: Themes and Templates
In reply to: [Sydney] php closing ?> is missingHi there,
Technically, closing php tags are only necessary when you have mixed elements – like when php that is used within an html document. If the page is pure php, then you don’t need the closing tags, and it can actually prove problematic if you do include them.
More info on this can be found in this article here:
http://lucdebrouwer.nl/why-i-dont-use-closing-php-tags/Forum: Themes and Templates
In reply to: Changing width on single.phpGreat, glad you figured it out!
Forum: Themes and Templates
In reply to: [Oria] Header imageHi Oria,
Generally the image header dimensions are set in your functions.php file. You may also need to make corresponding changes to the relevant CSS in your style.css.
Forum: Themes and Templates
In reply to: Changing width on single.phpHi cosmozara,
What you’ll want to do is make note of the CSS classes that are being applied in just the single.php template, and then you can manipulate the width by editing those classes in the CSS – in your style.css file. To see which classes are being applied, try doing “inspect element” in your browser.
Forum: Themes and Templates
In reply to: Orvis Theme, Display widgets 1st on mobileHi there,
To do something like this you’d want to use conditional statements, in addition to CSS – so that the display will vary depending on different circumstances – in this case, based on different media queries settings. Mobble is a plugin that allows for control like this. And for more info on how to accomplish this, please see this article: http://wpsites.net/web-design/conditional-tags-mobile-devices/
Forum: Themes and Templates
In reply to: Strange URLHello,
Can you be a little more specific as to what the problem is? What exactly about the URL is incorrect? In other words, what were you hoping would happen – and what’s happening instead?
Forum: Themes and Templates
In reply to: [AccessPress Lite] How to remove Entry Title from pagesHi there,
Yes, with CSS you can always target specific locations/incidences – you just need to target more specifically in your code. What you’ll want to do is “inspect element” and see what other classes apply to just the occasion of the title that you’re trying to remove – once you’ve identified a unique class for that occasion, you would call that, along with the .entry-header in order to make just that instance not display.
It would look like this:
.some-class .post-image {
display: none;
}-Darren
Forum: Installing WordPress
In reply to: Installation Failure (Directory I am installing already exist.Hi jdrunner34,
My experience with Hostgator suggests that at some point you had (or still have) something else already installed at that location. So that needs to be fully removed before you’ll be able to do a new installation. It can be tricky, because sometimes even after you’ve deleted a file via FTP, the Hostgator system might still register something as being there, and vice versa. In other words, you need to make sure you’ve both uninstalled anything that was there via the Hostgator “uninstall” feature, and double-check via FTP that nothing’s there. They should also be able to confirm what’s there if you contact them directly.