-
-
Magento
To be honest until you're very familiar with PHP (and Zend knowledge would benefit you greatly when dealing with Magento) I'd completely stay away from it for now. Depending on your budget I'd either suggest sub-contracting out the work to a developer or going for a smaller ecommerce platform (although you still probably will need to dabble with some php). Chris
-
Intellectual Property Assignment
Hi All, A year back I did the web development of a CMS website for an agency, the client of the agency knew the work was subcontracted out to me and has recently been in touch asking if I will sign a IP assignment agreement giving them all IP rights. I've done various other similar websites within the same industry some of which the code has been reused and modified for that clients needs (i.e. they're not clones). What are your thoughts? should I sign this agreement? could it prevent me doing other similar sites in the future? Or should I keep IP rights and grant the client a license to use the website/code? Thanks in advance Chris
-
Fitting 9 100px wide boxes into 900 px div...
.menuitem { float:left; }
-
Version Control
Assembla offers free private SVN repositories and is probably the easiest of the widely known ones. There's tones of SVN tutorials out there and a great tool called TortoiseSVN for a GUI. Hope it helps Chris
-
htaccess and mod_rewrite problem
either remove index from the url or alter your htaccess rewrite to have index at the beginning (before home)
-
htaccess and mod_rewrite problem
I don't really understand what you're meaning. Any links on your site should now be using the page/home format. Not index.php?page=home. Does that answer your question?
-
htaccess and mod_rewrite problem
Looking at it quickly it should be rewriting page/home to ?page=home
-
Hello me again. Stuck.
Seems to be working now? looking good!
-
Hello me again. Stuck.
For the About 'group' to have a hover style you need to do.. #navigation ul li.navcol:hover { background:red; }
-
Hello me again. Stuck.
Change the HTML and the CSS to the following: <div id="navigation"> <ul> <li class="navcol"> <ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> </ul> </li> <li class="navcol"> <ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> </ul> </li> <li class="navcol"> <ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> </ul> </li> </ul> </div> #navigation { } #navigation ul { overflow:hidden; } #navigation ul li.navcol { float:left; background: #999 url(../Images/Propeller_Nav_Background.jpg) repeat-x; font: normal 9px/13px Arial; border-left: 1px solid #fff; color: #fff; height: 125px; padding: 10px 35px 10px 25px; }
-
Hello me again. Stuck.
Ok, you now need to update your CSS delete what you currently have and try... #navigation { } #navigation ul { overflow:hidden; } #navigation ul li { float:left; background: #999 url(../Images/Propeller_Nav_Background.jpg) repeat-x; font: normal 9px/13px Arial; border-left: 1px solid #fff; color: #fff; height: 125px; padding: 10px 35px 10px 25px; } Then go from there...
-
Hello me again. Stuck.
That won't do what the OP is asking for.
-
Hello me again. Stuck.
Currently you have each div with id="Navigation" each ID should be unique. To start I'd change the HTML to something like <div id="navigation"> <ul> <li> <ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> </ul> </li> <li> <ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> </ul> </li> <li> <ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> <li><a href="#">Link 1</a></li> </ul> </li> </ul> </div>
-
Hello me again. Stuck.
Some browsers have support for div:hover. Your probably better off using ul/li instead of divs as quite a most browsers support li:hover. Does that help?
-
Twitter API
I've used it a few times. Are you wanting to get 'todays tweets' for EVERYONE or for your account only?