Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. Mutiny

    Need guidance

    The nice thing is, there can be a lot of overlap between being a Wordpress developer and a full stack developer. I work with Wordpress and have to do it all, theme development, plugin development, etc. So, I would say focus on Wordpress but branch out and do more than just customizing themes...
  2. Mutiny

    CSS Need help with Responsive top nav with dropdown

    I think that part of the issue is that the text below the menu is bleeding into the menu. To fix this, you want to add a z-index to the menu, like so: #myTopnav { position: absolute; top: 100px; left: 50px; z-index: 10; } This will solve the issue where the items under...
  3. Mutiny

    HTML & CSS Is there a way to mask an URL input as text?

    Could you just have two fields in your database, one for the URL and one for the button text, then when you build the button out after the save just use the button text field from the database?
  4. Mutiny

    HTML & CSS Is there a way to mask an URL input as text?

    You would need some Javascript that listens for changes to the "myURL" input box and then injects whatever the value of "myURL" is inside of the href attribute of your link. What is the context of making the button, ie when a user is editing the button what happens? Is this placing a button on...
  5. Mutiny

    HTML Custom Clothing Design

    So, there's a few pieces to this: 1) Something that lets you present the user with a list of logos for a piece of clothing 2) Something that lets the user upload a custom logo 3) Something that lets a user add their custom text onto the clothing The first piece has many ways for you to tackle...
  6. Mutiny

    CSS CSS issue I can't solve

    Just played with this for a few minutes, but already found a couple of potential issues: You have a CSS rule for "#roja45_rental_product .summary-right-column" that has a "float: right" on it, which you should disable at the smaller screen size. You also have some Javascript on that page that...
  7. Mutiny

    HTML Custom Clothing Design

    Specifically are you looking for something that gives the user a visual representation, eg shows them a logo on a t-shirt, or more of a back end functionality that lets the user upload their logo and add it to a cart? What language / CMS will you be working with?
  8. Mutiny

    HTML & CSS HTML/CSS - Multiple images in carousel slide show

    I find that with sliders, 99% of the time it's best to use an off the shelf version than build one yourself. I recommend the Swiper JS library. They have a version that should do what you need: https://swiperjs.com/demos/110-slides-per-view.html More demos: https://swiperjs.com/demos
  9. Mutiny

    HTML & CSS New Website Development- How to scrape data from other websites

    So that post is for someone who wants to have a search box on their website link users over to the back end search on the other website, whereas what you want to do is different. It sounds like you want to have users search and you show the results on your website, but the content doesn't...
  10. Mutiny

    HTML & CSS Transparent Sticky Nav Bar that changes color on Scroll

    I would recommend you look into Waypoints JS. I've used this library before for detecting when a user scrolls. Basically, you can set a waypoint and at that point add or remove classes from your navigation bar. Your navigation bar is pretty big, so you could use some CSS to change the color...
Back
Top Bottom