Posts

Showing posts with the label navigationbar

Having issues with my website's navbar display on PC and mobile

Having issues with my website's navbar display on PC and mobile I have limited coding skills, and built a portfolio website for myself utilizing WordPress, a pre-built theme called Ocean WP, and the Elementor plugin. The problem that I was facing earlier was that my nav menu had an arrow to indicate a drop down menu on one of my pages. I really didn't like how this looked, so I reached out to Wordpress Support for help, and was given this CSS code to input: /* eliminate dropdown arrow */ .elementor-navigation .menu-item-has-children > a:after { display:none; } While the code has worked to remove the arrow, it's left my nav menu with an uneven space. Additionally, I'm not sure how to make this code work on tablet/ mobile devices because the arrow still shows up. Please provide a Minimal, Complete, and Verifiable example. Please look at guide how do I ask a good question? – Andrzej Ziółek Jul 1 at 20:01...

Pushing NContactViewController results in black navigationbar. Why?

Pushing NContactViewController results in black navigationbar. Why? I have been trying to solve this problem for a while, so here is my question : I want to create an unknown contact with a given set of values as you may say: fileprivate func showUnknownContactViewController() { let aContact = CNMutableContact() let newEmail = CNLabeledValue(label: CNLabelWork, value: email! as NSString) aContact.emailAddresses.append(newEmail) let workPhone = CNLabeledValue(label: CNLabelWork, value: CNPhoneNumber(stringValue : phone!)) aContact.phoneNumbers.append(workPhone) let ucvc = CNContactViewController(forUnknownContact: aContact) ucvc.delegate = self ucvc.allowsEditing = true ucvc.allowsActions = true ucvc.alternateName = firstName! + " " + lastName! ucvc.title = "Company" ucvc.message = UserDefaults.standard.string(forKey: "company")! ucvc.contactStore = self.store //needed for editing/adding contacts? self...