Jump to content

2018amdbuild

Member
  • Posts

    280
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. So this is Three's 5g device (Vodafones also uses a hauwei dvice for their GigaCube which has identical specs afaik) http://www.three.co.uk/Discover/Devices/Huawei/AICubeB900?memory=0&colour=White also found here https://www.amazon.co.uk/Huawei-AI-Cube-Enabled-Unlocked/dp/B07TSY8XHC/ref=sr_1_1?keywords=huawei+ai+cube&qid=1573142943&sr=8-1 Would anyone happen to know if its really a 5G device and not a 4G LTE device? if it's the latter, it would open up a lot more options for myself (I'm guessing actaul true 5g speed devices will launch later on) - would anyone be able to
  2. turns out the HTC 5g hub probbably isn't available on its own - at the moment I'm looking for a sim card router that matches or surpasses the Hauwei AI Cube in terms of speed (both download and upload) but I'm not completely sure which specs to be comparing between devices.
  3. Edited the original post - would prefer to avoid Hauwei, and Hauwei AI cube is the only one Three bundle with their 5g. Found this but idk if its good enough or not - https://www.htc.com/uk/5g/htc-5g-hub/
  4. Hi there I am able to get 5g with Three (provider) in the UK, antenna is nearby with little obstruction as well - at the moment i get pretty solid 4G speeds (up to 35 down and 19 up). I would like to avoid the Hauwei devices (which is what Three offer), so was wondering if anyone would be able to recommend me an alternative router? I would like to get the max 5g up/down speeds I can with the router. so far Ionly know of this router - https://www.netgear.co.uk/home/products/mobile-broadband/lte-gateways/R7100LG.aspx#tab-techspecs - what woudl your guys assesment of it be? Look forward to seeing which devices you guys suggest!
  5. What values should i be aiming for when it comes to srgb / adobe rgb / dci-p3 and delta-E? also what about nits? - 400+ only? these videos and images will be on the web, so can be consumed via monitor, laptop, mobile device, tv etc. the monitors I'm currently looking at are - the Samsung LU32J590UQUXEN https://www.amazon.co.uk/Samsung-LU32J590UQUXEN-32-Inch-Ultra-Monitor/dp/B07BVXGBHT/ref=cm_cr_arp_d_product_top?ie=UTF8 & the LG 32UK550-B https://www.amazon.co.uk/LG-32UK550-31-inch-Monitor-3840x2160/dp/B07KKNP8VK/ref=cm_cr_arp_d_product_top?ie=UTF8 they both ave spec info on the company websites but those don't cover much about the colour accuracy.
  6. Hi, Im using Prepros on a theme based off of the underscores (_s) bare bones theme for SASS, but I cant figure out how to bring in the sass settings to the theme. For example, in the sass folder for _s I have added a colour to posts-and-pages.scss , which itself is imported into style.scss (also found in the SASS folder), and then set the colour in my stle.css for an element which was previously set to a different colour .but i dont know how to reference the SASS file
  7. I've been struggling to make a responsive nav menu for wordpress that uses php wp_nav_menu to generate the links, I've been trying to make it using grid as I intend to expand on the nav layout later on but have not been able to succesfully complete this step. Does anyone have any suggestions for how to go about it? <div class="container"> <logo><svg logo></logo> <toggle><i fa-toggle-icon></<toggle> <nav> <?php wp_nav_menu( array( 'theme_location' => 'menu-1', 'menu_id' => 'primary-menu', ) ); ?> </nav> <socials> <?php wp_nav_menu( array( 'theme_location' => 'my-custom-menu', 'container_class' => 'custom-menu-class' ) ); ?> </socials> </div> what i want the menu to look like - [logo]_ _ _ _[toggle] [ main nav ] [ sub nav ] [ sub nav ] [ sub nav ] [ mainnav link 2 etc ] [ twitter - facebook etc] The current intended layout isn't incporating drop down for the submenu - all the main nav and sub nav links in the full menu will be visible when the toggle is clicked. main issues im havig is that the main nav links and sub nav links go beyond the header container and also cover the socials div. the nav div needs to expand to accomidate the nav and subnav links, and the socials nav needs to move down below the nav div.
  8. how does this work exactly? I should mention that I'm not a coder, though I have managed tot toggle both classes now by running two functions, one for each div on the same button.
  9. Hi there, Im trying to toggle the display property of two divs adjacent to one another, when you click a third adjacent div that follows them both (the button, in this case) - The code im using so far is - function myFunction() { var x = document.getElementsByClassName("test"); if (x.style.display === "none") { x.style.display = "grid"; } else { x.style.display = "none"; } test is a second class added to the first two elements, if you can imagine the html mark up reads as follows - <div class="one test"></div> <div class="two test"></div> <div class="button" onclick="myFunction()"></div> its div one and two that need their display property toggled by the jQuery function, ideally I want to be able to toggle the display value by adding/removing a third class "display", any ideas of how I can go about this?
  10. Figured this out earlier, the problem was simple, youi dont put javascript into funtions.php...
  11. Hi there, I'm using underscores _s bare bones theme, and was wondering how I can get a div to toggle the display value of two other divs, at the moment I cant even insert custom javascript or jquery into the functions.php without a syntax error coming up, even basic generic code snippets.
  12. resolve it - i had been using font-awesome classes in the navigation labels but had forgotten to use the corret prefix classes, as FA now uses far/fas/fab etc fir the prefix rather then the fa used previously e.g. <i class="far fa-caret-square-right"></i>, correct this and now I get font-awesome icons as links and part of the menu structure.
  13. I guess what I'm looking for is to make the icons into navigation labels edit - looking at the front end i notice the FA icons appear inside the li tags but BEFORE the a tag begins, if anyone has an idea of how to get them on the inside of the a tag that would also serve as a solution.
  14. e.g. for the youtube link, for navigation label of the menu link I have <i class="fa fa-youtube"></i> did you want the html of anything specifically?
  15. Hi all, I've been trying to get font-awesome icons to act as the links for a second menu I've made for a website im working on but have not been able to set the icons themselves as the links - I inserted by adding the font-awesome css handles as the custom-css for the links. Removing the text portion from the links hasn't helped, nor has replacing the link label with the html code for the FA icons. I need this to work and to work on a "back-end" menu, and not a menu list hard-coded in as I need it to be easily adjustable, I shold mention im using the latest FA version as well as the underscores _s bare bones theme. Any help would be appreciated.
×