|
|
Thread Tools | Display Modes |
|
#1
|
|
|
Big grins
|
Website Facelift
Hi there!
I have recently received some very poor feedback on our website. The critic mentioned that I am not making full use of the width of the screen and therefore I should make changes to do so. Although I don't entirely agree with this person I am happy to try anything to make the site more pleasing to its viewers. (It should be noted at this point that I have only received one complaint to date) A typical page on the website in question is http://450squadronraaf.smugmug.com/g.../8206522_8xu3k and I wondered if someone could please advise how I could widen the working area of the page so that it covered the full width of the viewing screen. I am happy to leave the layout in filmstrip at this point, as it suits the purpose. Hope someone can point me in the right direction, thank you |
|
|
|
|
#2
|
|
|
Major grins
|
Filmstrip is an old style that I don't believe is being enhanced. It does not provide a stretchy mode. If you want your images to use more of the available space in the browser I suspect you will need to change to another style.
--- Denise
__________________
http://www.denisegoldberg.com ... http://denise.smugmug.com Musings & ramblings at http://denisegoldberg.blogspot.com, quick posts in google+ |
|
|
|
|
#3
|
||
|
Big grins
|
Quote:
Would appreciate your feedback, thank you... |
|
|
|
||
|
#4
|
||
|
Major grins
|
Quote:
Your banner looks like a single image, and you have it above the navbar. You could define the banner in pieces placing part on the left and part on the right and using a background color to make is look like it is a single image. Take a look at JFriend's thread Compact, stretchy, dynamic custom header. That shows how to place the banner and navbar side-to-side. You should be able to adapt the CSS to place multiple banner images. --- Denise
__________________
http://www.denisegoldberg.com ... http://denise.smugmug.com Musings & ramblings at http://denisegoldberg.blogspot.com, quick posts in google+ |
|
|
|
||
|
#5
|
||
|
Big grins
|
Quote:
Any other ideas? |
|
|
|
||
|
#6
|
||
|
Major grins
|
Quote:
--- Denise
__________________
http://www.denisegoldberg.com ... http://denise.smugmug.com Musings & ramblings at http://denisegoldberg.blogspot.com, quick posts in google+ |
|
|
|
||
|
#7
|
||
|
Big grins
|
Quote:
#my_banner { width: 750px; height: 175px; margin: 0 auto; background: url(http://www.450squadron.org.au/photos...-QKbZnjF-0.jpg) no-repeat; |
|
|
|
||
|
#8
|
||
|
Major grins
|
Quote:
--- Denise
__________________
http://www.denisegoldberg.com ... http://denise.smugmug.com Musings & ramblings at http://denisegoldberg.blogspot.com, quick posts in google+ |
|
|
|
||
|
#9
|
|
|
"tweak 'til it squeaks"
|
This is very basic but you'd create a header div that would go side to side. Then inside that div create
image div's to position right and left. The header div would get a background color or pattern. The center symbol and text, transparent image, could be a separate centered div.
__________________
Al My Website my Blog Mozilla Firefox Web Developer Firebug Customization FAQ Banner/Navbar/Slideshow Tutor |
|
|
|
|
#10
|
|
|
Big grins
|
Mm... well, unfortunately you have the upper hand on me, 'cos I am now lost. I really am out of my depth with the terminology "multiple divs" and "float". I have no idea where to start, so I am going to have to live with it until I can get some lessons. Sorry for taking up your time, but I really appreciate your efforts. thank you
|
|
|
|
|
#11
|
||
|
"tweak 'til it squeaks"
|
Quote:
would be the symbol, text and background as is now. The header div background will be the same color as the center image background when we get to it.
__________________
Al My Website my Blog Mozilla Firefox Web Developer Firebug Customization FAQ Banner/Navbar/Slideshow Tutor |
|
|
|
||
|
#12
|
||
|
Big grins
|
Quote:
Thanks Al, But I really don't understand any of what you have just said. I'm sure it's the terminology that everyone is using. If it's not asking too much, could you possibly give me an example in the required code, perhaps then I might be able to follow you, please. |
|
|
|
||
|
#13
|
||
|
"tweak 'til it squeaks"
|
Quote:
Code:
<div id="myHeader"> <div id="leftHeader" style="float:left;"><img src="left image here" /></div> <div id="rightHeader" style="float:right;"><img src="right image here" /></div> <div id="centerHeader" align=center><img src="center image here" /></div> </div> <!-- closes myHeader -->
__________________
Al My Website my Blog Mozilla Firefox Web Developer Firebug Customization FAQ Banner/Navbar/Slideshow Tutor |
|
|
|
||
|
#14
|
||
|
Big grins
|
Quote:
ORIGINAL CSS Code: #my_header { width: 750px; height: 175px; margin: 0 auto; background: url(http://www.450squadron.org.au/photos...-QKbZnjF-0.jpg) no-repeat; } .category_About_Us #my_header { background: url(http://www.450squadron.org.au/photos...-QKbZnjF-0.jpg) no-repeat; } ORIGINAL HTML: <div id="my_header"></div> New image samples: Header Image Left http://www.450squadron.org.au/photos...-xTkwsjk-L.jpg Header image right http://www.450squadron.org.au/photos...-nWbWCLC-L.jpg Header Image center http://www.450squadron.org.au/photos...-cWXTs3K-L.jpg |
|
|
|
||
|
#15
|
||
|
"tweak 'til it squeaks"
|
Quote:
homepage? about? different categories? Looks like this might work for the three only for the homepage. Crop your center image so it repeats. It will fill the center area when the browser is stretched. The center is actually the background of the entire header with the other two, R&L, floating over it. The center image can be only one repeating not three. Code:
<div id="my_HP_header"> <div id="leftHPheader"></div> <div id="rightHPheader"></div> </div> <!-- closes my_HP_header --> <div id="my_header"></div> Code:
#my_HP_header {display:none;}
.homepage #my_HP_header {display:block;}
.homepage #my_header {display:none;}
#my_HP_header {
position:relative;
height: 150px;
margin: 0 auto;
background: url(/photos/i-cWXTs3K/0/L/i-cWXTs3K-L.jpg) repeat-x;
}
#leftHPheader {
position:absolute;
left:0;
width: 314px;
height: 150px;
background: url(/photos/i-xTkwsjk/0/L/i-xTkwsjk-L.jpg) no-repeat;
}
#rightHPheader {
position:absolute;
right:0;
width: 535px;
height: 150px;
background: url(/photos/i-nWbWCLC/0/L/i-nWbWCLC-L.jpg) no-repeat;
}
__________________
Al My Website my Blog Mozilla Firefox Web Developer Firebug Customization FAQ Banner/Navbar/Slideshow Tutor |
|
|
|
||
|
#16
|
||
|
Big grins
|
Quote:
So, before I start, do you still think that the above code will work? If so, which part of the above CSS coding do I put beside each category, so that each of the category header shows its own individual images? |
|
|
|
||
|
#17
|
||
|
Big grins
|
Quote:
|
|
|
|
||
|
#18
|
||
|
"tweak 'til it squeaks"
|
Quote:
I just tried the code and it worked.
__________________
Al My Website my Blog Mozilla Firefox Web Developer Firebug Customization FAQ Banner/Navbar/Slideshow Tutor |
|
|
|
||
|
#19
|
||
|
"tweak 'til it squeaks"
|
Quote:
Remove only the red highlighted parts at the first and last of it. Code:
<!--%%%%%%%%%%%% QuickMenu Styles [Keep in head for full validation!] %%%%%%%%%%%-->
<style type="text/css">
/*!!!!!!!!!!! QuickMenu Core CSS [Do Not Modify!] !!!!!!!!!!!!!*/
.qmmc .qmdivider{display:block;font-size:1px;border-width:0px;border-style:solid;position:relative;z-index:1;}.qmmc .qmdividery{float:left;width:0px;}.qmmc .qmtitle{display:block;cursor:default;white-space:nowrap;position:relative;z-index:1;}.qmclear {font-size:1px;height:0px;width:0px;clear:left;line-height:0px;display:block;float:none !important;}.qmmc {position:relative;zoom:1;z-index:10;}.qmmc a, .qmmc li {float:left;display:block;white-space:nowrap;position:relative;z-index:1;}.qmmc div a, .qmmc ul a, .qmmc ul li {float:none;}.qmsh div a {float:left;}.qmmc div{visibility:hidden;position:absolute;}.qmmc li {z-index:auto;}.qmmc ul {left:-10000px;position:absolute;z-index:10;}.qmmc, .qmmc ul {list-style:none;padding:0px;margin:0px;}.qmmc li a {float:none}.qmmc li:hover>ul{left:auto;}#qm0 ul {top:100%;}#qm0 ul li:hover>ul{top:0px;left:100%;}
/*!!!!!!!!!!! QuickMenu Styles !!!!!!!!!!!*/
/* QuickMenu 0 */
/*"""""""" (MAIN) Items""""""""*/
#qm0 a
{
padding:5px 18px;
color:#111111;
font-family:Arial;
font-size:12px;
text-decoration:none;
}
/*"""""""" (SUB) Container""""""""*/
#qm0 div, #qm0 ul
{
padding:10px;
margin:-2px 50px 50px;
background-color:transparent;
border-style:none;
}
/*"""""""" (SUB) Items""""""""*/
#qm0 div a, #qm0 ul a
{
padding:3px 10px 3px 5px;
background-color:transparent;
font-size:12px;
border-width:0px;
border-style:none;
}
/*"""""""" (SUB) Hover State""""""""*/
#qm0 div a:hover
{
background-color:#dadada;
color:#cc0000;
}
/*"""""""" (SUB) Hover State - (duplicated for pure CSS)""""""""*/
#qm0 ul li:hover>a
{
background-color:#dadada;
color:#cc0000;
}
/*"""""""" (SUB) Active State""""""""*/
body #qm0 div .qmactive, body #qm0 div .qmactive:hover
{
background-color:#dadada;
color:#cc0000;
}
/*"""""""" Individual Titles""""""""*/
#qm0 .qmtitle
{
cursor:default;
padding:3px 0px 3px 4px;
color:#444444;
font-family:arial;
font-size:12px;
font-weight:bold;
}
/*"""""""" Individual Horizontal Dividers""""""""*/
#qm0 .qmdividerx
{
border-top-width:1px;
margin:4px 0px;
border-color:#111111;
}
/*"""""""" Individual Vertical Dividers""""""""*/
#qm0 .qmdividery
{
border-left-width:1px;
height:15px;
margin:4px 2px 0px;
border-color:#111111;
}
/*"""""""" (main) Rounded Items""""""""*/
#qm0 .qmritem span
{
border-color:#dadada;
background-color:#f7f7f7;
}
/*"""""""" (main) Rounded Items Content""""""""*/
#qm0 .qmritemcontent
{
padding:0px 0px 0px 4px;
}
/*"""""""" Custom Rule""""""""*/
ul#qm0 li:hover > a
{
background-color:#f7f7f7;
}
/*"""""""" Custom Rule""""""""*/
ul#qm0 ul
{
padding:10px;
margin:-2px 0px 0px;
background-color:#f7f7f7;
border-width:1px;
border-style:solid;
border-color:#dadada;
}
#gallery_3635213 {
font-weight: normal;
}
</style>
__________________
Al My Website my Blog Mozilla Firefox Web Developer Firebug Customization FAQ Banner/Navbar/Slideshow Tutor |
|
|
|
||
|
#20
|
||
|
Big grins
|
Quote:
|
|
|
|
||
| Tell The World! | |
| Similar Threads | Thread Starter | Forum | Replies | Last Post | ![]() |
| Custom Website | pronewbi1 | SmugMug Customization | 4 | May-19-2008 01:48 PM | |
| website leads to Dgrin? | Purkhiser | Dgrin Forum Support | 2 | Dec-11-2006 08:36 AM | |
| Idea - Photo Contest Website With Cash Prizes... | thecodman | Flea Market | 3 | Jul-12-2004 07:33 AM | |
| Thread Tools | |
| Display Modes | |
|
|