Author Topic: INN - LSCIDump  (Read 32914 times)

0 Members and 2 Guests are viewing this topic.

Offline OmerMor

Re: INN - LSCIDump
« Reply #60 on: November 15, 2015, 04:05:08 PM »
Phil,
try to use more pronounced outline to the text that's positioned on top of pictures to make it more readable.
In your CSS, add the following line:
Code: [Select]
text-shadow: -1px -1px 5px #000, 1px -1px 5px #000, -1px 1px 5px #000, 1px 1px 5px #000, -1px -0px 5px #000, 1px -0px 5px #000, 0px 1px 5px #000, 0px -1px 5px #000;
To these elements:
  • .home-slider-block-inner
  • .xcel-setting-header-type-dark-light .site-branding

The .site-branding element could also benefit from some light transparent background like this:
Code: [Select]
background-color: rgba(0, 255, 255, 0.25);

Offline troflip

Re: INN - LSCIDump
« Reply #61 on: November 15, 2015, 04:17:10 PM »
Yeah, I was going to darken the background of the text-on-the-pictures to make it more readable. It's not in a finished state at all. Ideally I'd like a dark somewhat transparent bar across the full width.

troflip, did you try float right

Code: [Select]
img  {
    float: right;
}

What for? It's been a while since I've done a lot of css and stuff, but my understanding was that that was for wrapping text around images. There's no text in this case, just an image. Anyway, problem is already solved.
Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline MusicallyInspired

Re: INN - LSCIDump
« Reply #62 on: November 15, 2015, 04:38:00 PM »
Maybe not, but it's a trick web designers still use to send block elements to the right one after the other instead of on top of the other. It's commonly used in navigation bars, actually.
Brass Lantern Prop Competition

Offline Collector

Re: INN - LSCIDump
« Reply #63 on: November 15, 2015, 09:17:02 PM »
What for? It's been a while since I've done a lot of css and stuff, but my understanding was that that was for wrapping text around images. There's no text in this case, just an image. Anyway, problem is already solved.

No, it is for all sorts of elements to move them regardless of other elements. What you are talking about sound like what you can do simply with the  built-in 'img' attribute of 'align'. With float you can even force list items to align horizontally, like the navigation links at the top of this site right above the breadcrumbs. Without the CSS style they would display vertically. It is how I did the 'previous' and 'next' navigation links at the bottom of the SCI specifications and tutorials on the Wiki. They are on the same level with the 'previous' aligned to the left and the 'next' aligned to the right. See this page: http://sciwiki.sierrahelp.com//index.php?title=SCI_Studio_Tutorial_2#Actors
KQII Remake Pic

Offline troflip

Re: INN - LSCIDump
« Reply #64 on: November 16, 2015, 01:27:59 PM »
But... I want them centered, not right-aligned.
Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline troflip

Re: INN - LSCIDump
« Reply #65 on: November 16, 2015, 03:18:08 PM »
Anyone know how I can get an image to display next to some text?

What I'm trying to get:

Code: [Select]
Some text that wraps to more lines if      ***********
it needs to.                               *         *
                                           *         *
                                           ***********

**********     Then this time the text is on the right
*        *     side of the image.
*        *
**********

Now the next one                           ***********
                                           *         *
                                           *         *
                                           ***********

**********     And another one.
*        *     
*        *
**********

One problem is that I want the rows separate. They are always merging together even if they are contained in a div.

And even if I have text adjacent to an img, for some reason the first line of text appears the full row width and on top of the image. Subsequent lines float around it. No combination of float: left or float: right seems to work.
Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline Kawa

Re: INN - LSCIDump
« Reply #66 on: November 16, 2015, 05:42:29 PM »
One problem is that I want the rows separate. They are always merging together even if they are contained in a div.
"clear: both" on the divs. It shifts that element to below any floating elements that came before.

Offline troflip

Re: INN - LSCIDump
« Reply #67 on: November 16, 2015, 06:09:03 PM »
Cool that works :-)
Check out my website: http://icefallgames.com
Groundhog Day Competition


SMF 2.0.19 | SMF © 2021, Simple Machines
Simple Audio Video Embedder

Page created in 0.068 seconds with 23 queries.