JeremyEnglert
-
Why is the sidebar hiding behind the content?
@WolfCry911 - thanks for the explanation! I ended up sticking with the overflow:hidden method and everything seems to be working great.
-
Weird Margin Issue in All Versions of IE (Including 9) - Negative Margins?
@WolfCry911 - Sorry about that, I was trying a few different things after I posted this thread. I ended up finding a fix that is less than ideal, but it is working for now. It leaves a small gap in the header on some pages, but for the most part lo…
-
Weird Margin Issue in All Versions of IE (Including 9) - Negative Margins?
I'm going to try adding a 400px height to .slider .moduletable_slider.
-
Weird Margin Issue in All Versions of IE (Including 9) - Negative Margins?
I actually didn't code this website, which is why figuring out what is going wrong is a bit of a challenge (not that my code would be any better). Part of the reason for the awkward coding is that the website is made in Joomla. The header image…
-
Please Fix Page Wrap!!!
Add overflow: hidden; to #headerbackground and #midwrapper.
-
Contact Form Broken in IE?
It was the missing # from the border causing the issues for some versions of IE - it was really hit or miss. But after adding the #, all is well. Nice catch @Paulie_D!
-
Div Acting Strange Unless Floated Left, which causes new issues
@Sgtlegend - Nice! Thanks, but @WolfCry was right about the slideshow. But instead of using clear:both, I'm just going to move the #slideshow above the #page div.
-
Need html code for fading an image on mouse hover
You need to place the code inside of a style sheet or a style tag. Google "Using CSS", look for an article from W3Schools.
-
Need help with CSS in WordPress theme
Try using a soft return between the title and the "photo by". The P tag has a margin/padding attached to it, so when the "Photo By" is it's own paragraph, it is having the margin/padding attached. To do a soft return, hold …
-
Can Someone Teach Me CSS? Please
Before anyone can really help, we need to know what you already know. Do you know HTMLmalready?
-
WordPress/Responsive Navigation Losing Color when on Child Page
@WolfCry911 - visit a child page, "Back Story" or "Our Team" for example. You'll see that the menu then loses it's color.
-
Media queries "mobile first"
@Paulie_D - Exactly. The term refers to planning for your website to take advantage of mobile phones during the design stage.
-
WordPress/Responsive Navigation Losing Color when on Child Page
@jurotek - I'll take a look at that. Someone else mentioned something very similar.
-
WordPress/Responsive Navigation Losing Color when on Child Page
@wolfcry911 - I just tried it in FF, Safari and Chrome - they all seem to be having the same issue. Were you looking at he regular navigation or the mobile one? Thanks!
-
Suggestions on a Responsive/Mobile Navigation
It's a WordPress navigation, so implementing Bootstrap may be another challenge in itself.
-
Keep Parent Item Active when Child Element is Current Page - CSS/WordPress
@wolfcry911 - Ahhh, you're right! Sorry about that, I didn't realize my code said "item" opposed to "parent." #main-nav .current_page_parent a { background: red; } Works perfectly. But now the next challenge - I …
-
View a page in different resolutions....
@Senff - That's a pretty nifty tool. Thanks!
-
Web dev apps for Mac
Sorry, it's been on my Mac so long I always assumed it came with it. It has almost all of the same features as BBedit, just easier on the wallet.
-
combine several style sheets into one
I'm not sure if I completely understand the question. If you're just trying to combine style sheets, you should just be able to copy/paste the information into one CSS file and make sure it is pointed to that style sheet in the head tag (j…
-
Is it ok that I have not had a job for a year long?
Good work is good work. They don't care if you created it for yourself or someone else. Early in your career, they aren't expecting you to have worked with hundreds of clients, they just want to see what you can do.
-
Books on CSS and IE Bugs
Finding a book on bugs is slightly counter-productive because by the time the book gets published, new bugs or bug fixes have been found. For stuff like that, the internet is truly your best resource.
-
Keep Parent Item Active when Child Element is Current Page - CSS/WordPress
Also, if you check it out in mobile (just pull your browser to 480px or less), you can see I also got each parent element to have it's own current page/active color. So big thanks for your help so far! This nav is just turning out to be a bit…
-
Keep Parent Item Active when Child Element is Current Page - CSS/WordPress
#main-nav .page-item-6.current_page_item a { background: red; } I'm making progress, before the parent element didn't even stay active when it was the current page - using the code above, I was able to have each parent have a separate…
-
Keep Parent Item Active when Child Element is Current Page - CSS/WordPress
@WolfCry911 - we're getting close. http://www.mcfaddengavender.net/newmg/services/ You can see it there, but it is only working when the parent element is chosen. I need the red background to show on the parent element even when a child elem…
-
Is it ok that I have not had a job for a year long?
A year really isn't that long, if they ask about it just tell them you were doing freelance projects but decided its time to move into a full time position. They may ask about a project, just mention something you've been working on. Rem…
-
Web dev apps for Mac
CyberDuck is awesome. Macs also come with TextWrangler which is free and a damn good editor.
-
Is it ok that I have not had a job for a year long?
You weren't unemployed, you were freelancing. Simple enough. : )
-
Moving WordPress to the root directory; how to redirect old URLs
There is a plugin called "Duplicator" that makes moving WordPress websites extremely easy. I tried it other the other day, worked flawlessly.
-
Keep Parent Item Active when Child Element is Current Page - CSS/WordPress
Thanks for your help Chris! Hopefully I'm just missing something small.