0
Welcome Guest! Login
0 items Join Now

Coumminty Builder Links not working

  • Coumminty Builder Links not working

    Posted 12 years 9 months ago
    • I have come across a problem when using Infuse theme for Joomla 2.5
      I have found two links that do not work. 'Register' on Coumminity Build 1.8.1 ( www.launchfest.co.uk/gigsets/component/comprofiler/registers )
      and 'Save'/'Cancel' on Create Group on Group Jive on Coummunity Builder

      I've changed the template to another and the links work in it, so the problem must be with some change made while using Infuse.

      Any help please?
    • Cliff Pfeifer's Avatar
    • Cliff Pfeifer
    • Preeminent Rocketeer
    • Posts: 8444
    • Thanks: 20
    • Website Developer

    Re: Coumminty Builder Links not working

    Posted 12 years 9 months ago
    • Hi, I took a look. I'm not sure if this the template or community builder, there is a validation error on your site coming from the CB code and maybe it's just not jiving with the theme.

      Either way, I was able to fix it. Go into your template.css file, find line 432 - it's all the codes for the input buttons, remove or comment out float:left; - the float is making the button appear behind another element, that's why you can't click it. Keep in mind this will affect all the input buttons on your site, so I'll put a code below that you can use if it messes up other pages.

      At the bottom of your template.css, add this code. The first line brings the button to the front, the second will fix the issue from above:
      .cb_button_wrapper {position: relative;z-index: 9999;}
      .contentpaneopen .cb_button_wrapper input.button{ float: none;}
      Hope that helps.
    • The difficult we do immediately, the impossible takes a little longer.
  • Re: Coumminty Builder Links not working

    Posted 12 years 9 months ago
    • Cliff Pfeifer's Avatar
    • Cliff Pfeifer
    • Preeminent Rocketeer
    • Posts: 8444
    • Thanks: 20
    • Website Developer

    Re: Coumminty Builder Links not working

    Posted 12 years 9 months ago
    • Okay, try my first suggestion - just take out the float:left - see if that fixes it.

      I can't see the button on that page, I think I have to be logged in, so I can't say if that will work or not. If you want to PM me your login, I can get a better idea of what's happening.
    • The difficult we do immediately, the impossible takes a little longer.
  • Re: Coumminty Builder Links not working

    Posted 12 years 9 months ago
    • I have taken out the float:left in the template.css file.
      PM coming your way
    • Cliff Pfeifer's Avatar
    • Cliff Pfeifer
    • Preeminent Rocketeer
    • Posts: 8444
    • Thanks: 20
    • Website Developer

    Re: Coumminty Builder Links not working

    Posted 12 years 9 months ago
    • Thanks for the info - try adding this code:
      input.gjButton{position:relative; z-index:9999;}
      That should fix both of them on that page. They're just getting covered up by another div that's on top. High z-index numbers push them to the front. Let me know if that works.
    • The difficult we do immediately, the impossible takes a little longer.
  • Re: Coumminty Builder Links not working

    Posted 12 years 9 months ago
    • I have solved the problem thanks Cliff.
      I tired your code at first but it didn't work, so I added the actual name of the buttons as a overall wouldn't work.
      In the end I put the following code.

      input.gjButton.gjButtonSubmit{position:relative; z-index:9999;}
      input.gjButton.gjButtonCancel{position:relative; z-index:9999;}
    • Cliff Pfeifer's Avatar
    • Cliff Pfeifer
    • Preeminent Rocketeer
    • Posts: 8444
    • Thanks: 20
    • Website Developer

    Re: Coumminty Builder Links not working

    Posted 12 years 9 months ago
    • Cool man, glad you figured it out.

      I'm just looking in a web inspector to find the element name to apply the codes to, you can do the same by using Firebug or the built in Web Inspector in Chrome or Safari. If you come across this issue, you just need to get the element name and classes and apply the z-index fix to bring it to the front.
    • The difficult we do immediately, the impossible takes a little longer.

Time to create page: 0.059 seconds