Forum Replies Created

Viewing 30 posts - 181 through 210 (of 343 total)
  • Author
    Posts
  • in reply to: Adding a Backround Color for Left Menu Item on Mouse Over #897624

    Thanks Rikard. That worked. However, I can’t seem to change the color of the text on the mouse over, just the background color. Here’s the code I am using:

    #menu-item-1638:hover {
    	color: #fff !important;
    	background-color: #002A46 !important;
    }
    in reply to: Adding a Backround Color for Left Menu Item on Mouse Over #897306

    Hi Mike,
    That changes the mouse-over on the menu item for the page you are on. But what I actually need to do is specify the mouse-over for each menu item. Not just for the current menu item. I also only need to apply this to the menu in the side bar. The CSS you provided applied the change to the side bar menu as well as the menus in the footer widget area. Is there a way to make the change I need to just the side bar menu?
    Thanks!

    in reply to: Adding a Backround Color for Left Menu Item on Mouse Over #896956

    Hi Rikard,
    I had a look under those settings and it looks like there are only options to modify the main menu and not the secondary/left column menu. Is there an option for that I am not seeing that you can provide me?
    Thanks.

    in reply to: Editing Home Page Redirects to Posts Summary Page #895334

    I spoke to our host and after they restarted the server, things were fixed. All is good now. Thanks!

    in reply to: Importing Posts From Another WordPress Website #895291

    Thanks for the reply Mike. I’m going to hold off on going further with this for now. It has taken quite a bit of time and I need our client to give us the go ahead to continue. If I get that, I’ll follow-up with the info you requested. Thanks again.

    in reply to: Importing Posts From Another WordPress Website #894883

    Thanks Victoria. I made the updates as shown in the post you referred me to, however I still am getting a sever error when I try to import the posts.

    The import tool now says the max size you can import is 100 MB and previously it said 64 MB. So that did change. The .xml file I am trying to import is 20.6 MB.

    in reply to: Simple Drop-Down Menu #889417

    No, I think I’m good. Thanks.

    in reply to: Simple Drop-Down Menu #889345

    Hi Jordan,
    I was able to figure out the issue. The elements on the page below the drop down were going over top of it. So adding this fixed the issue:

    #av_section_3, #after_section_3, #after_section_2 { 
      position: relative; z-index: 0 !important; 
    }
    in reply to: Simple Drop-Down Menu #889297

    Hi Jordan,
    Yes, that’s what I’m referring to. Here’s the code:

    <div class="dropdown">
    	<span><strong>Filter By:</strong></span>
        <div class="dropdown-content">
            <p><a href="/blog/arts-culture/">Arts & Culture</a></p>
            <p><a href="/blog/attractions/">Attractions</a></p>
            <p><a href="/blog/eat-drink/">Eat & Drink</a></p>
            <p><a href="/blog/entertainment-music/">Entertainment & Music</a></p>
            <p><a href="/blog/outdoor/">Outdoor</a></p>
            <p><a href="/blog/shopping/">Shopping</a></p>
    	</div>
    </div>

    And here is the CSS:

    .dropdown {
        position: relative;
        display: inline-block;
    }
    
    .dropdown strong {
    	color: #fff !important;
    	text-transform: uppercase;
    	background-color: #00548B;
    	padding: 15px 30px;
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f9f9f9;
        width: 200px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        padding: 12px 16px;
    	margin-top: 15px;
        z-index: 1;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    in reply to: Simple Drop-Down Menu #888877

    That’s actually what I ended up doing in two links I sent on December 5th. But it looks like something in the theme is preventing you from mousing over or selecting the links in the drop-down. So I was hoping you might know what is causing that.

    in reply to: Simple Drop-Down Menu #888399

    Hi Jordan,
    Sorry for not getting back to you. I had posted a reply, but it looks like something happened to it and I don’t see it here now. Anyway, yes I think you are on the right track. Like options in a form or a pull-down like what you would see in the blog to select different categories. A good example would be if you went to appearance > widgets and added the “A list or dropdown of categories” widget to the sidebar in the website or created a new widget with that. But I want to link to pages in the dropdown, not categories. I hope that helps.

    in reply to: Simple Drop-Down Menu #885070

    Hi Jordan,
    All I did was add a code block on the first page with a couple divs and the text that appears on the mousover and items that appear below it. On the second page that uses a blank template I just copied and pasted the html into the WordPress editor under the “Text” tab without activating the Avia Layout Builder.

    Login info is below in the private info.

    Thanks!

    in reply to: Simple Drop-Down Menu #884784

    I created a test page that is uses a blank template with no header/footer and put the code for the drop-down on it and it seems to work fine. See the link below. It’s not using the Avia Layout Builder.

    in reply to: Simple Drop-Down Menu #884754

    Thanks for the link Jordan. I have actually tried that, but when I create a new menu/widget and add it to a page it displays as a list style menu, not a drop-down. Is there a way to get it to display as a drop-down?

    I did manually create something (see the link in the private info). But I can’t select the links in the menu below the “Filter By:” text. It seems like something else on the page from the theme is overriding it. Any ideas why that is happening or how to fix it?

    Hi Ismael,
    In a couple code block areas, yes there was some html. But I checked to make sure there weren’t any close tags missing and it didn’t appear that was an issue. After I rebuilt the parts of the page that were missing, things seem to be okay now. So I think we might as well not look further into things unless it happens again.

    Thanks for the follow-up.

    Hi Basilis,
    While I was waiting for a reply/someone to review the issue, I tried adding some of the containers back into the home page on the copy of the website I sent you to see if they would stay on the page. So that is why you can see the things I previously said had disappeared off the page. As I mentioned before, it was the containers/elements below the “What kind of event or festival are you looking for?” section that were having issues. So feel free to try editing the page, the items below that or adding some new containers to see what happens.

    I have a separate copy of the website I am working on that uses the domain for the website, but only I can see that since I have the IP for the development server where it’s hosted added to my .hosts file. I have continued to work on that copy of the website and rebuilt the home page. So far it has worked okay and I haven’t had the issue happen again. I’m hoping there was just something in one of those containers that was causing the issue and I eliminated that when I rebuilt things.

    It’s been a few days and I haven’t heard anything. Is anyone able to look into this?

    Hi, I was just wondering if anyone had a chance to look into this further. Thanks.

    Hi Victoria,
    I added the code to enable that. But can’t see anything displayed in the new field when editing the page that would cause issues. If you could have a look that would be great. I’m kind of stuck and have a deadline I’m working towards and can’t work on the website if containers and layout elements I add to the website keep disappearing.

    Thanks!

    I should also mention that this is a copy of the website, so you can feel free to add some random containers/elements/templates to the home page to try and see what is happening. When I was trying to rebuild the areas missing from the home page, they started to disappear again. So adding some things might result in you seeing that problem.

    Sure thing. All the info you should need is below. The home page is the main area I am seeing the issue. There was quite a few more elements below the “What kind of event or festival are you looking for?” section and they are now missing. I included a link to a prototype of the website that showings what has disappeared.

    • This reply was modified 6 years, 12 months ago by NicomIT.
    in reply to: Add Space Above Logo in Sticky Header #875224

    That worked great. Thanks Victoria.

    in reply to: Add Space Above Logo in Sticky Header #874782

    Thanks Victoria. Is it possible to only add the additional padding when you scroll down the page and the sticky header turns on?

    in reply to: Add Space Above Logo in Sticky Header #874745

    Yes, directly above the Discover Halifax logo. If you scroll back up to the top of the page, you will see there should be some space above it. When you scroll down there isn’t any space and part of the logo gets hidden.

    in reply to: Add Space Above Logo in Sticky Header #874661

    Sorry about that. I forgot that I have my hosts file updated so I can work on the new website using the domain. So you actually are seeing the old/live copy of the website. Below is a link to a copy that you should be able to see.

    in reply to: Issues Editing Home Page and Uploading Media Files #872138

    I think everything is fine now. So you should be fine to close this. Thanks again.

    in reply to: Issues Editing Home Page and Uploading Media Files #871804

    Thanks for the quick reply Rikard. I wasn’t 100% sure if it was theme related, so to cover all my bases I contacted our host as well and they were able to fix the issue. Our /tmp directory was full and that was causing the problems.

    in reply to: Google Map Not Displaying/API Error Message #860167

    Also, I just looked at both keys I created. The new one that worked is unrestricted and the other key is not. That looks to be the only difference between them. However, my understanding is the key should be restricted (Google actually recommends that).

    The keys I created for other websites using the embedded map have ‘HTTP referrers (web sites)’ enabled under key restrictions and their domain added under ‘Accept requests from these HTTP referrers (web sites)’. That is what I did for the first key here that didn’t work. I’m kind of confused about what the correct way to create the API keys should be.

    in reply to: Google Map Not Displaying/API Error Message #860158

    As far as I know, the API was created correctly. However I created a new one via the link you just provided (

    ) and was able to get the map to work. I have no idea what was different about how this key was created, but it worked, so everything is fine now. Thanks for the help.

    in reply to: Google Map Not Displaying/API Error Message #859622

    Hi Ismael,
    I deactivated the security plugin. Hopefully that works and you can login.
    Ryan

Viewing 30 posts - 181 through 210 (of 343 total)