Viewing My Posts

< Back to Forum


12 years ago
Thread: Publishing Anomalies
I'm getting the same issue. When I publish to the internet all the font styles are different to the ones I used? The problem doesn't to go away though even after republishing? Any ideas? <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
12 years ago
Thread: Text Challenges
Hi!

I downloaded Easyweb yesterday and I've been transferring my site from iWeb.
First of all, you are doing a great job!!

Though version 18 seems pretty stable, I have noticed some annoyances I thought I should report and requests I would like to submit!

First of all, this is my iWeb site: http://www.piranhastudio.gr
And this is my Easyweb version: http://www.piranhastudio.gr/t

1. Since my background is dark, I use fonts in white.
While setting the font colors, I noticed that when I use white as a font color (255,255,255), the css does not mention color at all, so after the (full) export, the browser displays the fonts using default black. The trick I used to override it (other than editing the css), was to use a slightly darker tone (254,254,254). It just worked.

2. Though I use the "Centered Layout", my iPhone prefers to display it as "Left"

3. My iPhone shows the telephone numbers as blue and underlined in the Easyweb version. I would like to have an option for that (I habe used the same apple <head> code in both versions.)

4. I would really much like to have the option of a window-resizable static background image, that would fill the screen!


Thank you very much for your time!
12 years ago
Thread: Hyperlink wont save?
Hi, I'm trying to set a hyperlink on one of my pages to another page but it keeps defaulting back to the incorrect page. I've tried it several times now. Incidentally this is the same page that corrupted my website as I saved the file without naming the page.

Any ideas?

Also how can I get this file to reappear in the project window, currently I have to go to the file manually.

Thanks for your help!
John
12 years ago
Thread: Popup Windows Revisited
I want to try something similar that I found that uses CSS, but I was wondering if it could be applied to EasyWeb: http://sarasoueidan.com/blog/windows8-animations/. Sorry, I haven't showed you the site yet, but I'm making a site that has "kinda" metro Windows 8 looking tiles, but I found this and thought that adding animation would be cool.
12 years ago
Thread: Popup Windows Revisited
Wow, that looks great!
12 years ago
Thread: Rename & Sort Assets
Being able to rename an asset and move it up and down the list would be very helpful.
12 years ago
Thread: Relocate or Confirm 'Revert to Saved'
Would it be possible to relocate the 'Revert to Saved' option away from the 'Save' option in the 'File' menu,or at least add a 'Confirm Revert to Saved' step? I just learned the hard way that this is a needed feature after straying a little too low when attempting to click on the "save' option <!-- s:cry: --><img src="{SMILIES_PATH}/icon_cry.gif" alt=":cry:" title="Crying or Very Sad" /><!-- s:cry: -->
12 years ago
Thread: When are you going to Fix Helvetica New?
When are you going to Fix Helvetica New? Does not work.
12 years ago
Thread: Navigation Menu Directory Mouse Over
I would love it if when updating the colours for the 'Mouse Over' and 'Background" in a directory of the navigation menu, it applied the changes to every page on the site. At the minute I am having to make the same changes to every individual page.

ALSO, would it be possible to set different 'Mouse Over' and 'Background' colours for each directory within the navigation menu? Rather than a blanket setting for all directories within a navigation menu.

Cheers
12 years ago
Thread: Directory Page Rename Display
When adding pages to a directory, I duplicate an already existing page and add it to the directory, if of course it was duplicated from a page not already in it. However when i rename the page, the navigation drop down menu does not always update itself. I've left the page and come back to it; checked it on other pages too and it refuses to display the new name in the navigation drop down menu.
12 years ago
Thread: Text disappears
Hi All,

I am having a strange thing happen. When I create a text box and paste in text it appears until I leave the page. When I return the text box is their with no text. I can't even get my curser to appear to edit or add text. Any help would be appreciated.

Thanks,
Bryan
12 years ago
Thread: Text disappears
Thanks, I will later tonight once I am home.
12 years ago
Thread: JQUERY Slideshow
Hi, can someone tell me how I can use the Jquery slide show effect? I thought If I made up a couple of slides with power point I could use the transition effect to display changing text? Any advice welcome. Thanks. <!-- s:mrgreen: --><img src="{SMILIES_PATH}/icon_mrgreen.gif" alt=":mrgreen:" title="Mr. Green" /><!-- s:mrgreen: -->
12 years ago
Thread: JQUERY Slideshow
That's perfect how do I set it up, can you talk me through it? please <!-- s:mrgreen: --><img src="{SMILIES_PATH}/icon_mrgreen.gif" alt=":mrgreen:" title="Mr. Green" /><!-- s:mrgreen: -->
12 years ago
Thread: JQUERY Slideshow
I found this code online but cant get it to work.

I'm not a programmer. Any help would be very much appreciated.

.quotes {display: none;}?
<h2 class="quotes">first quote</h2>
<h2 class="quotes">second quote</h2>?

(function() {

var quotes = $(".quotes");
var quoteIndex = -1;

function showNextQuote() {
++quoteIndex;
quotes.eq(quoteIndex % quotes.length)
.fadeIn(2000)
.delay(2000)
.fadeOut(2000, showNextQuote);
}

showNextQuote();

})();?