-
sugestions for small business eshop
Hello. A friend of mine, wants to setup a small business eshop, with posters and paintings. Nothing special. So i told him that there are two ways. The first one is to say someone to make a custom eshop (actually something like that) since that it is simple enough what he wants and the second way it to choose a ready open source eshop platform. I send him some of them but the truth is that we cannot decide which one to choose for such a usage. So what is your opinion ? Is it a good idea the custom eshop , or he has to choose a ready platform ? Thank you.
-
500 Internal server error when using the mod_rewrite
Hello. I have such links in a web site /post.php?id=14 /cat.php?t=y&cid=6666 and i create an .htaccess file with that content inside. Options +FollowSymLinks RewriteEngine On RewriteRule ^([^/]*)$ /post.php?id=$1 [L] RewriteRule ^([^/]*)/([^/]*)$ /cat.php?t=$1&cid=$2 [L] but on refresh, apache returns 500 Internal server error. I looked on logs and found that : Why that happens ? Mod_rewrite is enabled in httpd.conf.
-
hover on an element and change the opacity of another element with different z-index
Actually solved it by using nfc212 css code. Thank you very much.
-
hover on an element and change the opacity of another element with different z-index
Hi. I have those two elements: .cover { background: #000; height: 100%; opacity: .4; position: absolute; transition: all 1s; width: 100%; z-index: 900; } .title{ margin-top:-221px; margin-left:15px; margin-right:15px; height:105px; color:#eceff0; position:relative; z-index:980; } As you can see they have different z-index value. What i want it to change the opacity of .cover when mouse is on .title Tried that code but doesn't work .title:hover .cover{ opacity:0; } Any idea ?
-
Is it possible a font family property to change the margin value?
Yeap. Thank you very much. I'm gonna study your code.
-
Is it possible a font family property to change the margin value?
Yes exactly. I'm trying to align those letters under some circles. Here is the whole code if you want to see it. Firefox seems that renders totally different the ROBOTO (if use it) font from Chrome. You say that there is another way to align them ?
-
Is it possible a font family property to change the margin value?
Hello. I have that simple div <div class="labels"> <span style="margin-left:10px;">atttt</span> <span style="margin-left:65px;">attt</span> <span style="margin-left:45px;">att</span> <span style="margin-left:50px;">at</span> </div> .labels{ padding:0; clear:both; margin-top:160px; /* font-family: 'Roboto';*/ font-style: italic; font-size:12px; font-weight:bold; color:#95a5a5; } I linked google font roboto within the page, and realized that if i use that font in the css, padding values of span are changing between chrome and firefox browser. From the other hand if i let the default font by commenting out the corresponding line on CSS, padding values of span elements become same in both browsers. Is this possible to be caused by the font ? And is there any way to fix it ? Thank you.
- Menu navigation with circles
- Menu navigation with circles
- Menu navigation with circles
-
Menu navigation with circles
Hello out there. I'm just registered @ this forum and i'm kinda new in web dev area so i want your lights I'm trying to create a navigation menu which will be consisted from circles. Here is an image i draw to explain to you. The idea is this: When user clicks on circle with number 1 , the next two circles appears below the first (with the number 2) and finally if you live your mouse on circles with number 2, circles of the third generation appears. The way i tried it so far is by using CSS with a big border-radius value but i reached only the first circle. I don't know how to add the rest of them (i used ul and li) . Also here is the code jsfiddle. Is the CSS idea good, or should i give it a try with a different way like HTML5 canvas for example? If CSS is ok, can you give me a hint on how to add the rest of circles ? Should i add two more <ul><li> elements or not ? Thank you.