Post by belowcost » Tue Sep 01, 2020 2:18 am

Other than purchasing a whole theme, is there a pretty quick way to update just one section of the home page?

Just want to resize the home page rotating banner to 1/2 width (i did this but it still uses the complete width space) and have it show on the right 1/2 side of the page

and use the complete left side to show categories, or a different stationery image.

Thank you, probably a simple update, just starting to learn more of OC 3.0 and PHP page updating.

Active Member

Posts

Joined
Mon Sep 26, 2011 1:54 am

Post by by mona » Tue Sep 01, 2020 2:44 am

It is not that simple, but since you say you did this and it is not working, you are someway there.
https://getbootstrap.com/docs/3.4/css/#grid-offsetting

That page will explain a lot of what you need to understand about the grid system and how you can manipulate the layout

then you can also use html module and use css to float it


What you could also try .. which would be a lot easier.. is to manipulate them using css
If you make the carousel display:inline-block instead of display:block
and make the width probably 49% due to padding
and make the html module also 49%
and then float them both - that should work ..

To actually give you the code would require a web address really
but something like

Code: Select all

#carousel0 {
    display: inline-block;
    width: 49%;
    float: left;
}
.html-module-selector {
    width: 49%;
    float: left;
}
you would also need to reset it for mobile view ..

DISCLAIMER:
You should not modify core files .. if you would like to donate a cup of coffee I will write it in a modification for you.


https://www.youtube.com/watch?v=zXIxDoCRc84


User avatar
Expert Member

Posts

Joined
Mon Jun 10, 2019 9:31 am

Post by belowcost » Tue Sep 01, 2020 4:57 am

i looked for this but couldnt find the correct files to update and change

web address is PM'd

Active Member

Posts

Joined
Mon Sep 26, 2011 1:54 am
Who is online

Users browsing this forum: daniil_oc, OSWorX, pprmkr, SelfSus, WaxedPerfection and 481 guests