Everything posted by mccloud
-
custom letters
in terms of functionality / usability no.. It's a portfolio website, only a stylistic thing.
-
custom letters
sorry, my post was lacking a lot detail... 1. I am working with Wordpress (the content is controlled by a content-builder in the theme) 2. This is what I am after... so it's a separate SVG I design in Illustrator for each character, not CSS..
-
custom letters
If I want to stylize some letters in a title, but don't want the change to be on the whole website... what would be the easiest way to do this ? Example: I want the O in a title to be custom, but not all of the Os... so a custom font won't do the job. Thanks!
-
css not being applied on elements
I am basically trying to get the headings on this site: test.extensio-management.de to get looking like on the screenshot attached. Currently I was trying to get the text centered (in terms of height) within the colored background.. I am not sure where it's coming from, so I've tried changing it in some way (just to see how it responds) in Theme's custom CSS: h1{ background-color: #6cb52d; border: 1px solid red; padding-top: 10px; } but the padding is crossed out in red and doesn't get applied (see screenshot). What does this mean ?
-
[Avada Theme]image carousel with modal pop-up
ok, thanks. Good to know. So I guess I'll try elsewhere.. their 'support' forum and fb group is very weak.
-
[Avada Theme]image carousel with modal pop-up
Question to all the Avada users.. I'd need a carousel with photos of football players (11 total, 4 displayed at a time) and after I click on an individual photo, more info about the player will pop up as a modal box. How would I go about achieving this ? I thought it's impossible to do, but apparently it can be done.. https://theme-fusion.com/forums/topic/nested-shortcodes-modal-inside-images-image-carousel-not-working/ Thanks!
-
site loading incredibly slow (on Retina) ?
okey, I will remove the auto-play in that case for sure. About the video not providing any value - it's a temporary video, I am working on one, where I am describing the product (book) personally and giving more details and info. So I definitely want the video there.. from my experience, people are not gonna read 2 pages of text... but a 2-3 min video is way more user friendly. I can imagine that there's also quite some bs being loaded with the theme - I am using Thrive Landing pages plugin to design the whole site - manage opt ins etc.
-
site loading incredibly slow (on Retina) ?
thanks! ye, the video is really a pain.. however, I don't believe that there isn't a way to somehow optimize it.. would it perhaps help, if I embedded a youtube video instead of Wistia ? Although there are plenty of websites with a video about the product / service, without any impact on the loading speed. Also, do you have a suggestion about the caching ? All the performance tests are showing that I should utilize more caching. I just tested now through tools.pingdom.com and the loading time is 881 ms, which is not bad at all. However, when I actually load the site in the browser (and on the phone) it's loading forever. Here's a GTMetrix result, which is crazy... https://gtmetrix.com/reports/youngandripped.net/4xZgZkzU There are 2 pictures that are unnecessarily large for normal (and especially mobile) screens - I was using the WP Retina 2x plugin, however without success. So I'll try another method to serve the double-sized images only to retina screens where appropriate.
-
site loading incredibly slow (on Retina) ?
Hey, after I've build my site, I am having serious performance issues and still haven't completely solved the situation. I am pretty sure Retina screens are somehow problematic.. as I've tested in on 'normal' Windows computers and the site is loading very fast (as it should be). But on Mac I have to wait at least 30-40 seconds. The logo and one other picture are double the resolution and I am using the WP Retina 2x plugin... do you think this could cause the problem ? Although I don't think two images would cause the site to load so slow ? (they are not that big anyway). I've experimented with caching plugins (still active) and CDN (Cloudflare - not active on the site anymore).. Here's the site: youngandripped.net Thanks!
-
multi-purpose theme recommendations ?
I've been looking into premium (paid) themes, and realized that it's probably more convenient to invest in a single, more complex theme, go through the docs and learn how to use it - and then create all websites in the future based on that theme. I've come across several themes that look promising, but of course there's so many - therefore I am interested, if some of you guys have personal experience with any of the multi-purpose themes. Been looking at these ones: https://themeforest.net/item/bateaux-creative-multipurpose-wordpress-theme/16524248 https://themeforest.net/item/x-the-theme/5871901?ref=oldschool101 http://wp-royal.com/hyper-x/demo/ They all have great support apparently as well. Thanks for the tips!
-
finding media files in source code
ok, so I guess it's different for every site.. For audiojungle for example, the mp3 file was in the Network tab. And it was purely out of curiosity.
-
finding media files in source code
I'll use an example.. I have a site with sound (mp3) preview player like Soundcloud, sound libraries etc. I am guessing they work based on ajax ? Anyway, I thought I'd be able to locate the sound file itself in the 'sources' tab (Google Chrome). But I couldn't. Usually I find images this way. Is there a reason, why it doesn't appear there ? And is there a way to locate / get it somehow ? Thanks!
-
Form onsubmit preventDefault not working
Aah, yes.. you're right. After further inspection of the old website, it's using html Iframes to accomplish the 'redirect' - which is technically not a redirect after all and I don't think it's the proper way to do this (nevertheless, they accomplish the goal). That's why I though it is relatively easy to accomplish. I've never dealt with this before, so I wasn't familiar with the procedure / technique. Thanks for the info.
-
Form onsubmit preventDefault not working
well, of course. I don't expect the data to be sent within the redirect request. I though it was possible to send the data and just prevent any further behaviour... Here's the old site where it works perfectly fine. I don't think there's any additional javascript involved, right ?
-
Form onsubmit preventDefault not working
Thanks. So I remved the onsubmit from the html and this is what I got now: <script> jQuery(document).ready(function ($) { $('#submitForm').on('submit', function (evt) { window.location = 'http://thankyoupage'; evt.preventDefault(); }); }); </script> However I got the very same problem.. it does redirect to my thank you page, but doesn't send the data. If I remove the evt.preventDefault(); it redirects again to the default Google Forms thank you page (which I don't want) and also sends the data. I am now sure why it doesn't work with just the window.location redirect. That way it should theoretically submit the data first and then redirect to my local thank you page.. It's also worth noting that your code should be wrapped in a DOM ready event. I never understood why though Will need to do some reading on that.. but first I need to solve this quite urgently..
-
Form onsubmit preventDefault not working
I have this issue and I don't really understand what's going on.. I've got a form on an old site, which submits the data to a google sheet. <form action="https://docs.google.com/a/sheeturl" method="post" target="hidden_iframe1" onsubmit="window.location='thankyoupageurl'"> which works perfectly fine - submits the data to google spreadsheet and redirect the user to a custom thank you page on the site. I now try to mimic this behavior on a new website but with exactly the same code, it does not redirect to the thank you page - instead, it sends the data and goes to the default Google Forms thank you page. Looking at the working code on the old web, I don't see any javascript attached, which would further alter the redirect behavior. The new code (actually same code, new website) does indeed redirect to the page I want, but also opens the Google forms thank you page on top of that, in a new tab. So I added jQuery('#submitForm').click(function(event){ event.preventDefault(); }); to prevent this... but now the submit button does not do anything at all! How can I prevent the submit button to trigger opening a new tab ?
-
Web dev environment with gulp
perfect! Thanks a lot. Will check it out.
-
Web dev environment with gulp
I am trying to set up a build / web development environment with gulp, with basic features for compiling SASS, browser-sync, auto prefixer etc. But after 2 days of consecutive experimenting, I am still failing at accomplishing this (seemingly) easy task, always getting some minor errors. And it is quite urgent for a project I am working on. Would somebody be able to help me out, if I provide more information ? (file structure, gulpfile.js code, commands etc.). I haven't found too many good tutorials on this topic and it might serve as a good reference for future users here too. Thank you.
-
complex search form
thanks. Ye, that's what I was thinking.. if there already exist pre-made plugins / scripts for this. Will try to have a look.
-
complex search form
Recently, I had an offer to create a website for a real estate agency. However, I've never done such a thing before and the biggest issue in functionality I see is the interactive house search options.. Examples: zillow.com, reality.sk, novostavby.sk (not english sites, but for a demo, you get the idea). How would I go about coding such a thing? Is it just php going through and filtering a database of properties based on user preferences ? This might be a lame question, but this is the first time I'm dealing with such a request and I have no idea what the development procedure would look like. Thanks
-
Personal portfolio / business web
ye, good point. After some time, I'd definitely want to make it into a small company. fldesi*n.sk/ (just fill the g in - don't want google to show this in search results, as I had negative experience with this before) But for me personally, it's a bit strange if a single person refers to himself in plural - especially if it's a really small business / site with no proper content. I really can't imagine what content I should put up.. except a short description, portfolio and contact info.
-
Personal portfolio / business web
Just a quick questions for you guys that have your own websites to present yourself and your services. Is it better for the website to have a kind of personal feel, with my bio etc. or should it be more aimed on my 'brand' where basically I am not mentioning myself anywhere and refer to my services in plural? (we provide... ) I've seen both, but I am not sure what's better. I am now working on a redesign of my site. Previously I didn't include anything about myself, but I was sort of lacking content - only had the actual portfolio / work references and a list of services I offer. I'd like to have it a bit more complex and professional this time.. I've seen a lot of freelancers / designers have their site quite personal. What do you think ?
-
moving a site
I was looking at different hosting providers.. here on forum, TSOHOST is mentioned a lot. I was comparing mochahost, tsohost and unlimitedwebhosting. Both mochahost and unlimitedwebhosting are unlimited and provide a free domain / transfer. So I guess only the support must be exceptional with Tsohost, as so many people are recommending it? Is it worth it?
-
moving a site
FSP reserves the right to charge an administration fee in the event of transferring a domain name to another provider/party. This fee currently stands at £25 + VAT providing no outstanding balance remains owing. This is what's in their T&Cs. However, their contract terms are quite complicated and apparently the client paid just recently. So I am waiting for her reply (if she would be happy to do it - and pay for it ) and after that will probably write to the company and proceed with the transfer.
-
moving a site
oh, awesome post! I've spent 2 hours reading other stuff on your blog as well