Jump to content

[SOLVED]Resize searching bar and Chart bar Please :)


Recommended Posts

Hello,
I just realize how to resize the logo top image,
now, how you see in the file jpg, i need just 2 other resize, block search and the block chart... i tried to find the css place, but i didn't...
may you help me just this last time, like this my theme will be perfect for my business.

I'm a noob in css ect, but i think i can learn, i just need to find where i can modify with dreamweaver.
Thanks for your support.
:)
Simone

post-826832-0-20252800-1407673838_thumb.jpg

Edited by affaridanoi (see edit history)
Link to comment
Share on other sites

Hi

 

this some suggestions to get the following result:

 

in : SITE/themes/laura/css/modules/blockuserinfo/blockuserinfo.css :

#header_right #header_user {
    margin: 4px 0px;
    clear: right;
    float: right;
    width: 36%;
}

in: SITE/themes/laura/css/modules/blocksearch/blocksearch.css :

#search_block_top {
    width: 36%;
    position: relative;
    top: 0px;
    right: 0px;
    margin-top: 15px;
    float: right;
}

RESULT:

 

 

post-668076-0-10189300-1407679394_thumb.png

  • Like 2
Link to comment
Share on other sites

you can change this size in:  SITE/themes/laura/css/global.css line ~633:

 

#top-navi .navi-wrap a, #top-navi .navi-wrap span {
    font-weight: normal;
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
    text-shadow: 1px 1px 0px #000;
}

  • Like 1
Link to comment
Share on other sites

for resizing the bar  :

SITE/themes/laura/css/global.css line ~ 629

#top-navi {
     .....
    height: 44px;
    .....
}

 

SITE/themes/laura/css/global.css line ~631:

#top-navi .navi-wrap {

    ....
    padding: 14px 0px;

    ....

}

Link to comment
Share on other sites

  • 3 weeks later...

Hi

 

this some suggestions to get the following result:

 

in : SITE/themes/laura/css/modules/blockuserinfo/blockuserinfo.css :

#header_right #header_user {
    margin: 4px 0px;
    clear: right;
    float: right;
    width: 36%;
}

in: SITE/themes/laura/css/modules/blocksearch/blocksearch.css :

#search_block_top {
    width: 36%;
    position: relative;
    top: 0px;
    right: 0px;
    margin-top: 15px;
    float: right;
}

RESULT:

 

Hi S-HAMMANI,

 

This looks great, is there a straight-forward way I can do the same thing in the original, default theme?

 

Thanks

Link to comment
Share on other sites

Hi

 

you have change 2 css files:

SITE/themes/bootstrap-default/css/modules/blockcart/blockcart.css and

SITE/themes/bootstrap-default/css/modules/blocksearch/blocksearch.css

and 1 tpl file : SITE/themes/bootstrap-default/modules/blocksearch/blocksearch/blocksearch-top.tpl

 

blockcart.css:

line 4

#header .shopping_cart {
    position: relative;
    float: right;
    padding-top: 10px;
}

line 20 :

.shopping_cart {
    width: 100%;
}

blocksearch.css

#search_block_top {
    padding-top: 10px;
}

blocksearch-top.tpl

replace this line

<div id="search_block_top" class="col-sm-4 clearfix">

with :

<div id="search_block_top" class="col-sm-4 col-sm-offset-4 clearfix">
Link to comment
Share on other sites

Many thanks, S-HAMMANI, works like a charm!!!

 

Btw, could I somehow swap the cart and the search box, i.e. have the cart on top (sorry to bother you again :)?

 

Edit: Forget it, it would overlap with the search box when extended, which would look strange... Many thanks again!

 

 

Edited by wanderer72 (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...