GazNicki
Members
-
Joined
-
Last visited
Reputation Activity
-
You need to add a 'margin' that accords to your layout. Add:
#box {
margin: 0 auto 0 auto;
}
or
#box {
margin: 0 20% 0 20%;
}
This works with all browsers.
Visit creativeshelf.co.uk for more tutorials and tips.
-
GazNicki reacted to .eXist in Stopping divs from moving when window is resized?If you use percent for your wrapper width, but used fixed for the other divs only your wrapper will adjust it size. This will cause your other divs to move within the wrapper itself when the page is resized.
-
Use % based values for widths?
-
GazNicki reacted to asek in Vendor Specific TagsFor rounded corners use border-radius. Opera, Safar 5+ and Chrome 5+ and IE9 support it. The next version of Firefox will also support it. It makes sense to add it in now for the future
-
GazNicki reacted to BlueDreamer in Vendor Specific TagsThere's no way to validate them against W3C specs or igonore them in the validation report.
My advice - don't worry about them not validating
-
GazNicki reacted to Wickham in Vendor Specific TagsThe short answer is No, I think.
I have seen these vendor specific tags described as temporary. When HTML5 and CSS3 become officially released and browsers know exactly what standards they have to meet, the -moz- etc. part will not be necessary.
Browsers are at present guessing what coding and standards they need for HTML5 and CSS3 as the standards are still being modified.
http://msdn.microsoft.com/en-us/library/cc351024%28VS.85%29.aspx says
"Note It is important to remember that many CSS3 modules are still in the Working Draft or Last Call stages. Until they reach the Candidate Recommendation stage, they could change significantly. For more information, see the latest CSS3 draft modules."
-
GazNicki reacted to zed in Can something be done about the spam?it's getting ridiculous now. I don't mind helping people out etc but if the recent topics/posts are going to be full of spamming or SEO nonsense then I'm not going to have much desire to go looking for genuine threads.
Every morning we're getting some *insert expletive* spamming the boards with copies of previous posts, opening up really old threads to spout nonsense or the bleeding obvious or trying to promote their SEO company in some 'clever' way.
-
GazNicki reacted to mteam in Javascript not validatingyou could save your script as an external file and link to it or wrap your code in cdata
<script type="text/javascript"> //<![CDATA[ ...code... //]]> </script>
-
GazNicki reacted to zed in JQuery not workingyes. I grabbed the version of jquery they used from the source of this http://www.gcmingati.net/wordpress/wp-content/lab/jquery/newsticker/jq-liscroll/scrollanimate.html
-
GazNicki reacted to zed in JQuery not workingjquery.js doesn't exist? I see the jquery-1.4.2.js in your js folder
-
GazNicki reacted to zed in JQuery not workingcool
-
GazNicki reacted to zed in JQuery not workinggot a link?
-
GazNicki reacted to zed in JQuery not workingokay, clicking the first link IE gives an error
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C; .NET4.0E)
Timestamp: Thu, 30 Sep 2010 14:59:15 UTC
Message: Object expected
Line: 15
Char: 1
Code: 0
URI: http://www.gptsolutions.co.uk/customer_websites/wigancpc/'>http://www.gptsolutions.co.uk/customer_websites/wigancpc/
Message: Object expected
Line: 61
Char: 4
Code: 0
URI: http://www.gptsolutions.co.uk/customer_websites/wigancpc/
I've not looked deeper than that yet.
-
GazNicki reacted to zed in JQuery not workingyou're not loading jquery?
-
GazNicki reacted to zed in JQuery not workingie. this is missing
<script type="text/javascript" src="jquery-1.4.2.min.js"></script>
-
GazNicki reacted to chtyrone in How to get a site appearing in GoogleNow there's a thing I pay absolutely no heed to whatsoever - "Googlerank".
Similiarly, anybody who's searching for something.
It's getting it into the top end of that first page.
And I doubt any of those moneytrap SEO companies will do much for you.
Each business is an individual one with individual requirements.
It's down to sitting down and figuring out what the search phrases are for the business. The target market.
It may take hours, days even.
It's down to the individual boring, metatags, titles, content.
It's down to sorting out links into your site from larger, higher ranked , very possibly relevant, websites.
It's slow, it's painful. But it works.
No substitute, no short cuts to plain hard work.
No amount of computer or designer skill will overcome this.
You need to get to know the business you're trying to market.
-
GazNicki reacted to Gowebbaby in How to get a site appearing in GoogleYahoo site explorer is good tool to analyze your competitors.
-
GazNicki reacted to THallDesign in How to get a site appearing in GoogleMy advice is to analyze your competitors and who is ranking number 1 for that keyword and why you are not. Contact me at Trevor Hall Web Development and we can talk more about this if you would like.
-
GazNicki reacted to BlueDreamer in How to get a site appearing in GoogleTo quote Derek Powazek - "Make something great. Tell people about it. Do it again." The full artricle is worth a read - http://powazek.com/posts/2090
-
GazNicki reacted to Wickham in css drop dopwn menuThere are problems with the drop down part being hidden behind Javascript and Flash items, but it doesn't usually happen with ordinary html.
As said above, z-index is the basis of getting one item above another, but position is also often required and transparent for Flash videos. See item 4 here:-
http://www.wickham43.net/faq.php
which may not suit your situation but may help.
-
GazNicki reacted to back2front in Background Image QuestionHi jbraden37,
To create a seamless gradient background that blends with the background colour of your website, use the css repeat property where you declare your background image.
body { background-color: #E50303; background-image: url(images/background-gradient.jpg) repeat-x; }
The "repeat-x" in the code above tells your gradient image to only repeat horizontally. Therefore, the gradient will cover the width of your site, and any information past the height of the gradient image will be shown over your background colour.
-
GazNicki reacted to BlueDreamer in URL Re-WritingIt's perfectly fine to have file extensions like yoursite.com/contact.php - most of the internet has worked that way for decades sounds like you've seen some duff information.
As for index pages inside folders, eg /foldername/index.php, then you can use /foldername/index.php or /foldername/ when creating links within your site. Both methods are perfectly fine but search engines will see both versions as different pages so use one format and stick to it - be consistant!
PS it's always best to take online testing tools with a pinch of salt!