Posts by marcos vinícius mesquita • 7 points
5 posts
-
-2
votes1
answer78
viewsQ: Menu with PHP and Mysql
I created a navigation system for my site. See: <nav class="navegacao" id="navegacao"> <ul class="menus"> <li><a href="#">Categoria 1</a></li> <li><a…
-
1
votes2
answers70
viewsA: How to "fit" hexagonal elements with CSS?
Almost! What I want is to form a beehive. I even managed to make the hexagons lying down. See: .galeria-hex { width:1010px; margin:auto; background: #eee; border: 1px solid #ddd; padding: 15px 60px…
-
-1
votes2
answers70
viewsQ: How to "fit" hexagonal elements with CSS?
My idea is to create a gallery where each item will have a hexagonal shape aligned in a way that looks like a beehive. Look at this one so far: .galeria { position: relative; width: 100%; height:…
-
0
votes4
answers167
viewsA: Help with PHP and htacess Friendly URL
I managed to solve! In my file .htaccess I wrote the following: RewriteEngine on RewriteCond %{SCRIPT_FILENAME} !-f RewriteCond %{SCRIPT_FILENAME} !-d RewriteRule ^(.*)$ index.php?pag=$1 Daí criei…
-
0
votes4
answers167
viewsQ: Help with PHP and htacess Friendly URL
I am new to PHP programming, I created a dynamic website using the following code: <nav> <ul class="navbar-nav"> <li class="nav-item"> <a class="nav-link"…