Jump to content

Twist up & down the configuration theme on 1.6


Recommended Posts

Hello ,

 

I am working on the configuration theme of 1.6 v

I don't need the slider at top and i just would like 6 pictures (like the bottom part of the module)

post-367933-0-82464700-1395387951_thumb.png

 

but if i take off the slider and put more pictures they don't stand side by side (3 for a line, like for the botton part of the module) but just one picture for a line.

post-367933-0-47560300-1395387521_thumb.png   so…

 

Anyone with a solution ???

Is it possible to simply twist the top part of the module at the bottom and vice/versa for the bottom ??

Is it possible to modify the module as it is but with the pictures stays 3 for a line ??

 

Thanks for the help

 

Pascual

 

 

 

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

You need to open yourtheme/modules/themeconfigurator/css/hooks.css and change:

#htmlcontent_top {
    float: left;
    max-width: 391px;
    padding-left: 10px;
    width: 33.4%;
}

to this:

#htmlcontent_top {
    float: left;
}

and

#htmlcontent_top ul li {
    margin-bottom: 10px;
    width: 100%;
}

to this:

#htmlcontent_top ul li {
    margin-bottom: 10px;
}

Hope this helps

  • Like 1
Link to comment
Share on other sites

Hello  and thank you for your help,

 

I can't find the module in module's file…  it seems that Theme's config (the name of this module) is probably in the main css for the default theme of 1.6  (boostrap).

It is the module that also let's you change the color and typeface  directly on the pages.

 

I really don't know where is the main css for the default theme.  Do you ??

 

Thank you again

Pascual

Link to comment
Share on other sites

  • 7 months later...

Could you help me out too,

 

I made something similar, but I only need to center one thing and I cannot manage, let me try to show you. 

 

full.jpg

 

this is what i made, and it works fine at almost all resolutions, but one. if i scale down the window at a certain point it will look like this.

 

reduced.jpg

 

now i managed to center the mix & match box with google inspect element by changing <div id="htmlcontent_top"> to <div id="htmlcontent_top" align="center">, and it works fine, but that is just temporary, now to make it definitely i figured out that it has to be changed either in the themeconfigurator.php or hooks.css, now i'm not a programmer, i don't know how to code, and the php file i have no idea of what to do with it, the css file i think it should be somewhere here: line 21 to 50, some where in here i should alling it center or something similar, but i don't know how.

 

/* Top hook CSS */
  #htmlcontent_top {
    float: right;
    width: 50%;
    max-width: 100%;
    padding-left: 5px;
}
  @media (max-width: 767px) {
    #htmlcontent_top {
      width: 100%;
      max-width: 100%;
      padding-left: 0;
      padding-top: 0px; } }
  @media (max-width: 767px) {
    #htmlcontent_top ul {
      margin: 0 -5px; } }
  #htmlcontent_top ul li {
    width: 100%;
    margin-bottom: 10px; }
    @media (max-width: 767px) {
      #htmlcontent_top ul li {
        float: left;
        padding-left: 5px;
        padding-right: 5px;
        width: 100%; } }
    #htmlcontent_top ul li:last-child {
      margin-bottom: 5; }
    #htmlcontent_top ul li img {
      max-width: 100%;
      height: auto; }
 
could you help? thanks
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...