DogsGhost
-
inserting rel and title attr into anchor tags
Yep, that's working. I figured I had to assign the variable as you did but just wasn't sure where to work it in. Thanks for the help.
-
WP help: exclude a specific page's children from nav
49 is the page id, I think my using of # in the context I did to mean number as opposed to id was misleading. Saying 'exclude=49' is not what I want though, 49 has a bunch of children pages, and I want to exclude those while keeping 49, a…
-
Need some suggestions.
saying 'I need webpage' reminds me of good ole 'I can has cheezburger?'
-
css box shadow not working
you have too many numbers in the value of your box-shadow property. Also your navigation is in a paragraph tag...
-
Need some suggestions.
Definitely support all the points Chris B has mentioned. Its awkward that the whole square for each navigation tab isn't clickable, have to click either the text or the icon within the square to get anywhere. Also the html5 logo at the bottom i…
-
Site layout troubles; Help appreciated
you can leave it empty. if you do its probably better to give it an ID of #clear or something that actually describes its purpose.
-
Site layout troubles; Help appreciated
to make the columns you have to float div.column. Then you put clear:both on div#footer. This keeps div#content_panel from collapsing. Sorry if you don't understand that, I'm bad at explaining things without using jargon, look up articles…
-
Site layout troubles; Help appreciated
I think I get what you're saying, and yes, each column needs to be its own div, quick mark-up would be something like: Tumblr Theme #1 I threw the footer div in for an easy clear on div#content_panel
-
Site layout troubles; Help appreciated
you want three columns inside div#content_panel?
-
Feedback for a newbie?
Photoshop is pretty much the industry standard, though a lot of people get turned off by the price if they don't do design or something related full-time. Adobe did just start some kind of leasing program for their software, though doesn't…
-
Special Issue with Left Align and Right Align Text on the Same Line
looks like you have you have an extra closing p tag in front of Last Update. Concerning your issue it sounds like you just want to take the styling you have for #copyright and move it to the footer, so your second paragraph is affected by that styli…
-
Critique my website please :)
Some client work pages were 404ing or not resolving. Whatever you're using to load then hide the content should be in the head as I'm seeing all the content load in and then hide itself, which doesn't look very good. If js is disable…
-
Fill Remaining Width?
give the table tag itself a set width and the td's should sort themselves out.
-
Feedback for a newbie?
Yea the screenshot definitely looks like a step in the right direction. Less is more. Also I see you have the text in your div#header commented out. Doing this prevents search engines from reading it, so you don't want to do that with content i…
-
Help me! Please! Multiple .Slidetoggle
You have to give each button and div involved a unique class or ID so so the js knows what to toggle. So it would look something like this: $(function(){ //hide everything with class of Portfolio $('.Portfolio').hide(); //toggle specifi…
-
Organic Tabs playing (CSS)-Tricks on me
Firebug tells you right away theres a js error: jQuery("input[name=for]").autocomplete is not a function - function.js.php (line 386)
-
Simplifying jQuery Mess
.bind('click', function() { can just be written as .click(function() {
-
CSS - changing multiple ID's on hover
I'm no jquery pro, but here's an example of something that works: div { width:100px; margin:5px; border:3px solid black; } .keybinds {border:3px solid red;} http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
-
[Solved] Centering a page using CSS (Wordpress)
yep, wrap the whole thing in a div so you get something like : ---all page content here ----- then in the css: #page-wrap {margin:0 auto} and its auto centered.
-
Opinions, Testing and Fixing Help
The jscode.js file looks like where the rounded corners and window resize is, and that works fine. Where's the validation script? in the jfile.js file? There's nothing in there telling it what to display for invalid fields. Its incomplete …
-
Check out our new WP site!!! Feedback please. inliquid.org
Ha so bizarre, my two-person team is starting almost the exact same project for a .org based in Michigan. Site looks great, content-focused with a modern feel. Only thing that strikes me a bit odd is the blog link having target="blank". A…
-
Opinions, Testing and Fixing Help
Strict doctype is giving those errors. Input as direct child of form is valid under Transitional doctype. I didn't get any kind of validation for the fields, just typed in gibberish and got an !alert saying it was sent, then was redirected back…
-
Wordpress plug-in to rotate background images
do you want it to choose from a set and randomly display on on page load? http://css-tricks.com/snippets/php/randomize-background-image/ or do you want the image to change while the user is viewing the page? This is also doable but sounds pretty di…
-
Please explain,i need help!
You can't find the search function? Seriously? Wordpress is a CMS. http://en.wikipedia.org/wiki/Web_content_management_system case closed.
-
Contact Form from CSS Tricks wont work
oh, godaddy hosting.... yep, you have to direct forms through one of their specified mailer php files located in the site's root directory.
-
IE7 not registering some links (works on others, though)???
if you're coding under doctype xhtml 1.0 transitional, wrapping a div in an anchor tag is invalid coding. Browsers above ie7 may render the link correctly, but the code is incorrect. A simple code validation would have caught this for you very …
-
Contact Form from CSS Tricks wont work
Possibly because your form has an input named City, but its never mentioned in the contactengine.php file. Likewise the contactengine.php file is looking for a value from a input named Tel, but none exists in your form.
-
Style options drop down menu (in a form) using only CSS?
Even though browsers have their own default renderings for them, form tags like label, select, input, and option can be targeted and styled successfully with css. If you want fluid width with background images, yes you use one of the many solutions …
-
Html5/Css3 Tutorial
He's got a couple psd to html videos posted. Partner those with the video mshort mentioned as well as #57: Using CSS3 and you're good to go.