stepquick
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: align Easing Slider on twenty eleven child themeThese may mess with the template a lot, I don’t know if this is the proper way, but those margins are definitely causing the information to be moved like that.
Forum: Fixing WordPress
In reply to: How to edit php and css file in wordpressWell for starters WordPress has a wonderful admin panel that allows you to edit the css and php in a simple textbox. It generally works for quick edits.
Under the Admin Panel > Appearance > Editor. This will show a list of all the files on the right sidebar for the active theme being used. The CSS for the theme will also be currently opened.
I’d say for Windows look into:Notepad++
Mac:Textwrangler
And a good universal that’s getting really popular is:Sublime Text 2
Forum: Fixing WordPress
In reply to: align Easing Slider on twenty eleven child theme.singular #content, .left-sidebar.singular #content { margin: 0 7.6%; position: relative; width: auto; } .one-column #content { margin: 0 7.6%; width: auto; }That seems these need to be removed also for it to work properly. Or you need to redo the template.
Forum: Fixing WordPress
In reply to: align Easing Slider on twenty eleven child theme#content { margin: 0 34% 0 7.6%; width: 58.4%; }that appears to be what’s causing your weirdness.
Try changing margin to
margin:0;Forum: Fixing WordPress
In reply to: hiding taglineSure thing. 😉
Forum: Fixing WordPress
In reply to: Add meta tags?<meta name="description" content="<?php bloginfo('description'); ?>" />that would be an example of using meta. It’s also under the settings panel in the admin menu. That would be where you make a description for your site, the Tagline.
Forum: Fixing WordPress
In reply to: 404 page errorYou could try Custom and use
/%post_id%/%postname%/
I’ve been told this is ok for blogs that use less amounts of pages, but if it gets too big it starts to break things.
Forum: Fixing WordPress
In reply to: Category and tags 404 errorHmm, for some reason it redirects from the category slug and uses a date instead. That’s a very odd one…
What is the permalink settings you’re currently using? Day and Name?
Forum: Fixing WordPress
In reply to: hiding taglineOh the theme editor is really easy to use. You can use the find option of your browser to find it. 😛
Forum: Fixing WordPress
In reply to: hiding taglinep#slogan { font-size: 15.5px; font-family: Georgia, serif; font-style: italic; color: #ffffff;text-shadow: 1px 1px 1px rgba(0,0,0,0.2); }This is the line you’re looking for in your main css file. Just add a simple display:none like below. That makes it so the browser doesn’t show it, but it’s still there if you’d ever want to use it.
p#slogan { font-size: 15.5px; font-family: Georgia, serif; font-style: italic; color: #ffffff;text-shadow: 1px 1px 1px rgba(0,0,0,0.2);display:none; }Now doing this will messing with the position of the photo slider.
#logo-area { float: left; margin-right: 32px; margin-top: -4px; }Add something like this maybe, margin-bottom about 20-25px:
#logo-area { float: left; margin-right: 32px; margin-top: -4px; margin-bottom:20px; }That should give decent room for the slider. Hope this helps. 🙂
Forum: Fixing WordPress
In reply to: hiding taglinewhat’s the address for your site? It would probably not be advisable to edit a theme from theme forest by editing the theme files themselves, so a css edit would be more appropriate.
Forum: Fixing WordPress
In reply to: Change […] on post excerpt to a linkThe default excerpt function works like this:
If you don’t set the excerpt by default, it uses whatever you wrote in content after 55 words giving you the […]. What you could do is possibly use the excerpt box in posts to add an excerpt and you could potentially cut down to less than 55 words to resolve that issue.
The other option you have is to make a function to do a custom excerpt length for, or change it to whatever size you’d like.
And the final option would be finding a plugin that would take care of it for you.
Personally I use the excerpt box along with content. I don’t use more than 55 words to describe what the post is about and it looks better than using the same data over on the blog.
Hope this helps. 🙂
Here’s the material for excerpts from the codex: The Excerpt
Forum: Fixing WordPress
In reply to: 404 page errorIt looks like it appears to be working. You’re using the default permalinks from the looks of it, did you want to use something else?
Forum: Fixing WordPress
In reply to: hiding taglineAre you using a theme that came with wordpress or one you found?
Hmm I’m adding this to my post about W3T… it actually just gave me a weird issue today, which I resolved already. These support forums are really irreplaceable. Thanks for the info! 🙂