Select to view content in your preferred language

ESRI Logo not showing on my map. Why?

4392
18
Jump to solution
05-16-2014 09:28 AM
AlexGole1
Emerging Contributor
Hi all,
It seems like It is necessary to show the web application with the "Power by ESRI" logo for any web maps. For some reasons, the ESRI logo is not showing on mine. I am not sure why. http://jsbin.com/ficetiwo/7/edit. Anyone has an idea?
Thank you,
Alex
0 Kudos
18 Replies
AlexGole1
Emerging Contributor
Will not.

In your case:
[HTML]<div type="bc" props="design:'headline', liveSplitters:false">
    <div type="cp" props="region:'top'">
        header
    </div>
    <div type="bc" props="region:'center', design:'sidebar', liveSplitters:true">
        <div type="cp" props="region:'left'">
            left
        </div>
        <div type="tb" props="region:'top', splitter:false">
            toolbar
        </div>
        <div id="map" type="cp" props="region:'center'">
            map
        </div>
    </div>
</div>[/HTML]
(just for structure :))


Thank you! I am going to reshape my code then!
0 Kudos
AlexGole1
Emerging Contributor
Alright I like it except two things:
1) toolbar that is in a brodercontainer has borders. I would like to remove the borders.
2) The legend is just below the toolbar

Is there a way to change that? Overwise this is a great technique.
Thanks ,
Alex

[ATTACH=CONFIG]33879[/ATTACH]
0 Kudos
BenFousek
Deactivated User
1) override with css

2) set the center region border container prop "design:'sidebar'"
0 Kudos
AlexGole1
Emerging Contributor
1) override with css

2) set the center region border container prop "design:'sidebar'"


Almost got it all. Looks better and better. Now how do I override borders with css. I m not very familiar with overriding elements in css.
0 Kudos
BenFousek
Deactivated User
Inspect the element with your browser's dev tools (i use firebug w/ firefox). It allows to see what styles are applied to an element and play around with styles in real time w/o reloading the page.
0 Kudos
AlexGole1
Emerging Contributor
Inspect the element with your browser's dev tools (i use firebug w/ firefox). It allows to see what styles are applied to an element and play around with styles in real time w/o reloading the page.


That is what I do. I can remove borders using firefox firebug live edits. but when I copy what I changed to my css file:

.claro .dijitSplitterH, .claro .dijitGutterH {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: 0 none;
    height: 0px;
}


I am not sure I can override this one.
0 Kudos
BenFousek
Deactivated User
You're talking about the gutters. Instead of changing css, set center border container prop "gutters:false".
0 Kudos
AlexGole1
Emerging Contributor
You're talking about the gutters. Instead of changing css, set center border container prop "gutters:false".


You got it. My app looks fantastic now, just as I want it to look. Thank you!
0 Kudos
BenFousek
Deactivated User
You bet. Have a great weekend.
0 Kudos