caefavsvs
Forum Replies Created
-
One fix would be to add a class to the first two widgets and use this CSS:
.your-class { height: auto !important; margin-top: 26% !important; }You’d need to remove the margin-top under the 980px media query since the layout changes. Also, when the layout changes at 980px, your third widget, needs a margin-bottom of 3% so the logo isn’t stuck under the Follow/Share dock that appears at the bottom.
Forum: Fixing WordPress
In reply to: Editing Contact AddressUnder Appearance > Widgets you should find a text widget in Footer Widget Area named Contact with the address inside.
Forum: Localhost Installs
In reply to: Unwanted dotted border around links.This border is an accessibility thing Firefox does with
outlineinstead ofborder. You can remove it with:a { outline: 0; }More info by Coyier as well as why it’s important to replace the dotted style with other accessible designs at http://css-tricks.com/removing-the-dotted-outline/
Forum: Themes and Templates
In reply to: Can't figure this out! Please help how to remove featured image!OK, the main content of your post is called with
<?php get_template_part( 'content', get_post_format() ); ?>
So you’re looking for the file: content.php, content-post.php, or something similar. That should be the file that describes your post content and contains the call for the featured image.Forum: Fixing WordPress
In reply to: How to display a posts title as an excerpt?<?php echo wp_trim_words( get_the_title(), 3 ); ?>Change the number 3 in the code to the number of words from your title that you want.Forum: Themes and Templates
In reply to: How to customize headerTo change the font-family for you h1 in the header:
your headers are styled by the CSS file atthemes/my-wooden-under-construction/media/css/setting.cssTo change the header padding:
the file../media/css/main.cssis styling the<header>element.Looks like you solved your problem? You can mark your post as resolved if so. If not, the site loads fine on my end.
Cheers.Forum: Themes and Templates
In reply to: Can't figure this out! Please help how to remove featured image!The structure of your blog posts is described in the single.php file. The featured image is called by
<?php the_post_thumbnail();?>If you find this code in the single.php file and delete it the featured image should stop displaying in your posts.Forum: Themes and Templates
In reply to: drop down menu css problemThe two submenu items in the drop down display without problem in Chrome. What browser are you using?
Forum: Themes and Templates
In reply to: A custom body class?If you want the class in the body of every page then your header.php is the best place to put it. The opening tag of your <body> and you container div should be in the header.php. If you’re trying to figure out where the class is for a specific page, figure out what file that page is using. It’s probably using the home.php file which is the file your blog uses. Look in there first, delete the class from that file, and put it in the header.php wherever makes sense.
If the class isn’t in home.php, check what Template the page is using under Page Attributes for that page and edit that template file.
Forum: Themes and Templates
In reply to: Content Recently Started loading incorrectly in chromeYour <section> with id of #header-wrapper is set to
position: fixed;change it toposition: relative;or just delete that line altogether along with the z-index.Forum: Themes and Templates
In reply to: home.php and blog conflictYour blog is supposed use home.php and whatever page you set your blog to appear at will simply use home.php to populate that page. Think of “your blog” and home.php as being the same thing. It doesn’t really make sense to want you blog to be a static page you created. So even if you include some content in a page your created, if you set that page as your site’s blog, your blog will show up there and not the content you created.
home.php will show up at the home page unless you specify a different page to be the home page.
Forum: Fixing WordPress
In reply to: HTML not showing in themed pageThe height for the div with class .ch-item is set to 0px and everything contained therein is invisible . Change it to whatever size height you need to view your content and it should work.
Forum: Fixing WordPress
In reply to: Menu items customizationIt might help to get a better idea of exactly what you’re after. If you want the menu closer to the banner horizontally then change the
float: right;tofloat: none;orfloat: left;on the #header #navigation selector and the menu goes as far left as the banner image.On that note, you’re limited in how close the menu can be to the banner because you’re using an image for the words, GiftsInstant. If you remove the image and use text instead it will be much easier to manipulate things and your site will load faster as well.
Forum: Fixing WordPress
In reply to: Where is the Plugins menu?A common reason for this problem is that wordpress.com blogs don’t have the plugins tab, just some pre-included plugins. Are you a .org or .com user? If .com, the only solution is to switch to a self-hosted blog.