Michael Smith
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Syntax Question Post id vs Page idThanks for the help, both of you.
Forum: Themes and Templates
In reply to: Syntax Question Post id vs Page idhmm…
so i tried
.post-13 #site-description { display:none; }and
.postid-13 #site-description { display:none; }and nothing changed.. any ideas?
Here is a link to site in case it helps
http://settlein.michaelsmithcreative.com/portfolio/Forum: Themes and Templates
In reply to: [Travel Lite] how do i de activate the comment sectionThis post is old enough that you should probably start a new thread… but since I was in my email right now here is the answer.
Make sure you have disabled comments as described above AND (this is part that always got me) if you have posts or pages that were created BEFORE you changed that setting you will need to disable comment on the page itself.
Go to posts and select “quick edit” for the post that still has comments showing. in the menu that opens look for a check bock that says “allow Comments” Make sure that box is unchecked. You will need to do this for every post or page that is currently created if you want to disable comments across all posts and pages. I suggest looking at bulk changes if you have a lot.
Forum: Reviews
In reply to: [Hathor] Cannot create child themesThanks for the work around, but I have decided to use a different theme that works without the need to take an extra step to implement the child.
Forum: Themes and Templates
In reply to: [Hathor] Cannot create child themeI have the same issue with the hathor theme. Created a child using 2 different plugins (including Orbisius Child Theme Creator)and ftp.
Looks like hathor is a poorly developed theme…
Forum: Themes and Templates
In reply to: [Suits] Responsive header not workingI test everything in the same theme your using before i send you the code. I even test it on your site using the firebug extension in firefox so i know the code works and doesn’t have any odd side effects.
Have you enabled any other features or made any other changes? Perhaps adding a search function to the nav bar? It looks like you nav bar is extra tall because there is some kind of invisible search form below all the other links.
To get the site back the way it was prior to adding the clickable header all you need to do is use the same html and css listed in this thread when we got it looking the way you want. Of course if you have made changes i don’t know about then in that case what worked before may not work now.
Forum: Themes and Templates
In reply to: [Suits] Responsive header not workingThe menu issue is separate from the header. You may want to open a new thread to get some help with that.
Forum: Themes and Templates
In reply to: [Suits] Responsive header not workingIt probably has something to do with the the background header image hiding somewhere on your site. Try replacing the the current #headImage rule with the following.
#headImage { display: block; float: none; margin: 0 auto; text-align: center; width: 100%; background-color: #000; }Forum: Themes and Templates
In reply to: [Suits] Responsive header not workingRemember the snippit of code we put in your header.php file. Remove it and replace it with the following.
<div id="headImage"> <a href="http://www.oliviaontheriviera.com/"><img src="http://www.oliviaontheriviera.com/wp-content/uploads/2014/06/oliviaontheriviera-header-180x12001.jpg" alt="oliviaontheriviera-header-180x1200.jpg" width="1200" height="180" class="alignnone size-full wp-image-26"></a> </div>The update just adds the “a href” html to make the header a link. You dont need to update your CSS.
Forum: Themes and Templates
In reply to: [Stargazer] change header colorThat’s the wrong css file. Remove it from the admin-custom-header.css and put in styles.css
You should be aware that code is specific to david’s site and theme so i dont know what will happen for you.
Forum: Themes and Templates
In reply to: [AccessPress Lite] Sidebar titles from toHello Susanna,
This may be a simple fix, but it would really help if you could post a link to your site so i could take a look.
Forum: Themes and Templates
In reply to: [D5 Design] Menu background in responsiveHello Man Sphere.
Looks like the theme was designed to use a clear background for the nav bar, an odd choice in my opinion, but it can be fixed!
Copy the code below into the end of your styles.css file. (Note: you should be using a child theme or a custom css plugin to hold all of your custom CSS. It will protect your custom work from future theme updates.)
If the works correctly the full size page will be normal and the mobile sizes will have the same peachy color the rest of your site has.
@media (max-width: 600px) { #design-main-menu ul { background-color: #ffe8ca; list-style: none outside none; margin: 20px 0 0; width: 100%; } }Give it a shot and let me know if it works.
Forum: Themes and Templates
In reply to: [Suits] Responsive header not workingYour welcome. Good luck
Forum: Themes and Templates
In reply to: [Suits] Responsive header not workingYup, i know exactly where that is from. The white line is part of the actual image file. there is no way to remove it without replacing the header.
use the link below to download a fixed header 🙂
https://www.dropbox.com/s/ckump8gy5b2smd3/oliviaontheriviera-header-180×1200.jpg
You will need to upload this new image to your media library, then replace the “http://www.oliviaontheriviera.com/wp-content/uploads/2014/06/oliviaontheriviera-header-180×1200.jpg” line of code from the headImage div we put in your header.php file with whatever the new link is.
Forum: Themes and Templates
In reply to: [Suits] Responsive header not workingLets try this make sure all the header and or background images in both the parent and child are off. I still see the background image. If they are off then replace the custom css i had you install with the following.
It basically the same thing i have had you put in place before but i added !important to the end of a couple of the important lines to give the changes a higher priority.
#headImage { display: block; float: none; margin: 0 auto; text-align: center; width: 100%; } .site-header { background: url("#") no-repeat scroll center top #000 !important; } .site-header .home-link { display: block; margin: 0 auto; max-width: 100%; min-height: 0px !important; text-align: center; text-decoration: none; width: 100%; }